← ClaudeAtlas

skill-routerlisted

Meta-skill that maps tasks to the right skill. Consult at the start of any non-trivial task to pick the right workflow skill, and before specific actions (installing deps, committing, opening PRs, reviewing) to pick the right action skill. Loaded automatically at session start by the skill-router plugin.
Saturate/agents · ★ 0 · AI & Automation · score 63
Install: claude install-skill Saturate/agents
# Skill Router This project ships workflow skills (*how to approach a type of work*) and action skills (*how to do a specific thing correctly*). Pick from the map below. Multiple can apply — chain them. ## Decision flowchart ``` Task arrives │ ├── Vague idea, fuzzy goal ─────────────────→ idea-refine ├── About to plan non-trivial work ─────────→ pre-planning │ ├── Implementing something ─────────────────→ incremental-implementation │ ├── UI / React / component work ──────→ frontend-ui-engineering │ ├── HTTP / API / contract design ─────→ api-design │ └── Writing tests first ──────────────→ tdd │ ├── Something is broken ────────────────────→ debugging │ └── Looking for classes of bugs ──────→ hunting-bugs │ ├── Performance concern ────────────────────→ performance-profiling ├── Security review / threat model ─────────→ security-deep-dive │ ├── Reviewing code / PR ────────────────────→ pr-review (also: code-review) ├── Simplifying code ───────────────────────→ code-simplification ├── Whole-codebase audit ───────────────────→ codebase-audit ├── Measuring code (LOC, complexity, dup) ──→ code-metrics │ ├── Writing prose (blog, article, docs) ────→ no-ai-slop ├── Writing an ADR / architecture doc ──────→ documentation-adrs │ ├── Pre-launch / deploy readiness ──────────→ launch-checklist │ └── Action skills (narrow, tool-specific): ├── Adding a dependency ──────────────→ evaluating-dependencies │