New to Claude Skills? Learn how to install them →

mattpocock on GitHub

To Tickets

Free

Transform plans into actionable tickets for tracking.

by mattpocock212.7k stars on mattpocock/skills
6 views
Updated Aug 6, 2026
Get this skill

Free · Opens the source repo

What To Tickets does

To Tickets is a skill designed to help developers and teams break down plans, specifications, or ongoing conversations into a structured set of tickets. Each ticket represents a vertical slice of work, identifying its dependencies and blocking edges. This approach ensures that each slice is not only manageable but also complete, enabling teams to deliver features incrementally and verify them independently. By publishing these tickets to a configured issue tracker, teams can maintain clarity and organization in their development process.

The skill operates through a systematic process, beginning with gathering context from the current conversation or any provided references. It allows for optional exploration of the codebase to ensure that the tickets are aligned with the project's vocabulary and architecture. Following this, the skill drafts vertical slices, adhering to specific rules that prioritize end-to-end functionality across all layers of the application, from the user interface to the backend.

Once the tickets are drafted, the skill engages the user in a review process, allowing for adjustments in granularity and dependencies before finalizing the breakdown. This collaborative approach ensures that the tickets accurately reflect the work required and are ready for implementation. Finally, the approved tickets can be published either as local files or directly to a real issue tracker, maintaining their dependencies and statuses for easy tracking.

To Tickets is particularly useful for teams looking to adopt agile methodologies, as it facilitates a clear and organized way to manage tasks and dependencies. Whether you're working on a new feature or refactoring existing code, this skill helps streamline the ticket creation process, making it easier to track progress and maintain momentum.

When to use it

Use To Tickets when you need to break down complex work into manageable tasks that can be tracked and prioritized in an issue tracker.

When not to use it

This skill may not be suitable for very small tasks or projects where formal ticketing is unnecessary or overly complex.

What you can build with it

Feature Development

When developing a new feature, use To Tickets to break down the work into manageable, trackable tickets.

Refactoring Code

For a wide refactor, To Tickets helps create tickets that manage dependencies and ensure CI remains green throughout.

Agile Sprint Planning

During sprint planning, utilize To Tickets to convert discussions into actionable tickets that can be prioritized in your backlog.

How to install To Tickets

View source

1. Install with the skills CLI

npx skills add mattpocock/skills/to-tickets --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by mattpocock

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.

<vertical-slice-rules>
  • 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
</vertical-slice-rules>

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 file per ticket under .scratch/<feature-slug>/issues/<NN>-<slug>.md, numbered from 01 in dependency order (blockers first). Each file's "Blocked by" lists the numbers/titles it depends on. Use the per-ticket file template below — one ticket per file, never a single combined file.
  • 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.

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

Do NOT close or modify any parent issue.

<local-ticket-template>

<NN><Ticket title>

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 numbers/titles of the tickets that gate this one, or "None — can start immediately".

Status: ready-for-agent

  • Acceptance criterion 1
  • Acceptance criterion 2
</local-ticket-template> <issue-template>

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".
</issue-template>

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.

Frequently asked questions about To Tickets

Similar skills