원클릭으로
implement
TDD implementation (RED→GREEN→REFACTOR) → verify → review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
TDD implementation (RED→GREEN→REFACTOR) → verify → review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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
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