transit
Installation
SKILL.md
Transit Ticket Router
Route Transit tickets to the appropriate workflow based on their task type.
Workflow
1. Extract Ticket Reference
Parse the T-[number] reference from the user input. Extract the numeric display ID (e.g., T-42 -> display ID 42).
If no valid T-[number] reference is found, ask the user which ticket they want to work on.
2. Fetch Task Details
Query Transit for the task using mcp__transit__query_tasks. Match the task by its display ID from the results.
If task is not found: Stop and inform the user that the ticket could not be found in Transit. Do not proceed.
If task status is done or abandoned: Warn the user that the ticket is already marked as {status} and ask whether they still want to proceed. Stop if they decline.