Catalog
mattpocock/to-tickets

mattpocock

to-tickets

Break a plan, spec, or the current conversation into a set of tracer-bullet tickets, each declaring its blocking edges, published to the configured tracker — edges as text in a local file, or native blocking links on a real tracker.

global
New~1.4k
v1.0Saved Jul 9, 2026

To Tickets

Break a plan, spec, or conversation into a set of tickets — tracer-bullet vertical slices, each declaring the tickets that block it.

The issue tracker and triage label vocabulary should have been provided to you — run /setup-matt-pocock-skills if not.

Process

1. Gather context

Work from whatever is already in the conversation context. If the user passes a reference (a spec path, an issue number or URL) as an argument, fetch it and read its full body and comments.

2. Explore the codebase (optional)

If you have not already explored the codebase, do so to understand the current state of the code. Ticket titles and descriptions should use the project's domain glossary vocabulary, and respect ADRs in the area you're touching.

Look for opportunities to prefactor the code to make the implementation easier. "Make the change easy, then make the easy change."

3. Draft vertical slices

Break the work into tracer bullet tickets.

  • Each slice cuts a narrow but COMPLETE path through every layer (schema, API, UI, tests) — vertical, NOT a horizontal slice of one layer
  • A completed slice is demoable or verifiable on its own
  • Each slice is sized to fit in a single fresh context window
  • Any prefactoring should be done first

Give each ticket its blocking edges — the other tickets that must complete before it can start. A ticket with no blockers can start immediately.

Wide refactors are the exception to vertical slicing. A wide refactor is one mechanical change — rename a column, retype a shared symbol — whose blast radius fans across the whole codebase, so a single edit breaks thousands of call sites at once and no vertical slice can land green. Don't force it into a tracer bullet; sequence it as expand–contract. First expand: add the new form beside the old so nothing breaks. Then migrate the call sites over in batches sized by blast radius (per package, per directory), each batch its own ticket blocked by the expand, keeping CI green batch to batch because the old form still exists. Finally contract: delete the old form once no caller remains, in a ticket blocked by every migrate batch. When even the batches can't stay green alone, keep the sequence but let them share an integration branch that all block a final integrate-and-verify ticket — green is promised only there.

4. Quiz the user

Present the proposed breakdown as a numbered list. For each ticket, show:

  • Title: short descriptive name
  • Blocked by: which other tickets (if any) must complete first
  • What it delivers: the end-to-end behaviour this ticket makes work

Ask the user:

  • Does the granularity feel right? (too coarse / too fine)
  • Are the blocking edges correct — does each ticket only depend on tickets that genuinely gate it?
  • Should any tickets be merged or split further?

Iterate until the user approves the breakdown.

5. Publish the tickets to the configured tracker

Publish the approved tickets. How depends on the tracker /setup-matt-pocock-skills configured — the tickets are the same either way, only the shape of the blocking edges changes:

  • Local files → write one tickets.md in the repo root, all tickets in dependency order (blockers first), each with its "Blocked by" listing the titles it depends on. Use the file template below.
  • A real issue tracker (GitHub, Linear, …) → publish one issue per ticket in dependency order (blockers first) so each ticket's blocking edges can reference real identifiers. Use the platform's native blocking / sub-issue relationship where it has one; otherwise set each ticket's "Blocked by" to the blocking issues. Apply the ready-for-agent triage label unless instructed otherwise — the tickets are agent-grabbable by construction.

Do NOT close or modify any parent issue.

Tickets:

A one-line summary of what these tickets build. Reference the source spec if there is one.

Work the frontier: any ticket whose blockers are all done. For a purely linear chain that means top to bottom.

What to build: the end-to-end behaviour this ticket makes work, from the user's perspective — not a layer-by-layer implementation list.

Blocked by: the titles of the tickets that gate this one, or "None — can start immediately".

  • Acceptance criterion 1
  • Acceptance criterion 2

...

Parent

A reference to the parent issue on the tracker (if the source was an existing issue, otherwise omit this section).

What to build

The end-to-end behaviour this ticket makes work, from the user's perspective — not layer-by-layer implementation.

Acceptance criteria

  • Criterion 1
  • Criterion 2

Blocked by

  • A reference to each blocking ticket, or "None — can start immediately".

In either form, avoid specific file paths or code snippets — they go stale fast. Exception: if a prototype produced a snippet that encodes a decision more precisely than prose can (state machine, reducer, schema, type shape), inline it and note briefly that it came from a prototype. Trim to the decision-rich parts — not a working demo, just the important bits.

Work the frontier one ticket at a time with /implement, clearing context between tickets.

Files1
1 files · 1.0 KB

Select a file to preview

Overall Score

87/100

Grade

A

Excellent

Safety

92

Quality

86

Clarity

84

Completeness

83

Summary

This skill guides an AI agent to break down plans, specifications, or conversations into tracer-bullet tickets with explicit blocking dependencies, then publish them to a configured tracker (either as a local Markdown file or native issues in GitHub/Linear/etc.). The agent explores context, designs vertical slices, queries the user for refinement, and then publishes approved tickets with proper blocking relationships.

Detected Capabilities

read files (spec, issue content)read codebase contextwrite tickets.md filepublish to issue trackers (GitHub, Linear)apply labels to issuescreate blocking/dependency relationships between issues

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

break down speccreate ticketsvertical slicesblocking dependenciesticket workflowsprint planningtracer bullets

Use Cases

  • Break down a product spec into implementable tickets
  • Convert a conversation or plan into tracked work items
  • Design vertical-slice tickets with explicit dependencies for parallel execution
  • Refactor large codebases using expand–contract sequencing
  • Publish tickets to GitHub, Linear, or local Markdown with blocking edges
  • Ensure CI stays green across batches of related changes

Quality Notes

  • Clear two-phase model: gather/design, then publish — helps agent and user align before committing to tracker
  • Comprehensive guidance on vertical slicing vs. horizontal layers — teaches sound system design principles
  • Excellent coverage of wide refactors via expand–contract pattern with pragmatic advice on CI continuity
  • Well-structured templates for both local file and issue tracker outputs — outputs are well-defined
  • Correctly avoids hardcoding file paths in tickets ("they go stale fast") — shows good product sense
  • Iterative user feedback loop before publishing reduces rework and misalignment
  • Good error handling guidance: requests setup confirmation, explores codebase before designing
  • Minimal scope: read-only exploration + structured write to tracker — blast radius is well-controlled
Model: claude-haiku-4-5-20251001Analyzed: Jul 9, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Add mattpocock/to-tickets to your library

Command Palette

Search for a command to run...