TDD 기반 개발 오케스트레이터. 기능 추가, 기능 변경, 기능 구현 요청 시 자동 발동한다. "~해줘", "~만들어줘", "~추가해줘", "~구현해줘", "~개발해줘", "~변경해줘", "~수정해줘" 같은 코드 변경 요청에 트리거된다. Planner, Architect, QA Engineer, Implementer를 조율하여 테스트 우선 개발 루프를 실행하고, 마일스톤 완료까지 자동으로 진행한다.
Orchestrates test-driven development loops by coordinating specialized agents to implement code changes through planning, design, testing, and verification phases.
/plugin marketplace add jo-minjun/claude-devkit/plugin install jo-minjun-claude-devkit-plugins-claude-devkit@jo-minjun/claude-devkitThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/agent-contexts.mdreferences/contracts.mdreferences/gate-rules.mdreferences/phases.md서브에이전트를 마일스톤 단위로 조율하여 TDD 기반 개발 루프를 실행한다.
Planning → Design → Test First → Implementation → Verification → Complete
↑ │ │
└────────────────────────────────────┴───────────────┘
(테스트 실패 또는 게이트 위반 시 복귀)
| 순서 | 에이전트 | 역할 | 출력 |
|---|---|---|---|
| 1 | Planner | 마일스톤 정의 | Design Brief |
| 2 | Architect | 설계 확정 | Design Contract |
| 3 | QA Engineer | 테스트 작성 | Test Contract + 테스트 코드 |
| 4 | Implementer | 구현 | 구현 코드 |
| 5 | QA Engineer | 테스트 실행 | Test Result Report |
보조 에이전트: Code Explore (코드 탐색), Web Explore (외부 문서 검색)
| Gate | 조건 | 위반 시 |
|---|---|---|
| GATE-1 | Test Contract 존재 | Implementation 차단 |
| GATE-2 | 테스트 결과 존재 | Complete 차단 |
| GATE-3 | 스코프 변경 없음 | Planning 복귀 |
| GATE-4 | 설계 불변 조건 유지 | Design 복귀 |
상세 규칙: gate-rules.md
## Status Report
- **Phase**: [현재 페이즈]
- **Agent**: [실행 에이전트]
- **Gate**: [PASS|FAIL] - [사유]
- **Next**: [다음 작업]
- **Continue**: [YES|NO]
| 문서 | 내용 |
|---|---|
| gate-rules.md | 게이트 규칙 상세 |
| contracts.md | Contract 형식 (Design Brief, Design Contract, Test Contract) |
| phases.md | 페이즈별 상세 절차 |
| agent-contexts.md | 에이전트별 컨텍스트 주입 가이드 |
Planner 호출:
- prompt: "[사용자 요청] 분석하여 Design Brief 생성"
- subagent_type: "planner"
Architect 호출:
- prompt: "[Design Brief] 기반으로 Design Contract 생성"
- subagent_type: "architect"
QA Engineer 호출:
- prompt: "[Design Contract] 기반으로 테스트 코드 작성"
- subagent_type: "qa-engineer"
Implementer 호출:
- prompt: "[테스트 코드]를 통과하는 최소 구현"
- subagent_type: "implementer"
QA Engineer 호출:
- prompt: "테스트 실행 및 결과 보고"
- subagent_type: "qa-engineer"
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.