From agentic-kit
Use when: sketch is complete for std/deep tier. Defines how via vertical-slice implementation units. Produces blueprint.md with 4-check fail-closed review gate and escalation path.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-kit:blueprintThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Receives:
Receives:
Reads:
wiki/sketches/<slug>.mdRead sketch.md completely. Verify:
Gate: DESIGN-THEN-CODE -- full blueprint before any implementation.
Decompose selected approach into vertical slices. Each unit must be:
Vertical slices, not horizontal layers. "User can reset password via email" (touches DB, API, UI together) not "add DB column" then "add API route" then "add UI".
Per unit, specify:
| Field | Content |
|---|---|
| Goal | Behavioral description (what changes for user/system) |
| Dependencies | Other units this depends on (DAG -- no circular deps) |
| Confidence | GREEN (clear path) / YELLOW (some unknowns) / RED (significant unknowns) |
| Affected systems | Files, modules, services touched |
| Approach | Behavioral description of HOW, not code |
| Test scenarios | Ordered priority list -- craft processes one-at-a-time |
| Verification criteria | What "done" looks like for this unit |
Hard constraints:
Top-level section for cross-unit decisions that craft subagents need:
These decisions are authoritative. Craft subagents follow them; they do not re-decide.
Topological sort by dependency DAG. Label execution order. Flag any units that can be parallelized (no mutual dependencies).
If total scope is simpler than expected (1-2 units, no durable decisions needed), propose downgrade to lightweight. User confirms.
Gate: ARTIFACT-BEFORE-HANDOFF -- persist to disk before review.
Write to wiki/blueprints/<slug>.md using references/blueprint-template.md.
Four checks. ALL must pass. Max 3 retry cycles.
Check 1 -- Dependency coherence (inline)
Check 2 -- Completeness (blueprint-reviewer agent)
wiki/research/<slug>-exploration.md). Classify: valid → accept, false positive → reject with reasoning. Log rejections for retro.Check 3 -- No placeholders (inline)
Check 4 -- Testability (inline)
Fix identified issues, re-run all 4 checks. After 3 failures, escalate to user with:
Produces: wiki/blueprints/<slug>.md
Gate: blueprint review (4 checks, fail-closed)
Passes to: craft
references/blueprint-template.md -- YAML frontmatter schema, unit template, durable decisions structureyo/references/agent-dispatch.md -- how to compose Agent tool calls (for blueprint-reviewer dispatch)If you catch yourself thinking any of these, STOP and follow the blueprint procedure:
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.