con un clic
implement
TDD implementation (RED→GREEN→REFACTOR) → verify → review
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
TDD implementation (RED→GREEN→REFACTOR) → verify → review
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Multi-agent code review for Rust CLI/TUI. UX Review inactive (terminal UI — no web frontend). Code Review only. Includes Rust/clippy-specific checklist.
Adaptive requirements clarification with auto-depth routing. Shallow (Q&A) for simple tasks, Deep (exploration + DRAFT + PLAN) for complex ones. Escalates automatically when ambiguity persists.
Self-healing verification loop (test → clippy → fmt)
Session end - document updates, commit
Session start - check progress, suggest next task
Basado en la clasificación ocupacional SOC
| name | implement |
| description | TDD implementation (RED→GREEN→REFACTOR) → verify → review |
| required_context | [".claude/ai-context/architecture.md",".claude/ai-context/conventions.md"] |
Analysis → Gate pre-run → TDD(RED→GREEN→REFACTOR) → /verify → /review → /wrap
Analysis: Review plan, identify affected modules
Gate pre-run (MUST — before coding)
Run the PLAN's [unverified-gate: probe=…] / Phase 0 probes before RED. Fail → halt + report (don't build on a falsified assumption). Map Acceptance/DoD → RED tests; mark unverifiable as [unverified-gate] to carry to verify/wrap. Detail → references/gates.md (tag vocab: ../clarify/references/provenance.md).
Rust-specific probes:
cargo check — whether it compilescargo test -- --list — verify test targets existmake check — unified fmt + clippy + test gateTDD Cycle:
Auto-call /verify: On implementation complete
Auto-call /review: On verify pass
Auto-call /wrap: On review PASS
cargo test
cargo clippy -- -D warnings
cargo fmt --check