Overview
Skills provide a standardized way to give Auggie specialized domain knowledge and capabilities. Following the agentskills.io specification, skills are modular packages of guidance, resources, and context that help the agent understand specific domains or workflows.What are Skills?
Skills are self-contained packages that provide:- Specialized knowledge: Domain-specific guidance and best practices
- Contextual resources: Links to documentation, APIs, or tools
- Workflow patterns: Step-by-step procedures for common tasks
- Tool usage guidance: How to use specific tools or frameworks
- Discoverable: The agent can see what skills are available through their metadata
- Modular: Each skill is independent and can be added or removed easily
- Standardized: Following the agentskills.io spec ensures compatibility across AI tools
Skill File Structure
Skills are defined inSKILL.md files located in the .augment/skills/, .claude/skills/, or .agents/skills/ directories (in either your workspace or home directory). Each skill must be in its own subdirectory:
SKILL.md Format
EachSKILL.md file must include YAML frontmatter with required metadata:
Example SKILL.md file:
- Markdown headings and text
- Code examples (using code blocks)
- Lists and other markdown formatting
Required Frontmatter Fields
Skill Name Requirements
Per the agentskills.io specification, skill names must:- Be 1-64 characters long
- Use only lowercase letters, numbers, and hyphens
- Not start or end with a hyphen
- Not contain consecutive hyphens
- Match the directory name containing the SKILL.md file
python-testing, api-design, database-migrationsInvalid names:
Python-Testing, api_design, -database, my--skill
Skill Locations
Skills are discovered from multiple locations in order of precedence:
Skills from all locations are loaded and made available to the agent. When multiple skills with the same name exist in different locations, the skill from the higher precedence location is used. The Source column in the
/skills popover shows whether each skill came from your home directory (User) or the current workspace (Workspace).
Invoking Skills
In Auggie’s interactive mode, every discovered skill is registered as its own slash command using the skill’s directory name. You can invoke a skill directly without going through the/skills browser.
If you have a skill at .augment/skills/my-skill/SKILL.md, you can run it by typing:
Browsing vs. invoking
The/skills command and the direct /<skill-name> form serve different purposes:
/skills is a discovery aid — it is not required in order to use a skill.
Built-in slash commands take precedence
If a discovered skill’s directory name matches a built-in slash command (for example,/help, /model, /skills, or another command listed under Interactive Mode Slash Commands), the built-in command runs instead of the skill. To make a skill reachable as a slash command, choose a directory name that does not collide with an existing built-in command.
Viewing loaded skills
Use the/skills slash command to view all loaded skills and their details:
- Name: The skill identifier
- Source: Where the skill was loaded from (Workspace or User)
- Description: What the skill does
- Tokens: Estimated token count based on the SKILL.md file size
Skills Popover Navigation
The token count helps you understand the context window cost of each skill. Skills with larger instructions will consume more tokens when activated.
Creating Your First Skill
1
Create the skills directory
2
Create the SKILL.md file
Create a file at
.augment/skills/my-skill/SKILL.md with the following content:3
Verify the skill is loaded
Start Auggie and use the
/skills command to confirm your skill appears in the list.Skills vs Rules
While both skills and rules provide guidance to the agent, they serve different purposes:
Use skills for:
- Framework-specific knowledge (e.g., React patterns, Django best practices)
- Tool usage guides (e.g., Docker workflows, CI/CD procedures)
- Domain expertise (e.g., security practices, performance optimization)
- Code style preferences
- Project architecture guidelines
- Team conventions
Best Practices
- Be Specific: Focus each skill on a single domain or workflow
- Include Examples: Provide concrete code examples and commands
- Keep Updated: Review and update skills as tools and practices evolve
- Use Clear Descriptions: Help the agent understand when to use each skill
- Version Control: Commit workspace skills to share with your team
See Also
- agentskills.io Specification - Official skill format specification
- Example Skills - Collection of example skills from Anthropic
- Rules & Guidelines - Configure general project guidelines
- CLI Reference - Complete command-line reference