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
├── 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
│