Intelligent skills for AI coding agents
# One-line install (Claude Code)
cd ~/.claude/skills && git clone https://github.com/mingyouagi/myskills.git && cd myskills/skills/skill-router && ./install.sh
# Use it
skill-router search "debug"
skill-router route "fix a bug"| Skill | Description | Status |
|---|---|---|
| skill-router | Intent-based skill discovery and routing | ✅ Ready |
When agents have 10+ skills, finding the right one wastes tokens. skill-router solves this with semantic search and intent-based routing.
skill-router route "debug failing test"
# → systematic-debugging (95% confidence)
skill-router search "create feature"
# → brainstorming, writing-plans, test-driven-developmentToken savings: 96% reduction (2000 → 50 tokens)
| Platform | Skills Directory |
|---|---|
| Claude Code | ~/.claude/skills/ |
| Codex | ~/.codex/skills/ |
| OpenCode | ~/.opencode/skills/ |
# Replace <SKILLS_DIR> with your platform's directory
cd <SKILLS_DIR>
git clone https://github.com/mingyouagi/myskills.git
cd myskills/skills/skill-router
./install.shcd <SKILLS_DIR>
git clone https://github.com/mingyouagi/myskills.git
cd myskills/skills/skill-router
npm install && npm link
ln -sf "$(pwd)" <SKILLS_DIR>/skill-routerskill-router list| Command | Description |
|---|---|
skill-router route <intent> |
Auto-route to best skill |
skill-router search <query> |
Search with ranking |
skill-router list |
List by category |
skill-router detail <id> |
Show skill details |
skill-router config |
Show configuration |
import { routeSkill, searchSkills } from 'skill-router';
const best = routeSkill("debug failing test");
// → { skill: { id: "systematic-debugging" }, confidence: 0.95 }
const results = searchSkills("create feature", { limit: 3 });Skills use YAML frontmatter for discoverability:
---
name: my-skill
description: Use when doing X
category: technique
triggers: [keyword1, keyword2]
---myskills/
├── skills/
│ └── skill-router/ # Intelligent routing
├── .claude/ # Claude Code config
└── README.md
- ✅ skill-router - Intelligent discovery and routing
- 🔜 skill-composer - Combine skills into workflows
- 🔜 skill-analyzer - Usage patterns and optimization
See CONTRIBUTING.md for guidelines.
MIT - see LICENSE
- skill-router docs
- Report issues
- Inspired by Superpowers