Learn the workflow
Organizes AI-assisted development into structured planning and execution cycles for shipping code.
npx claudepluginhub smileynet/line-cookOutput this guide to the user. Do not act on it - display it for reference.
Line Cook organizes AI-assisted development into two cycles: Mise (planning) and Run (execution). Think big in Mise, execute small in Run.
Mise Cycle Run Cycle
┌──────────────────┐ ┌──────────────────┐
│ │ │ │
│ /brainstorm │ │ /prep ◄────┐ │
│ ↓ │ │ ↓ │ │
│ /scope │ │ /cook │ │
│ ↓ │ │ ↓ │ │
│ /finalize ─────┼─────► │ /serve │ │
│ │ │ ↓ │ │
└──────────────────┘ │ /tidy ─────┘ │
│ next task │
└──────────────────┘
Turn unstructured ideas into well-scoped, dependency-ordered tasks.
| Phase | Command | What it does |
|---|---|---|
| Brainstorm | /line:brainstorm | Explore the problem space — questions, research, risks |
| Scope | /line:scope | Structure into epics → features → tasks with dependencies |
| Finalize | /line:finalize | Create beads (tracked issues) and test specifications |
Use /line:mise to run all three with pauses between phases.
Execute one task at a time with TDD, AI review, and automatic commit/push.
| Phase | Command | What it does |
|---|---|---|
| Prep | /line:prep | Sync git/beads, show unblocked tasks |
| Cook | /line:cook | Claim task, write tests first, implement, close |
| Serve | /line:serve | AI peer review (polisher + sous-chef) |
| Tidy | /line:tidy | File discoveries, commit, push |
Use /line:run to run all four in sequence.
After the basic cycle, additional gates validate completed work:
| Gate | Command | When |
|---|---|---|
| Feature done | /line:plate | All tasks under a feature are closed |
| Epic done | /line:close-service | All features under an epic are closed |
Tip: Run
/line:plan-auditperiodically to check bead health and structure.
Ready to try it hands-on?
Run /line:onboarding for an interactive walkthrough with a demo project.
Having setup trouble?
Run /line:init to verify your environment.
Already set up?
/line:mise/line:run/line:help/line:loop