skills/dispatch/SKILL.md
Intent router. Auto-detects execution mode from context and routes to the appropriate skill.
npx skillsauth add srnnkls/tropos dispatchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Active scopes:
!find scopes -maxdepth 3 -name scope.md 2>/dev/null
Checkpoints:
!find scopes -name checkpoint.yaml -maxdepth 3 2>/dev/null
Git status:
!git status --short 2>/dev/null
Current branch:
!git branch --show-current 2>/dev/null
Routes user intent to the appropriate execution skill.
Apply these rules to $ARGUMENTS in order:
| Pattern | Route | Action |
|---|---|---|
| "continue" or "resume" | Resume | Skill(continue, $ARGUMENTS) |
| "debug" or "trace" | Debug | Skill(implement, debug $ARGUMENTS) |
| "test" or "tdd" | TDD | Skill(test, $ARGUMENTS) |
| "verify" or "done" | Verify | Skill(implement, verify $ARGUMENTS) |
| Matches ./scopes/*/*/ path | Execute | Skill(implement, $ARGUMENTS) |
| Checkpoint in pre-loaded context | Resume | Skill(continue) |
| Exactly one active scope (no checkpoint) | Execute | Skill(implement) |
| File path or task description | Implement | Skill(implement, $ARGUMENTS) |
| No argument | Menu | See fallback |
When no argument or ambiguous, use AskUserQuestion:
Header: Dispatch
Question: What would you like to execute?
multiSelect: false
Options:
- Scope execution: Execute active scope with TDD pipeline (tester → implementer → reviewer)
- Continue: Resume scope implementation from checkpoint
- Implement: Single implementation task with language guidelines
- TDD: Write failing test first, then implement (RED-GREEN-REFACTOR)
- Verify: Evidence-based verification before claiming done
With "Other" covering: debug (root cause tracing).
Routing by selection:
| Selection | Action |
|---|---|
| Scope execution | Skill(implement) |
| Continue | Skill(continue) |
| Implement | Skill(implement) |
| TDD | Skill(test) |
| Verify | Skill(implement, verify) |
| Other: debug | Skill(implement, debug) |
Protocol: dispatch/protocol.md
tools
External code-review harness (`peer` zsh tool): canonical model registry, idle-stall watchdog, and self-parallelising fan-out to codex/gemini. Use when dispatching external (non-Claude) reviewers from the review or implement pipelines — call `peer run`/`peer <harness>` instead of `codex exec`/`gcloud`+Vertex directly.
testing
Unified validation dispatcher. Auto-detects validation type from argument or presents selection menu. Routes to test, implement (verify), or hooks-test.
development
Test-driven development methodology (RED-GREEN-REFACTOR). Use when implementing features, fixing bugs, or changing behavior - write failing test first, then minimal code to pass.
development
Create new Claude Code skills following project patterns and best practices. Use when building new skills, extracting reusable capabilities, or converting commands to skills.