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/ or .claude/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
| Field | Description | Requirements |
|---|---|---|
name | Skill identifier | 1-64 characters, lowercase alphanumeric and hyphens only, must match directory name |
description | What the skill does and when to use it | 1-1024 characters, helps the agent understand when to apply the skill |
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, similar to rules:| Location | Source | Description |
|---|---|---|
~/.augment/skills/ | User | Available in all workspaces, stored in your home directory |
<workspace>/.augment/skills/ | Workspace | Project-specific skills, can be version controlled |
~/.claude/skills/ | User | Compatible with Claude Code, stored in home directory |
<workspace>/.claude/skills/ | Workspace | Compatible with Claude Code, in workspace |
/skills popover shows whether each skill came from your home directory (User) or the current workspace (Workspace).
Viewing 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
| Key | Action |
|---|---|
↑ / ↓ or j / k | Navigate between skills |
Enter | Open the selected skill in your editor |
Esc | Close the popover |
Creating Your First Skill
Create the SKILL.md file
Create a file at
.augment/skills/my-skill/SKILL.md with the following content:Skills vs Rules
While both skills and rules provide guidance to the agent, they serve different purposes:| Feature | Skills | Rules |
|---|---|---|
| Purpose | Specialized domain knowledge | General coding guidelines |
| Format | agentskills.io specification | Markdown with optional frontmatter |
| Discovery | Metadata-based (name + description) | Content-based or always-applied |
| Scope | Specific domains/workflows | Project-wide conventions |
| Standard | Cross-platform (agentskills.io) | Augment-specific |
- 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