to-tickets

to-tickets is a skill for Claude Code from rengwu/wayfinder-maps. It costs 35 tokens per session (1,117 once invoked), scanned A, original, MIT.

A skill that breaks a plan, specification, or conversation into tracer-bullet tickets: small, complete slices of work with declared blockers.

In plain words
What is it for?
Use it to create tickets that cover the needed layers of a change and save them under .plan/.
Why use it?
It turns a broad task into independently verifiable pieces while showing which tickets depend on others.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the wayfinder-maps plugin — 14 skills shipped together

Good fit Use it to create tickets that cover the needed layers of a change and save them under .plan/.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rengwu/wayfinder-maps/to-tickets
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add rengwu/wayfinder-maps --skill to-tickets
Clone the repo
git clone --depth 1 https://github.com/rengwu/wayfinder-maps

Made for: Claude Code.

Or install wayfinder-maps, the plugin that ships this one along with the rest of its 14 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for to-tickets

README.md
[![agentmods](https://agentmods.dev/badge/skills/rengwu/wayfinder-maps/to-tickets/github.svg)](https://agentmods.dev/skills/rengwu/wayfinder-maps/to-tickets)
Your own site
<a href="https://agentmods.dev/skills/rengwu/wayfinder-maps/to-tickets"><img src="https://agentmods.dev/badge/skills/rengwu/wayfinder-maps/to-tickets/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for to-tickets

Your own site · 80×15
<a href="https://agentmods.dev/skills/rengwu/wayfinder-maps/to-tickets"><img src="https://agentmods.dev/badge/skills/rengwu/wayfinder-maps/to-tickets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,117 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.01117
Opus 5 $0.00017 $0.00558
Sonnet 5 $0.00007 $0.00223
Haiku 4.5 $0.00003 $0.00112

Measured 12d ago against content hash 52409154c902, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

to-tickets scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/.optional/to-tickets/SKILL.md · 88 lines

How it starts

The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.

To Tickets

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

Process

1. Gather context

Work from whatever is already in the conversation context. If the user passes a reference (a spec path such as .plan/<slug>/spec.md, or any other document) as an argument, fetch it and read it in full.

2. Explore the codebase (optional)

If you have not already explored the codebase, do so to understand the current state of the code. If a CONTEXT.md glossary exists at the repo root, ticket titles and descriptions should use its vocabulary; respect ADRs in docs/adr/ in the area you're touching. If neither exists, proceed silently.

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 the change touches (e.g. 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 the build 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.

Read the full file on GitHub · 88 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 88 lines · 35 tokens per session scan A 52409154c902

Subscribe to this mod's changes

to-tickets is a skill published in the GitHub repository rengwu/wayfinder-maps (123 stars, last pushed 1mo ago), licensed MIT. It adds 35 tokens to every session and 1,117 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

diet-remove

Remove a dependency identified by uzomuzo diet — analysis + issue (default) or direct PR.

future-architect/uzomuzo-oss · 22 tokens

diet-evaluate-removal

Data-driven deep evaluation of whether a dependency is worth removing.

future-architect/uzomuzo-oss · 17 tokens

clickup-cli

ClickUp CLI for managing tasks, sprints, comments, statuses, Docs, and archiving. Use when the user needs to interact with ClickUp — creating/editing/archiving tasks, checking sprint status, adding comments, linking PRs, managing Docs and pages, or searching tasks. Includes a generic clickup api passthrough covering…

triptechtravel/clickup-cli · 90 tokens

miro-workflow

Compose Miro boards from natural-language requests by combining tools from miro-mcp-server. Use when the user asks to set up a sprint board, retrospective, brainstorming session, user story map, kanban, or any structured Miro layout. Do NOT use for single-tool calls (create one sticky), questions about Miro the…

olgasafonova/miro-mcp-server · 103 tokens

bv

Beads Viewer - Graph-aware triage engine for Beads projects. Computes PageRank, betweenness, critical path, and cycles. Use --robot- flags for AI agents.

Dicklesworthstone/beads_viewer · 39 tokens

summarize-ideas

Use when the user asks for a recap, status readout, or check-in across Ideate ideas (a logical work item; "session" is one facet of an idea, not the unit). Scope is the local Ideate workspace exposed by the ideate MCP. Use work-idea instead when the user wants to focus on or switch into a single idea.

paultyng/ideate · 75 tokens