tool-discovery

Recommend the right agents and skills for any task. Covers both heavyweight agents (Task tool) and lightweight skills (Skill tool). Triggers on: which agent, which skill, what tool should I use, help me choose, recommend agent, find the right tool.

allowed_tools: Read Glob

$ Installer

git clone https://github.com/0xDarkMatter/claude-mods /tmp/claude-mods && cp -r /tmp/claude-mods/skills/tool-discovery ~/.claude/skills/claude-mods

// tip: Run this command in your terminal to install the skill


name: tool-discovery description: "Recommend the right agents and skills for any task. Covers both heavyweight agents (Task tool) and lightweight skills (Skill tool). Triggers on: which agent, which skill, what tool should I use, help me choose, recommend agent, find the right tool." allowed-tools: "Read Glob" depends-on: [] related-skills: [claude-code-templates, claude-code-debug]

Tool Discovery

Recommend the right agents and skills for any task.

Decision Flowchart

Is this a reference/lookup task?
├── YES → Use a SKILL (lightweight, auto-injects)
└── NO → Does it require reasoning/decisions?
         ├── YES → Use an AGENT (heavyweight, spawns subagent)
         └── MAYBE → Check catalogs below

Rule: Skills = patterns/reference. Agents = decisions/expertise.

Quick Skill Reference

SkillTriggers
file-searchfd, rg, fzf, find files
find-replacesd, batch replace
code-statstokei, difft, line counts
data-processingjq, yq, json, yaml
structural-searchast-grep, sg, ast pattern
git-workflowlazygit, gh, delta, rebase
python-envuv, venv, pyproject
rest-patternshttp methods, status codes
sql-patternscte, window functions
sqlite-opssqlite, aiosqlite
tailwind-patternstailwind, tw classes
mcp-patternsmcp server, protocol

Quick Agent Reference

AgentTriggers
python-expertPython, async, pytest
typescript-expertTypeScript, types, generics
react-expertReact, hooks, state
postgres-expertPostgreSQL, query optimization
cloudflare-expertWorkers, KV, D1, R2
Explore"where is", "find"
Plandesign, architect

How to Launch

Skills:

Skill tool → skill: "file-search"

Agents:

Task tool → subagent_type: "python-expert"
         → prompt: "Your task"

Match by Task Type

TaskSkill FirstAgent If Needed
"How to write a CTE?"sql-patternssql-expert
"Optimize this query"—postgres-expert
"Find files named X"file-searchExplore
"Set up Python project"python-envpython-expert
"What HTTP status for X?"rest-patterns—

Tips

  • Skills are cheaper - Use for lookups, patterns
  • Agents are powerful - Use for decisions, optimization
  • Don't over-recommend - Max 2-3 tools per task

Additional Resources

For complete catalogs, load:

  • ./references/agents-catalog.md - All agents with capabilities
  • ./references/skills-catalog.md - All skills with details