The index of every pro-workflow skill and command, grouped by job, with when to reach for each and whether it is human-run or auto-triggered. Use when you are not sure which skill fits, want the full map, or ask "what can this do", "which skill for X", "list the workflow".
Installs just this skill. Get the whole plugin for auto-invocation.
⚡ How it fires
How this skill gets triggered: by you, by Claude, or both.
Fires itselfClaude auto-loads it when your prompt matches the work.
You can call itInvoke it directly when you want it.
Slash command/skill-router
👁️ Context preview
The summary Claude sees to decide when to auto-load this skill.
The index of every pro-workflow skill and command, grouped by job, with when to reach for each and whether it is human-run or auto-triggered. Use when you are not sure which skill fits, want the full map, or ask "what can this do", "which skill for X", "list the workflow".
---name: skill-router
description: The index of every pro-workflow skill and command, grouped by job, with when to reach for each and whether it is human-run or auto-triggered. Use when you are not sure which skill fits, want the full map, or ask "what can this do", "which skill for X", "list the workflow".
user-invocable: true
---# skill-router
You cannot hold 41 skills and 23 commands in your head. This is the index so you do not have to. Each entry says what it is for and how it fires: `[human]` you invoke it deliberately, `[auto]` the agent reaches for it from your prompt.
Keep this honest. When a skill is added, renamed, removed, or changes how it fits a flow, update this file in the same change. A router that points at a skill that no longer exists, or omits a new one, is worse than none.
## How to use it
State the job in one line. Match it to a group below. If two skills look close, the `when to reach` clause is the tiebreaker. Most skills have a matching slash command of the same name, so this index covers commands too.
## Self-correction and memory
- `learn-rule` `[human]` - capture a correction as a durable rule loaded on every future session.
- `replay-learnings` `[auto]` - surface past learnings relevant to the task before you start.
- `insights` `[human]` - correction trends, heatmaps, productivity view.
- `skill-optimizer` `[human]` - train a skill's SKILL.md against accumulated corrections.
## Planning and decisions
- `plan-interrogate` `[human]` - resolve every open decision before code; emits a decision ledger, a shared-language `CONTEXT.md`, and decision records.
- `domain-modeling` `[human]` - build the project's shared vocabulary and bounded contexts up front.
- `improve-architecture` `[human]` - audit an area and propose the smallest structural moves; plan, not rewrite.
- `thoroughness-scoring` `[auto]` - score each decision point 1-10 so effort tracks stakes.
- `orchestrate` `[human]` - wire commands, agents, and skills together for a multi-phase feature.
## Multi-agent and parallel work
- `agent-teams` `[human]` - lead plus teammates sharing one task list.
- `batch-orchestration` `[human]` - split a large change into independent units, one agent each.
- `parallel-worktrees` `[human]` - git worktrees for zero-dead-time parallel sessions.
- `sprint-status` `[human]` - status across active parallel sessions.
- `session-handoff` `[human]` - structured handoff doc for the next session.
- `file-watcher` `[human]` - hooks that react to config/env/dep changes.
- `auto-setup` `[human]` - configure gates, hooks, settings for a new project.
- `pro-workflow` `[auto]` - the system overview; orchestration patterns and reference.
- `skill-router` `[human]` - this index of every skill and command.
## Command-only (no matching skill)
These slash commands ship without a skill of the same name: `/commit`, `/develop`, `/doctor`, `/handoff`, `/learn`, `/list`, `/parallel`, `/replay`, `/search`, `/skill-optimize`, `/wiki`.
## Naming the invocation mode
Every skill declares one intent. `[human]` skills are deliberate, side-effectful, or session rituals and carry `user-invocable: true`. `[auto]` skills earn their place in context by a description precise enough to fire on the right prompt and stay quiet otherwise. See [`rules/skill-conventions.mdc`](../../rules/skill-conventions.mdc) for the full convention and the write-operation rules for state-changing skills.