How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Skill Router (Workflow domain).

This skill should be used when the user has a vague or cross-domain request and asks "which skill should I use", "is there a skill for this", "find the right skill", or "route this to the best skill" — it matches an intent against the whole skills library and recommends the best-fit skill(s).

This library has hundreds of skills across sixteen domains. A user rarely knows the exact skill name — they know their *intent* ("I need to figure out what to build next quarter," "I have to respond to a data breach"). The router closes that gap: it

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/skill-router

---
Start by asking the user what they need help with.
# Add to your project
cs install workflow/skill-router ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/workflow/skill-router your-project/
# The skill is available in your Codex workspace at:
.codex/skills/skill-router/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/skill-router your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/skill-router/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/skill-router your-project/
# Add to your .cursorrules or workspace settings:
# Reference: workflow/skill-router/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/workflow/skill-router your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/workflow/skill-router your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/workflow/skill-router

Run Python Tools

python workflow/skill-router/scripts/tool_name.py --help

Quick Start

# Recommend the best-fit skills for an intent
python scripts/route_skill.py "plan a go-to-market for a new B2B feature"

# Narrow to a domain, or widen the result set
python scripts/route_skill.py "respond to a data breach" --top 5
python scripts/route_skill.py "forecast revenue" --domain finance --format json
1. Run `route_skill.py ""` against the generated catalog (`cli/skills.json`). 2. Review the ranked candidates and their match reasons. 3. Pick the top fit (or present the top 2-3 if genuinely ambiguous) and **activate that skill** — do not do the work in the router. 4. If nothing scores well, say so plainly and suggest the closest domain rather than forcing a weak match.

Related Skills in Workflow

View on GitHub