How this skill is triggered — by the user, by Claude, or both
Slash command
/drill:drillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
plan → prepare → [개발] → review → qa 워크플로우를 연결하는 오케스트레이션 스킬입니다.
plan → prepare → [개발] → review → qa 워크플로우를 연결하는 오케스트레이션 스킬입니다. 각 단계의 완료 상태를 추적하고, 이어하기(resume)를 지원합니다.
/drill:drill {feature}
↓
1. /drill:plan → {FEATURE-NAME}.md + concepts/ 생성
↓
2. /drill:prepare → Linear 티켓 생성
↓
3. [개발] (수동 — Claude 또는 사용자)
↓
4. /drill:review {feature} {pr} → Spec 동기화 + Decision Log
↓
5. /drill:qa → TC 작성
~/Projects/flex/til/spec/{feature}/.drill-state.json에 진행 상태를 저장합니다:
{
"feature": "job-grade-modal",
"currentPhase": "plan",
"phases": {
"plan": { "status": "complete", "completedAt": "2026-03-27T10:00:00Z" },
"prepare": { "status": "in-progress" },
"review": { "status": "pending" },
"qa": { "status": "pending" }
},
"specPath": "spec/job-grade-modal/"
}
상태값: pending | in-progress | complete | skipped
/drill:drill
~/Projects/flex/til/spec/ 하위의 모든 .drill-state.json을 스캔하여 진행 중인 drill 목록을 표시합니다:
진행 중인 drill:
1. job-grade-modal — prepare (진행중)
plan ✅ → prepare 🔄 → review ⏳ → qa ⏳
2. markdown-animation — plan (완료)
plan ✅ → prepare ⏳ → review ⏳ → qa ⏳
어떤 drill을 이어할까요?
AskUserQuestion으로 선택하면 해당 feature의 다음 단계를 시작합니다. 진행 중인 drill이 없으면 새 feature name을 입력받습니다.
/drill:drill job-grade-modal
spec/job-grade-modal/ 존재 확인
.drill-state.json 확인.drill-state.json 없으면 → Phase 1부터 시작.drill-state.json 있으면 → 이어하기 제안/drill:drill resume
또는 feature name으로 재실행 시:
이전 진행 상태가 있습니다:
- plan: ✅ 완료
- prepare: ✅ 완료
- review: ⏳ 대기중
- qa: ⏳ 대기중
어느 단계부터 이어할까요?
AskUserQuestion으로 시작 단계 선택.
각 단계 완료 후:
.drill-state.json 업데이트✅ plan 단계 완료 — {FEATURE-NAME}.md + 3개 Concept 생성
다음 단계: prepare (Linear 티켓 생성)
진행할까요?
개발 단계 처리: prepare 완료 후:
✅ prepare 단계 완료 — 5개 티켓 생성
다음은 개발 단계입니다.
개발 완료 후 PR을 생성하면 /drill:review {pr-url}로 Spec 동기화를 진행하세요.
또는 /drill:drill resume로 이어할 수 있습니다.
review 단계를 건너뛰시겠습니까?
건너뛴 단계는 skipped로 기록.
모든 하위 스킬은 독립적으로 사용 가능합니다:
/drill:plan # plan만 단독 실행
/drill:prepare job-grade-modal # prepare만 단독 실행
/drill:review job-grade-modal PR-URL # review만 단독 실행
/drill:qa job-grade-modal # qa만 단독 실행
독립 실행 시에도 .drill-state.json이 있으면 상태를 업데이트합니다.
.drill-state.json으로 진행 상태 추적npx claudepluginhub flex-hyuntae/claude-plugins --plugin drillGuides developers through the full development pipeline: discover, brainstorm, plan, execute, review, and ship. Invoke when starting work on a bug, feature, improvement, or task.
Coordinates a 4-phase feature development workflow: research, implementation, progress tracking, and status checks. Useful for structured feature delivery.
Orchestrates spec-driven development workflow (Requirements → Design → Tasks → Implementation) with approval gates. Activates for structured feature planning or 'use spec-driven'.