Skip to content

Skills for AgentsComposable AI Agent Instructions

15 domain-specific skills that compose without conflict. Install via npx. Use with any LLM agent.

Why Skills?

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

Skills for Agents gives each concern its own instruction set. They compose through the SIP framework — a shared contract that teaches skills how to work together without breaking each other.

bash
# Install all skills
npx skills-for-agents install

# Use them
/blog technical + /caveman lite
/postmortem /compress
/refactor /harden

How It Works

1. Each skill declares its domain — voice, density, craft, process, or content.

2. Skills compose through SIP — pipeline (sequential), layered (simultaneous), or handoff (delegated).

3. Conflicts resolve by precedence — safety > user intent > domain owner > recency > specificity.

Released under the MIT License.