Skip to content

choose-skill

choose-skill

Routes a task to the right skill in this library — a router over the full catalog, mapping the situation in front of you to the one skill (or skill chain) that fits. Use when starting a task and unsure which skill applies, when several skills seem relevant, when the user asks which skill to use, or when invoked as the entry point for installed Skillsheet skills.

Category
Category: loop-engineering
  • router
  • discovery
  • skill-selection
  • meta
  • catalog
  • choose

Install this skill

npx . --tool claude-code --only choose-skill

Run from a git checkout of this repo — see the README for details.

A router, not a worker. Its only job is to match the situation at hand to the right skill in this library, then hand off — reading the chosen skill before acting. Routing wrongly is expensive; routing then not reading the routed skill is worse, because the skill's process is the value.

When to apply

Use at the start of any task ("which skill covers this?"), when two or more skills seem relevant and the order matters, or when the user asks what this library can do for a given situation.

Routing table

Match by situation, not by keyword similarity:

SituationSkill
Starting a multi-step dev task; need the general working loopagent-development-loop
Deciding whether to keep looping or stop (tests green, budget spent)loop-verifier
Flooded with work — bugs, reviews, features arriving at onceloop-triage
Scope is exploding or pace is unsustainableloop-budget
Something blocks the loop mid-taskloop-constraints
About to change code; need the change to be small and safeminimal-fix
Under code review with comments to addressreview-loop
Turning a requirement/PRD into working softwarejourney-driven-implementation
Wiring UI to real logic end-to-endui-backend-integration
Implementing a feature; keep it lean and proportionatelean-implementation
Given an example and told to produce work like itexample-mimicry
Asked to audit/roast code quality like a static analyzerengineering-roast
Building or fixing tests for finished worktest-to-completion
Verifying a migration/conversion preserves meaninground-trip-testing
Module boundaries unclear; restructuring for maintainabilitydomain-modularization
Migrating a legacy app or monolith to a modern stackapp-modernization
Docs drifted from the implementation; repo needs tidyinghousekeeping-docs

Workflow

  1. Name the situation — one sentence: what is true right now, and what must be true when done.
  2. Match the table — pick the single best-fit row. Ties break toward the earlier loop stage (triage → implement → verify → review).
  3. Chain, don't hoard — most tasks need 1–2 skills; the chosen skill's Related skills section handles handoffs. Don't preload more than the first skill.
  4. Read before acting — open the chosen skill and follow its workflow; the router's output is the handoff, not the work.
  5. Note the gap — if nothing fits, say so explicitly and proceed unskilled; gaps are how the library grows.

Rules

  • Route, then read — never act on a skill's summary alone; the body is the process.
  • One primary skill at a time — chains are sequential handoffs, not parallel loads.
  • The table is the source of truth — when a new skill joins the library, its row lands here in the same change.