원클릭으로
implement
Full TDD implementation of a feature with review cycles
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Full TDD implementation of a feature with review cycles
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | implement |
| description | Full TDD implementation of a feature with review cycles |
| argument-hint | <feature description> |
Complete end-to-end implementation of a feature using Test-Driven Development with code review cycles.
YOU MUST NOT STOP UNTIL THE ENTIRE PLAN IS IMPLEMENTED. NO TODOS. NO PARTIAL WORK.
$ARGUMENTS - Feature, fix, or chore descriptionAsk questions until you have COMPLETE understanding:
Use AskUserQuestion to gather any missing information. Do NOT proceed with ambiguity.
Invoke the consolidation skill, which loads the full orchestration cycle into your context. You become the conductor and dispatch each stage:
Skill(skill="skills:consolidation", args="## Task\n[full feature description from $ARGUMENTS]\n\n## Acceptance criteria\n[from Phase 0]\n\n## Constraints\n- TDD: write failing tests before implementation for every subtask\n- Every subtask must include its own tests\n- Follow project conventions\n\n## Working directory\n[cwd]")
The cycle handles:
The skill runs in your context because subagents cannot spawn further subagents — you do the dispatching.
After the cycle completes, delegate to skills:commit (or skills:commit-all if multiple logical groups).
The cycle's final verifier confirms these before it ends, but double-check:
Build the project (auto-detects build system)
Find and remove dead code, unused imports, and technical debt
Create git commits in logical groups for all current changes
Create a git commit with conventional commit message
Pick up unfinished work from where the last session left off
Debug and fix failing tests or errors