From servicenow
Triage ServiceNow incidents — list open incidents, assess priority, investigate a specific INC, or analyze trends.
npx claudepluginhub kylburns89/servicenow-claude-plugins --plugin plugin[INC number, priority filter, or description]# /servicenow:triage Route based on `$ARGUMENTS`: ## No arguments or general request If `$ARGUMENTS` is empty, contains "what's on fire", "open", "recent", or "list": - Run the **List Recent Incidents** workflow from the `triaging-incidents` skill. - Show open incidents sorted by priority, highlight any P1/P2. ## Specific INC number If `$ARGUMENTS` contains an INC number (e.g., "INC0010001"): 1. Find the incident: `list_records(table_name="incident", query="number=$ARGUMENTS", limit=1)` 2. Run the **Investigate an Incident** workflow — get full details, check CI dependencies, find simila...
/triageDecomposes a large feature into multiple dependency-aware specs with graphs and interface contracts. Manages git branches, active epics, and delegates to subagents. Accepts epic-name and goal.
/triageInvestigates a bug from provided description or error, determines root cause, and files GitHub issue with TDD fix plan.
/triageTriages findings from code reviews, audits, or analysis by presenting each for categorization by severity, category, effort, then creates or updates ready todo files in todos/ directory on user approval.
/triageTriages open tasks: fetches list and action history via tq task list, determines phase (unstarted, implementing, review/stalled/blocked/done-ish), summarizes per project in tables, proposes organization actions for approval.
Route based on $ARGUMENTS:
If $ARGUMENTS is empty, contains "what's on fire", "open", "recent", or "list":
triaging-incidents skill.If $ARGUMENTS contains an INC number (e.g., "INC0010001"):
list_records(table_name="incident", query="number=$ARGUMENTS", limit=1)If $ARGUMENTS contains "P1", "P2", "critical", or "high priority":
If $ARGUMENTS contains "triage", "assess", or "new":
If $ARGUMENTS contains "trends", "analysis", "bulk", or "SLA":
For any other input, treat $ARGUMENTS as a search term:
list_records(table_name="incident", query="short_descriptionLIKE$ARGUMENTS^active=true", limit=10)