Documentation Index
Fetch the complete documentation index at: https://docs.augmentcode.com/llms.txt
Use this file to discover all available pages before exploring further.
About Skills
Skills are reusable knowledge packages that extend the agent with domain-specific expertise — deployment guides, debugging playbooks, framework best practices, and more. Each skill is a self-containedSKILL.md file that provides specialized instructions the agent can draw on during conversations.
Skills follow the agentskills.io specification, ensuring compatibility across AI tools.
Skills are available as a Public Beta opt-in from the Settings page in JetBrains IDEs 0.428.8+. They are also being rolled out server-side for Community (Vanguard) tier users.
Creating a Skill
Each skill lives in its own named directory containing aSKILL.md file:
SKILL.md Format
EachSKILL.md file must include YAML frontmatter with a name and description, followed by markdown content with instructions:
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 |
Skill Name Requirements
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.mdfile
python-testing, api-design, deploy-guide
Invalid names: Python-Testing, api_design, -deploy, my--skill
Skill Modes
Skills can operate in one of three modes:| Mode | Behavior |
|---|---|
| Auto | Injected into every conversation automatically |
| Manual | Available on demand via the / slash menu |
| Disabled | Loaded but not active |
Skill Locations
Skills are discovered from multiple locations in order of precedence:| Location | Scope | Description |
|---|---|---|
~/.augment/skills/ | User | Available in all workspaces (highest precedence) |
<workspace>/.augment/skills/ | Workspace | Project-specific, can be version controlled |
~/.claude/skills/ | User | Compatible with Claude Code |
<workspace>/.claude/skills/ | Workspace | Compatible with Claude Code |
~/.agents/skills/ | User | Industry-standard location |
<workspace>/.agents/skills/ | Workspace | Industry-standard location |
Getting Started
Best Practices
- Focus each skill on a single domain — keep skills modular and specific
- Include concrete examples — provide code samples and commands
- Write clear descriptions — help the agent understand when to apply each skill
- Version control workspace skills — commit
.augment/skills/to share with your team - Use Auto sparingly — only for skills that are relevant to every conversation
See Also
- agentskills.io Specification — Official skill format specification
- Skills in Auggie CLI — Using skills with the CLI