skills/validate/SKILL.md
Unified validation dispatcher. Auto-detects validation type from argument or presents selection menu. Routes to test, implement (verify), or hooks-test.
npx skillsauth add srnnkls/tropos validateInstall 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.
Uncommitted:
!git status --short 2>/dev/null
Routes to the appropriate validation skill based on argument type.
Apply these rules to $ARGUMENTS in order:
| Pattern | Route | Action |
|---|---|---|
| Contains "hook" or path to hooks file | Hooks | Skill(hooks-test, $ARGUMENTS) |
| Contains "completion", "done", or "verify" | Completion | Skill(implement, verify) |
| Contains "test" or "tdd" | TDD | Skill(test) |
| No argument | Menu fallback | See below |
When no argument or ambiguous, use AskUserQuestion:
Header: Validate
Question: What would you like to validate?
multiSelect: false
Options:
- TDD: RED-GREEN-REFACTOR test-driven development
- Completion: Evidence-based verification before claiming done
- Hooks: Test Claude Code hooks at unit/integration/e2e levels
Routing by selection:
| Selection | Action |
|---|---|
| TDD | Skill(test) |
| Completion | Skill(implement, verify) |
| Hooks | Skill(hooks-test) |
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.
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.
tools
Unified scope lifecycle. Auto-detects operation from argument or presents selection menu. Routes to create, review, update, done, or list.