From agentic-kit
Use when: pipeline reaches implementation phase. Implements with TDD via RED-GREEN-REFACTOR. Lightweight runs inline; std/deep dispatches fresh opus subagent per unit sequentially. Produces code + tests.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-kit:craftThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Receives:
Receives:
wiki/research/<slug>-exploration.md, written by yo step 15)Reads:
wiki/blueprints/<slug>.md (std/deep)wiki/extensions/craft.md for extension agents/hooksNo subagent. Main session implements directly. No extensions.
Fresh opus subagent per implementation unit, dispatched sequentially per dependency order.
Read blueprint.md. Extract unit list with execution order, durable decisions, per-unit details.
For each unit in execution order:
A. Construct context bundle:
wiki/research/<slug>-exploration.md for this unit's affected systems
(grep the file, extract the scoped section -- don't pass the whole thing)B. Dispatch fresh opus subagent:
C. Handle return:
| Status | Action |
|---|---|
| DONE | Mark unit complete, proceed to next |
| BLOCKED | Re-dispatch with more context / break down further / escalate to user |
| NEEDS_CONTEXT | Provide requested context, re-dispatch |
D. Run extensions (if wiki/extensions/craft.md exists):
E. Mini-review (inline by orchestrator):
F. Integration check (unit 2+): Run full test suite to catch cases where a unit breaks prior work before more units build on broken foundation.
G. Progress tracker:
[x] Unit 1: <name> -- DONE
[x] Unit 2: <name> -- DONE
[ ] Unit 3: <name> -- IN PROGRESS
[ ] Unit 4: <name> -- PENDING
After all units complete, pass to verify with full diff. No automatic commits.
A "fix attempt" = code change + verification failure. Investigation alone does not count.
4 consecutive fix failures on the same issue -> STOP.
Reset: breaker resets when moving to a different issue/unit.
See references/tdd-guardrails.md § 12 Rationalization Red Flags. If any cross your mind, STOP and write the test.
Produces: code changes + tests Passes to: verify
wiki/extensions/craft.md are optional. Skip gracefully if file missing.npx claudepluginhub wolfieleader/agentic-kit --plugin agentic-kitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.