Skip to content

Skills

Skills are reusable capabilities that can be invoked by AI tools.

.ai/skills/<skill-name>/SKILL.md

Skills require YAML frontmatter with name and description:

---
name: deploy
description: Deploy the application to production
---
# Deploy Skill
## Steps
1. Run the test suite
2. Build the application
3. Deploy to production environment
## Commands
\`\`\`bash
pnpm test
pnpm build
pnpm deploy:prod
\`\`\`
{
name: string; // Required
description: string; // Required
}
.ai/skills/
├── deploy/
│ └── SKILL.md
├── review/
│ └── SKILL.md
└── test/
└── SKILL.md

Each skill directory can contain additional files if needed.

ToolOutput
Claude Code.claude/skills/<name>/ (symlink per skill)
OpenCode.opencode/skills/<name>/ (symlink per skill)