-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Tip
This walkthrough takes ~10 minutes. Have a small feature from your backlog ready — a real one works best.
Your first structured feature. This walkthrough shows how the 7-step workflow replaces "just ask Claude to build X."
- Install the plugin
- Have a small feature idea in mind (a real one from your backlog is best)
Open Claude Code in your project and describe what you want:
/requirements I need to add a rate limiter to our /api/search endpoint
Claude produces a PRD summary: What · Why · Who · In scope · Out of scope · Success criteria · Definition of Done. Review and correct anything that does not match your intent — this is your first human checkpoint.
Tip
If the problem space is unclear, start with /research (Step 0) instead.
/design
Claude presents at least 2 options with trade-offs for each key decision (algorithm, storage, failure mode). You decide — AI proposes, human disposes. For decisions affecting >3 files or changing public API, an ADR is recorded.
/breakdown
Claude produces an atomic task list: each task is 1 sentence, touches ≤5 files, with explicit dependencies and priority (Covey's Quadrants Q1–Q4). Q4 tasks are eliminated. Parallel-safe tasks are marked.
/build-brief
For each task, Claude reads existing code first (H5 — Seek First to Understand), then produces an implementation brief: files to touch, patterns to follow, edge cases to handle. Only now does implementation begin.
/review-ai
Claude audits the generated code for security, completeness, and adherence to the brief. Never commit without this step — it is your last chance to catch AI hallucinations, missing error handling, and scope creep.
Optional deeper lenses:
-
/security-check— focused OWASP Top 10 review -
/cross-verify— full 17-question 8-Habit checklist -
/whole-person-check— Body/Mind/Heart/Spirit balance
/deploy-guide
Staging first, always. Claude produces a step-by-step deploy plan with verification commands and a rollback procedure ready to paste.
/monitor-setup
Set up error tracking, alerts, and health checks. H7 — Sharpen the Saw: invest in observability so you learn from production.
/reflect
5 questions, 5 minutes. What worked? What surprised you? What would you do differently? Capture the lesson before the context evaporates.
Not every change needs all 7 steps. See Workflow Overview → When to Skip. Single-line bug fixes, formatting, and dependency bumps typically skip Steps 0–4 and go straight to /review-ai.
- Workflow Overview — the full picture
- 8 Habits Reference — the principles behind each step
- Vibe Coding vs Structured — why this matters
Source of truth: this wiki is generated from docs/wiki/. Edits made through the GitHub Wiki web UI may be overwritten by the next sync. To change a page, open a PR against the repository source file.
Repository · Issues · README · License
Workflow discipline for AI-assisted development
Start
Workflow
- Overview
- 0 · Research
- 1 · Requirements
- 2 · Design
- 3 · Breakdown
- 4 · Build Brief
- 5 · Review AI
- 6 · Deploy Guide
- 7 · Monitor Setup
Operations
Reference
- Habits Reference
- Maturity Model
- Architecture
- Limitations
- Vibe Coding vs Structured
- Harness Engineering
Project