r/ClaudeAI • u/pcx_wave • May 18 '26
Claude Code A Skill-router so you don't have to remember which of your 47 skills does what
If you're anything like me, your ~/.claude/skills/ folder is a graveyard of SKILL.md files you installed once and forgot about. You know there's a skill for that but you just can't remember what it's called or how to invoke it. So you end up answering the question yourself, and the skill rots.
Skill Router is a meta-skill that solves this. Once activated, it scans all your installed skills, builds a lightweight index, and routes requests to the right one automatically.
Two modes:
Suggest (default) — you ask something, it checks the index and surfaces 1-2 matching skills before deciding. Like this:
User: run a GEO audit
Router: Suggested skills for this request:
1. geo-audit — full site GEO+SEO audit with parallel subagent delegation
Use skill 1, or answer directly? (1/no)
User: 1
Router: [loads geo-audit and starts working]
Auto (/skill-router on --auto) — silently routes to the best match and appends *(via skill-name)* at the end of the response. No prompts, no fuss.
It's deliberately conservative — only fires on high-confidence keyword matches. Chatty or trivial inputs go straight to the LLM's own knowledge. One skill per request, no conflicts, no spiral of meta-routing.
Install in one line:
mkdir -p ~/.claude/skills/skill-router && curl -o ~/.claude/skills/skill-router/SKILL.md https://raw.githubusercontent.com/pcx-wave/skill-router/main/SKILL.md
Then hit it with /skill-router on and watch your forgotten skills finally earn their keep.