launch-story
Create a dedicated worktree for a story and open a new VS Code window on it, ready to run the pipeline. Usage - /launch-story PROJ-1234
Turn an idea, brief, or document into a well-formed backlog and create it in your tracker after approval. Guided by default; --quick for a one-shot draft. Usage - /plan-backlog <idea text | path/to/brief.pdf | URL> [--quick]
> /plugin marketplace add theam/claude-dev-kit > /plugin install fullstack-dev-kit@claude-dev-kit
How it fires
How this command gets triggered: by you, by Claude, or both.
/plan-backlogContext preview
What this command does when you run it.
Turn an idea, brief, or document into a well-formed backlog and create it in your tracker after approval. Guided by default; --quick for a one-shot draft. Usage - /plan-backlog <idea text | path/to/brief.pdf | URL> [--quick]
description: Turn an idea, brief, or document into a well-formed backlog and create it in your tracker after approval. Guided by default; --quick for a one-shot draft. Usage - /plan-backlog <idea text | path/to/brief.pdf | URL> [--quick]
Turn the idea/brief given in the arguments into a backlog: $ARGUMENTS
Follow the `plan-backlog` skill. It has two modes; pick per invocation (never persist a mode — a mature project can hold a brand-new feature):
Rules:
The guided flow is interactive, so conduct it in the main conversation (do not hand it to a context-isolated subagent — the user needs to make a decision at each level):
1. **Intake + discovery** — read the source; learn the tracker's conventions (issue types, fields, a sample of recent issues). You may delegate the tracker discovery to the `backlog-planner` subagent to keep this context clean. 2. **Three zoom levels**, per the skill — at each, present **2–4 alternatives**, recommend one with a reason, and **wait for the user's decision** before going deeper:
3. **Approval gate:** print a concise hierarchy summary in the conversation and ask the user to approve, adjust, or cancel. For a non-trivial backlog, also render the full draft as a **navigable artifact** (collapsible epics → stories, searchable) as the rich review surface — but the approval still happens in the chat (the artifact is not a substitute for the gate). See the `plan-backlog` skill's review step. (The per-level decisions do not replace this final gate.) 4. **Create** on approval, via the tracker adapter (you may delegate the creation writes to `backlog-planner`), then report each item's key/URL and the handoff note (each story ready for `/work-story <KEY>`).
Delegate to the `backlog-planner` subagent in two phases:
**Phase 1 — context and draft.** Instruct it to read the source, learn the tracker's conventions, and build the whole backlog draft at once, and RETURN the full draft as its result — explicitly NOT asking for approval itself and NOT creating anything yet.
**Approval gate — two separate steps, in this exact order:**
1. **FIRST, print the draft**: write a normal assistant message containing the backlog-planner's FULL draft (hierarchy + each item's title, acceptance criteria, labels, links), verbatim. This message is a hard requirement — a selection dialog is not a substitute, and putting the draft only inside a dialog's option text does not count. For a non-trivial backlog you may *additionally* render it as a navigable artifact (see the skill's review step), but the in-chat draft + question remain the gate. 2. **THEN, and only after that message is visible**, ask the user to approve, adjust, or cancel.
Never collapse these two steps into one dialog. Only if the arguments contain `--auto-approve` (automated runs), skip the gate.
**Phase 2 — creation.** On approval (or auto-approve), resume the SAME backlog-planner with the approval and any adjustments, and let it create the items and report.
An open-source Claude Code plugin by The Agile Monkeys: a stack-agnostic issue-to-PR workflow with enforced quality gates. Also runs on OpenAI Codex, Cursor, and other Agent Plugins 1.0.0 clients.
Repo: theam/claude-dev-kit
Create a dedicated worktree for a story and open a new VS Code window on it, ready to run the pipeline. Usage - /launch-story PROJ-1234
Work a user story end to end — fetch the ticket, plan, implement, verify gates, and open the PR. Usage - /work-story PROJ-1234 [--auto-approve]