Skip to content

Getting Started

Skills for Agents gives your AI coding agent superpowers. 15 composable skills that work together without conflict.

What is Skills for Agents?

Traditional AI prompts are monolithic — one giant instruction set that tries to do everything. When you need multiple capabilities, they conflict.

Skills for Agents solves this with domain-specific instruction sets that compose through the SIP (Skills Interoperability Protocol) framework. Each skill owns one aspect of your agent's behavior:

DomainControlsExample Skills
VoiceTone, personality, vocabularyBlogger
DensityToken count, verbosityCaveman, Compress
CraftVisual design, UI/UXPainter, Harden
ProcessWorkflow, templates, structurePostmortem, Planner, Slidify
ContentSubstance being producedDocumenter, Researcher, Learn

Quick Install

bash
# Install all skills to all detected tools
npx skills-for-agents install

# Install to a specific tool
npx skills-for-agents install --tool claude
npx skills-for-agents install --tool cursor
npx skills-for-agents install --tool windsurf

That's it. Skills are now available as slash commands in your agent.

Your First Composition

Once installed, try invoking skills:

# Single skill
/caveman full

# Layered composition (both apply simultaneously)
/blog technical + /caveman lite

# Pipeline composition (sequential)
/postmortem → /compress

# Natural language (auto-detected)
"Write a blog about the UI incident, make it terse"

Supported Tools

ToolInstall FormatScope
Claude CodeFolder (.claude/skills/)Global or project
CursorFiles (.cursor/rules/)Project only
WindsurfFiles (.windsurf/rules/)Project only
Codex (OpenAI)Merged (codex.md)Project only
OpenClaudeFolder (.openclaude/skills/)Global
Kiro (Amazon)Folder (.kiro/steering/)Global or project
ZedMerged (.rules)Project only
ClineFolder (.clinerules/)Project only
AiderMerged (CONVENTIONS.md)Project only
GitHub CopilotMerged (.github/copilot-instructions.md)Project only
ContinueFolder (.continue/rules/)Global or project

Next Steps

Released under the MIT License.