Orchestrate ticketing agent for project management workflows
High-level ticketing workflows delegating to ticketing agent.
/mpm-ticket <subcommand> [options]
CRITICAL: PM delegates ALL ticketing operations to ticketing agent. PM NEVER uses MCP tools directly.
Review, transition states, update priorities, identify stale tickets.
MCP Tools (ticketing agent uses):
Output: Tickets transitioned, priorities updated, stale tickets identified, next actions.
Analyze project board and recommend next actionable steps.
MCP Tools (ticketing agent uses):
Output: Project health, recommended next actions (top 3), blockers requiring attention.
Generate comprehensive status report covering work, tickets, project health.
MCP Tools (ticketing agent uses):
Output: Health metrics, ticket counts, high-priority work, blockers, recent activity, risk assessment.
Create project status update (Linear ProjectUpdate).
MCP Tools (ticketing agent uses):
Output: Update ID, health status, accomplishments, metrics, risks, next sprint focus, published link.
Set project URL for context (Linear/GitHub/JIRA).
MCP Tools (ticketing agent uses):
Output: Project context configured, platform/ID/name, access verified, summary.
WRONG ❌:
# PM directly using MCP tools
result = mcp__mcp-ticketer__ticket_list()
CORRECT ✅:
# PM delegates to ticketing agent
PM: "I'll have ticketing organize tickets..."
[PM constructs delegation prompt]
[Ticketing agent uses MCP tools]
PM: [Presents results]
If mcp-ticketer unavailable, ticketing agent falls back to aitrackdown CLI:
aitrackdown status tasks
aitrackdown show TICKET-123
aitrackdown transition TICKET-123 done
PM still delegates - ticketing agent handles CLI fallback internally.
# Organize and analyze
/mpm-ticket organize # Clean up board
/mpm-ticket proceed # Get next steps
# Weekly update
/mpm-ticket update # Create status update
# Project setup
/mpm-ticket project https://linear.app/team/project/abc-123
See docs/commands/ticket.md for comprehensive documentation.