ticket

ticket is a command for Claude Code from VelimirMueller/vlm-code-context-mcp. It costs 0 tokens per session (666 once invoked), scanned A, original, MIT.

A command for managing software tickets through their stages, using MCP tools. A ticket is a tracked piece of work such as a bug, feature or task.

In plain words
What is it for?
Use it to view ticket details and subtasks, find related files, inspect file dependencies, reassign work and move tickets to a new status.
Why use it?
It keeps ticket work tied to the project's current sprint and relevant code context, reducing the need to gather that information manually.

Command for Claude Code

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.

agentmods
npx agentmods add commands/velimirmueller/vlm-code-context-mcp/ticket
Clone the repo
git clone --depth 1 https://github.com/VelimirMueller/vlm-code-context-mcp

Made for: Claude Code.

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 ticket

README.md
[![agentmods](https://agentmods.dev/badge/commands/velimirmueller/vlm-code-context-mcp/ticket.svg)](https://agentmods.dev/commands/velimirmueller/vlm-code-context-mcp/ticket)
Your own site
<a href="https://agentmods.dev/commands/velimirmueller/vlm-code-context-mcp/ticket"><img src="https://agentmods.dev/badge/commands/velimirmueller/vlm-code-context-mcp/ticket.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 666 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00666
Opus 5 $0.00000 $0.00333
Sonnet 5 $0.00000 $0.00133
Haiku 4.5 $0.00000 $0.00067

Measured 3d ago against content hash d908a7b96ea8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ticket 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 3d 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.

.claude/commands/ticket.md · 92 lines

How it starts

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

/ticket — Ticket Management

Move tickets through their lifecycle using MCP tools.

Step 0 — Load Context (2 calls)

get_resume_state()                     # project state + active sprint
get_sprint_playbook()                  # current phase, gates, next actions

Deferred — use load_phase_context() when needed

Action Call
View/work on ticket load_phase_context({ phase: "implementation", sprint_id, ticket_id })
Reassign ticket list_agents()

View a ticket

Load full ticket context before acting:

get_ticket({ ticket_id: <id> })                                    # full details, subtasks, bugs
search_files({ query: "<ticket keywords>" })                       # find related code
get_file_context({ path: "<relevant file>", include_changes: false })  # deps only, skip diff history

Before reading any source file with the Read tool, check the code context DB first:

  1. search_files() — find the right file path
  2. get_file_context({ include_changes: false }) — deps and exports, skip change history
  3. Only then use Read to see actual content

Move a ticket

update_ticket({ ticket_id: <id>, status: "IN_PROGRESS" })
update_ticket({ ticket_id: <id>, status: "DONE", qa_verified: true, verified_by: "qa" })
update_ticket({ ticket_id: <id>, status: "BLOCKED" })
update_ticket({ ticket_id: <id>, status: "NOT_DONE" })

Reassign a ticket

Check agent workload first:

list_agents()                          # see who has capacity
load_phase_context({ phase: "retro" }) # includes mood data for workload assessment

Then:

update_ticket({ ticket_id: <id>, assigned_to: "<agent role>" })
link_ticket_to_epic({ ticket_id: <id>, epic_id: <id> })
link_ticket_to_milestone({ ticket_id: <id>, milestone_id: <id> })

List all tickets in a sprint

get_sprint({ sprint_id: <id> })

Log a bug against a ticket

log_bug({ sprint_id: <id>, ticket_id: <id>, severity: "HIGH", description: "...", expected: "...", actual: "..." })

Read the full file on GitHub · 92 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. 3d ago First seen · 92 lines · 0 tokens per session scan A d908a7b96ea8

Subscribe to this mod's changes

ticket is a command published in the GitHub repository VelimirMueller/vlm-code-context-mcp (4 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 666 tokens. 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-31.