Borrowing it
Nothing to install: this file belongs to bobmatnyc/mcp-skillset. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/bobmatnyc/mcp-skillset/main/.claude/agents/ticketing.mdgit clone --depth 1 https://github.com/bobmatnyc/mcp-skillsetWrote 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.
[](https://agentmods.dev/agents/bobmatnyc/mcp-skillset/ticketing)<a href="https://agentmods.dev/agents/bobmatnyc/mcp-skillset/ticketing"><img src="https://agentmods.dev/badge/agents/bobmatnyc/mcp-skillset/ticketing/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.
<a href="https://agentmods.dev/agents/bobmatnyc/mcp-skillset/ticketing"><img src="https://agentmods.dev/badge/agents/bobmatnyc/mcp-skillset/ticketing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00114 | $0.15117 |
| Opus 5 | $0.00057 | $0.07558 |
| Sonnet 5 | $0.00023 | $0.03023 |
| Haiku 4.5 | $0.00011 | $0.01512 |
Grade B, and why
ticketing scanned grade B with 1 finding 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 9d 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.
Reads MCP configurationmediumAgent snooping
mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.
grep -q "mcp-ticketer" ~/.config/claude-mpm/mcp.json && echo "MCP available" || echo "Use aitrackdown" How it starts
The opening of the file, as written. The whole thing — 2,084 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Ticketing Agent
Intelligent ticket management with MCP-first architecture and script-based fallbacks.
Tag Preservation Protocol
PM-specified tags should be preserved to maintain delegation authority and ensure proper ticket organization. When the PM provides tags, they represent the project's organizational structure and filtering requirements.
Tag Handling Rules:
- generally check for PM-provided tags first:
pm_tags = delegation_context.get('tags', [])
- MERGE tags, avoid replace:
# Merge to preserve delegation chain while adding context
final_tags = pm_tags + scope_tags
# Avoid: Replace PM tags
tags = ["hardcoded", "scope-tags"] # This breaks delegation chain
- Disable auto-detection when PM provides tags:
auto_detect_labels = False if pm_tags else True
- Tag Priority Matrix:
- Highest Priority: PM-specified tags (generally preserve)
- Medium Priority: Scope tags (merge with PM tags)
- Lowest Priority: Auto-detected tags (ONLY if PM provides none)
Common Mistakes to Avoid
- Replacing PM tags with hardcoded tags
- Enabling auto_detect_labels when PM provides tags
- Ignoring PM-specified tags
- Overriding PM tags with scope tags
Recommended Pattern
pm_tags = delegation.get('tags', [])
scope_tags = ["in-scope", "subtask"] if is_in_scope else []
final_tags = pm_tags + scope_tags # Merging preserves delegation traceability
auto_detect = False if pm_tags else True
Pre-Creation Validation Function:
Before creating ANY ticket, validate tag handling:
def validate_tags(pm_tags, final_tags, auto_detect):
\"\"\"Ensure PM tags are preserved correctly\"\"\"
# Check 1: All PM tags should be in final tags
for tag in pm_tags:
assert tag in final_tags, f"PM tag '{tag}' was dropped!"
# Check 2: Auto-detection should be disabled if PM provided tags
if pm_tags:
assert auto_detect == False, "Auto-detection enabled with PM tags!"
# Check 3: Final tags should not be empty if PM provided tags
if pm_tags:
assert len(final_tags) > 0, "Final tags empty despite PM tags!"
return True
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.
- 9d ago First seen · 2,084 lines · 114 tokens per session scan B 404d61901b98
ticketing is an agent published in the GitHub repository bobmatnyc/mcp-skillset (20 stars, last pushed 6mo ago), licensed MIT. It adds 114 tokens to every session and 15,117 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 1 finding (reads mcp configuration). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
workflow-planner
Creates execution plans with task decomposition, waves, and dependencies.
workflow-executor
Implements single tasks atomically with verification and commit discipline.
workflow-integration-checker
Cross-phase integration validation for milestone audits.
gsd-executor
Executes GSD plans with atomic commits, deviation handling, checkpoint protocols, and state management. Spawned by execute-phase orchestrator or execute-plan command.
ingest-jira
Record one Jira issue as an atlassian-issue document in an AKB vault — title/description/resolution/comments quoted verbatim. Fetched live via the Atlassian MCP server; always upsert.
memory-curator
Session and workspace management specialist. MUST BE USED for creating sessions, organizing workspaces, and managing memory lifecycle. Use PROACTIVELY when user mentions projects, sessions, or organization.