Workflow Overview
The Pipeline
Section titled “The Pipeline”my-kit structures development into a repeatable pipeline:
Specify → Plan → Tasks → Implement → Ship → Audit
Each stage has a dedicated command and produces artifacts that feed the next stage. This keeps work focused, traceable, and auditable.
Stages
Section titled “Stages”- Specify — Define what you’re building with
/mykit.specify - Plan — Generate an implementation plan with
/mykit.plan - Tasks — Break the plan into trackable tasks with
/mykit.tasks - Implement — Execute tasks with
/mykit.implement - Ship — Commit, PR, and release with
/mykit.commit,/mykit.pr,/mykit.release - Audit — Run quality gates with
/mykit.audit.all
Why Spec-Driven?
Section titled “Why Spec-Driven?”Starting with a spec ensures Claude understands the full scope before writing code. This prevents scope creep, missed requirements, and aimless implementation.