skill-routerlisted
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
├── Need a spec before building ────────────→ /spec (produces SPEC.md)
├── Need a plan from a spec ────────────────→ /plan (produces tasks/plan.md)
├── About to plan non-trivial work ─────────→ pre-planning
│
├── Implementing something ─────────────────→ /build (or: incremental-implementation)
│ ├── Implement the whole plan (requires approval) ─→ /build auto
│ ├── UI / React / component work ──────→ frontend-ui-engineering
│ ├── HTTP / API / contract design ─────→ api-design
│ └── Writing tests first ──────────────→ tdd
│
├── Non-trivial decision under uncertainty ─→ doubt-driven-development
│
├── 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)
│ └── Review-fix until clean ───────────→ pr-review loop (fresh subagent per round)
├── Simplifying code ───────────────────────→ code-simplification
├── Whole-codebase audit ──────────────────