원클릭으로
tdd
Run red-green-refactor with one failing test, one implementation, then cleanup. Use when building features or fixes test-first.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run red-green-refactor with one failing test, one implementation, then cleanup. Use when building features or fixes test-first.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Bootstrap AI-ready repo governance, traceability, cascade, catalog audits, validation. Deprecated compatibility aliases: init-ai-repo, ai-sdlc-init. Use when setting up AI SDLC.
Deprecated compatibility alias for ai-catapult-init. Use only when legacy prompts invoke "ai-sdlc-init"; otherwise use "ai-catapult-init".
Ship a northstar handoff's goals in an ai-catapult-init repo — ultragoal one-PR-per-goal, deterministic engine-pick, peer review, CI gate, fail-closed merge, cascade closure.
Scaffold a structurally valid eval triplet for a target skill under .ai/evals/. CI checks structure only; the LM-judge runs out-of-band, never in CI.
Deprecated compatibility alias for ai-catapult-init. Use only when legacy prompts invoke "init-ai-repo"; otherwise use "ai-catapult-init".
Intake intent into a tracked, sliced plan in an ai-catapult-init repo — deep-interview + skippable grill-me, always raise an issue, ralplan, write the A→B handoff.
| name | tdd |
| description | Run red-green-refactor with one failing test, one implementation, then cleanup. Use when building features or fixes test-first. |
Use one vertical slice at a time: one behavior test, minimal implementation, refactor only after green. Read vertical-slices.md when you need philosophy, anti-pattern examples, or the per-cycle checklist.
Before writing code:
Ask: "What should the public interface look like? Which behaviors are most important to test?"
Write one test that confirms one externally visible behavior:
RED: Write test for first behavior → test fails
GREEN: Write minimal code to pass → test passes
This proves the path works end-to-end.
For each remaining behavior:
Rules:
Refactor only after green. Read refactoring.md when choosing refactor candidates.
Check:
Never refactor while red.