plan-backlog
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.…
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
> /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.
/launch-storyContext preview
What this command does when you run it.
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
description: 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
Prepare a dedicated workspace for the story given in the arguments: $ARGUMENTS
You are the launcher — you do NOT work the story yourself. Steps:
1. **Validate** the issue reference (the shape your tracker uses, e.g. `PROJ-1234`, `ENG-42`, `#123`); if missing, ask — do not guess.
2. **Create the worktree** (from the repo root, using a short slug from the issue key):
git worktree add ../<repo-name>-<slug> -b feat/<slug>-story
where `<slug>` is the issue key made branch-safe (strip a leading `#`, replace anything non-alphanumeric with `-`). If the worktree or branch already exists, reuse it and say so.
3. **Open the window**: `code <worktree-path>`. If the `code` CLI is unavailable, tell the user to open the folder manually.
4. **Report** the worktree path and branch, and give the user the exact next step to run in the NEW window's Claude session, ready to copy:
/fullstack-dev-kit:work-story <TICKET-KEY>
Also remind them: when the PR is merged, remove the worktree with `git worktree remove <path>`.
Do not start the pipeline in THIS conversation — the new window owns the story end to end.
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
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.…
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]