Skills
Skills
Section titled “Skills”Skills are reusable capabilities that can be invoked by AI tools.
Location
Section titled “Location”.ai/skills/<skill-name>/SKILL.mdFormat
Section titled “Format”Skills require YAML frontmatter with name and description:
---name: deploydescription: Deploy the application to production---
# Deploy Skill
## Steps
1. Run the test suite2. Build the application3. Deploy to production environment
## Commands
\`\`\`bashpnpm testpnpm buildpnpm deploy:prod\`\`\`Schema
Section titled “Schema”{ name: string; // Required description: string; // Required}Directory Structure
Section titled “Directory Structure”.ai/skills/├── deploy/│ └── SKILL.md├── review/│ └── SKILL.md└── test/ └── SKILL.mdEach skill directory can contain additional files if needed.
Export Mapping
Section titled “Export Mapping”| Tool | Output |
|---|---|
| Claude Code | .claude/skills/<name>/ (symlink per skill) |
| OpenCode | .opencode/skills/<name>/ (symlink per skill) |