A collection of reusable Claude Code skills — self-contained prompts that teach an agent how to perform specific workflows.
Add this to your ~/CLAUDE.md so the agent can discover skills automatically:
Before starting any task, read the skill router at /path/to/agent-framework/ROUTER.md.
Follow the instructions of every skill that matches the task. If no skill matches, proceed normally.Replace /path/to/agent-framework with the actual path (e.g. ~/git/agent-framework).
Each skill is a SKILL.md file containing a complete prompt. Skills can be invoked as Claude Code slash commands or pasted into any AI chat. The ROUTER.md file lets agents discover and select skills automatically without slash commands.
Install the skills by copying .claude/skills/ into your project (or ~/.claude/skills/ for global access). Then invoke them as slash commands (e.g. /generate-project, /run-tasks).
Point any agent at ROUTER.md and it will match the task to the right skill automatically.
The skill files at .claude/skills/*/SKILL.md contain the full prompts. Paste the contents of any SKILL.md into any AI chat and it will work — the frontmatter is ignored by non-Claude-Code tools.
| Skill | Description |
|---|---|
fix-build |
Iteratively fix a failing build/test command with sub-agents |
generate-project |
Scaffold a new agent-framework project via interview |
generate-feature |
Plan and add a feature to an existing project |
run-tasks |
Automate task execution with Opus sub-agents |
ux-review |
Review and fix accessibility, layout, and UX in React apps |
MIT