What are skills?
A skill is a markdown file (SKILL.md) that defines a reusable behavior the agent can activate. Each skill lives in its own directory and contains instructions that modify how the agent approaches a task.
Adding a skill
Create aSKILL.md file in one of the scan directories:
SKILL.md format
- name — skill identifier (used as the slash command)
- description — what the skill does
Activating a skill
Type/<skill-name> in the chat to activate a skill. Skills show up alongside built-in commands in the autocomplete.
Scan locations
Magnitude scans these directories for skills, in order of priority (later overrides earlier):| Location | Scope |
|---|---|
~/.agents/skills/ | Global (cross-agent standard) |
~/.magnitude/skills/ | Global (Magnitude-specific) |
<project>/.agents/skills/ | Project-local (cross-agent standard) |
<project>/.magnitude/skills/ | Project-local (Magnitude-specific) |
Example: Debug skill
Learn more about the Agent Skills standard at agentskills.io.