Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill deckrd-coder명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | deckrd-coder |
| description | > Use when this capability is needed. |
Implements tasks using strict BDD: Red → Green → Refactor. Always generates a checklist first via checklist-builder, then delegates BDD implementation to bdd-coder.
Before every phase, YOU MUST output:
"I am executing /deckrd-coder [TASK_ID] — Phase [N]: [Phase Name]."
No announcement = violation. Restart with announcement.
Raise ALL questions before writing any code. Ask NOW if any of the following are unclear:
Once Phase 1 (Checklist Build) starts, stop asking scope questions.
# Natural-language instruction
"グリーティング関数を実装して"
"implement config file parser"
# Explicit Task ID (from tasks.md)
/deckrd-coder T01-02
/deckrd-coder T01-02 --checklist <path> # skip checklist-builder, use existing checklist
deckrd-coder is an orchestration layer with the following fixed phase order:
| Phase | Name | Agent | What happens |
|---|---|---|---|
| 0 | Environment | explore-agent | Detect language, test framework, lint, type-check setup |
| 1 | Checklist Build | checklist-builder | Generate checklist from instruction or Task ID |
| 2 | Dependency Map | deckrd-coder | Classify checklist tasks into serial / parallel groups |
| 3 | bdd-coder Dispatch | bdd-coder | Spawn bdd-coder per task; collect status reports |
| 4 | Quality Gate | deckrd-coder | Global lint + type-check + all tests pass |
| 5 | Done Check | deckrd-coder | Confirm all checklist items complete |
| 6 | Session End | deckrd-coder | Reset state; remind user to commit manually |
Gate Rule: phases must run in order. No skipping.
All tests MUST pass at Phase 4. No exceptions. Do NOT commit after completion — user commits manually.
Always spawn checklist-builder with the user's instruction or Task ID.
| Input type | checklist-builder behavior |
|---|---|
| Natural-language | Analyze instruction, decompose into BDD tasks, generate file |
| Task ID (e.g. T01-02) | Read tasks.md entry, expand into BDD checklist, generate file |
--checklist <path> | Skip checklist-builder, use the specified existing file |
Output: temp/tasks/<slug>-<adjective>-checklist.md
Pass the following context to each bdd-coder instance:
| Item | Content |
|---|---|
| Task ID | e.g. T-01-02-01 |
| Task description | Full Given/When/Then from checklist |
| Quality gate cmds | Commands table from ENV PROFILE |
| Checklist path | Path to generated checklist file |
Do NOT pass: session-wide context, other tasks' info, or session.json.
If bdd-coder reports BLOCKED: stop, report to user, wait for instruction.
Natural-language instruction:
"グリーティング関数を実装して" → checklist-builder が
temp/tasks/add-greeting-function-calm-checklist.mdを生成 → bdd-coder で実装
Task ID from tasks.md:
"T01-02 を実装して" → checklist-builder が tasks.md の T01-02 からチェックリストを生成 → bdd-coder で実装
Existing checklist (skip checklist-builder):
/deckrd-coder T01-02 --checklist temp/tasks/my-checklist.md→ 既存チェックリストをそのまま使用 → bdd-coder で実装
tasks.md not found when Task ID specified
Cause: /deckrd tasks has not been run yet.
Solution: Complete the full deckrd flow first: req → spec → impl → tasks.
Or give a natural-language instruction instead — checklist-builder works without tasks.md.
Tests failing at Phase 4 Cause: bdd-coder implementation is incomplete or incorrect. Solution: Return to Phase 3, re-dispatch bdd-coder for the failing task. Do not skip Phase 4.
Phase skipped accidentally Cause: Announcement not made before a phase. Solution: Restart from the beginning with proper announcements.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.