Skills
Domain-specific knowledge modules that agents load automatically.
What are Skills?
Skills are modular knowledge packages that contain principles, patterns, and decision-making frameworks for specific domains. They're loaded automatically when an agent needs them.
Unlike hard-coded templates, skills teach principles — enabling agents to make contextual decisions rather than copying patterns.
Note: Skills are loaded on-demand based on task context. You don't need to configure anything manually.
How Skills Work
When you invoke an agent, it automatically loads relevant skills based on:
- 1Agent Configuration
Each agent specifies which skills it can access in its frontmatter
- 2Task Context
The AI reads skill descriptions and loads relevant ones
- 3Selective Reading
Only necessary sections are read to optimize context usage
Skill Categories
36+ skills organized by domain:
Frontend & UI
react-best-practicesNext.js App Router, React hooks, Server Components, performance
tailwind-patternsTailwind CSS v4 utilities
frontend-designUI/UX patterns, design systems
web-design-guidelinesProfessional web design standards, 50 styles, 21 palettes
Backend & API
api-patternsREST, GraphQL, tRPC
nodejs-best-practicesNode.js async, modules
python-patternsPython standards, FastAPI
Database
database-designSchema design, optimization
Cloud & Infrastructure
deployment-proceduresCI/CD, deploy workflows
server-managementInfrastructure management
Testing & Quality
testing-patternsJest, Vitest, strategies
webapp-testingE2E, Playwright
tdd-workflowTest-driven development
code-review-checklistCode review standards
lint-and-validateLinting, validation
Security
vulnerability-scannerSecurity auditing, OWASP
red-team-tacticsOffensive security
Architecture & Planning
app-builderFull-stack app scaffolding
architectureSystem design patterns
plan-writingTask planning, breakdown
brainstormingSocratic questioning
Mobile
mobile-designMobile UI/UX patterns
Game Development
game-developmentGame logic, mechanics
SEO & Growth
seo-fundamentalsSEO, E-E-A-T, Core Web Vitals
geo-fundamentalsGenAI optimization
Shell/CLI
bash-linuxLinux commands, scripting
powershell-windowsWindows PowerShell
Other
clean-codeCoding standards (Global)
behavioral-modesAgent personas
parallel-agentsMulti-agent patterns
mcp-builderModel Context Protocol
documentation-templatesDoc formats
i18n-localizationInternationalization
performance-profilingWeb Vitals, optimization
systematic-debuggingTroubleshooting
intelligent-routingAutomatic agent selection and routing
Skill Structure
Each skill contains:
skills/
└── react-patterns/
├── SKILL.md # Main documentation
├── sections/ # Detailed guides
├── examples/ # Reference implementations
└── scripts/ # Helper utilities (optional)