From ticket-flow
Run a ticket end-to-end through the plan-stage-reviewed workflow (capture -> research -> plan -> human approval -> implement -> validate -> PR). Works with GitHub Issues or Linear. Use when the user says "ship this ticket", "run the workflow on
How this skill is triggered — by the user, by Claude, or both
Slash command
/ticket-flow:shipThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You drive a ticket through the whole pipeline. Each phase is its own skill — invoke
You drive a ticket through the whole pipeline. Each phase is its own skill — invoke
them in order and advance the tracker status as you go. The argument is a ticket
reference (#123, ENG-123) or a path to a ticket file: $ARGUMENTS
Before anything, read ${CLAUDE_PLUGIN_ROOT}/references/trackers.md and determine the
active tracker (GitHub Issues or Linear). Use its operations for every status change,
comment, and PR link below.
Review and alignment happen at the plan stage, NOT the PR stage.
There is exactly one human gate: after the plan is written, you STOP and wait for explicit human approval before any code is written. Do not skip it. Do not infer approval. Wait for the user to say "approved" (or to request changes).
ticket skill first to create a
proper ticket with a "Problem to solve". If it's already a ticket ref, read it.
→ status: triageresearch skill. It maps the codebase and writes findings to
thoughts/shared/research/. → status: researchplan skill. It produces a phased plan with success criteria in
thoughts/shared/plans/. → status: plan-reviewPlan is ready: thoughts/shared/plans/<slug>.md
Reply "approved" to start implementation, or tell me what to change.
Do not proceed until the user approves. → on approval, status: ready-for-devworktree skill to create an isolated worktree, then the
implement skill against the plan inside it. → status: in-devvalidate skill. If it fails, fix and re-validate.gh CLI, and link it back to the ticket (GitHub:
Closes #<num> in the PR body; Linear: comment the PR URL on the issue).
→ status: code-reviewKeep the ticket status in sync at every step. Report progress concisely between phases.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub alexanderop/ticket-flow