snow-triage

Triage ServiceNow queues by reviewing assigned tasks, SLAs, approvals, and updating or resolving incidents.

Updated Jul 18, 2026
One-click install
npx skills add https://github.com/dlaporte/claude-plugins --skill snow-triage-dlaporte
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: snow-triage
Source: https://github.com/dlaporte/claude-plugins/tree/main/plugins/servicenow/skills/snow-triage
Command: npx skills add https://github.com/dlaporte/claude-plugins --skill snow-triage-dlaporte

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Working a ServiceNow queue manually means juggling assigned incidents, SLA deadlines, and pending approvals across multiple screens, with the risk of breaching SLAs or approving requests without context. This Skill guides an AI through the snow-mcp tools to review, prioritize, and act on queue work in one conversation. ## Core Features & Use Cases - Queue Review and Prioritization: Pulls all assigned tasks via my_work, groups them by type and priority, and ranks them by SLA pressure using get_task_slas so anything past ~75% consumed surfaces first. - Approval Handling: Lists pending approvals with list_my_approvals, fetches the underlying record for context, then responds with respond_to_approval, enforcing comments on rejections. - Incident Conventions: Creates incidents with display names and impact/urgency-derived priority, distinguishes customer-visible comments from internal work notes, and resolves incidents through resolve_incident with proper close codes. - Use Case: Ask the AI to review your morning queue — it lists your incidents and CTASKs, flags two items nearing SLA breach, and walks you through approving a pending change request with full record context. ## Quick Start Review my ServiceNow queue, prioritize anything close to breaching its SLA, and help me respond to my pending approvals.

Frequently Asked Questions about snow-triage

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I triage my ServiceNow incident queue with AI?

Use the my_work tool to list all assigned tasks across incidents, CTASKs, and RITMs, then check SLA pressure with get_task_slas for each item. Prioritize anything past roughly 75% SLA consumption before lower-priority work.

How do I respond to ServiceNow approvals with context?

List pending approvals with list_my_approvals, then fetch the underlying record with get_record on the sysapproval target before deciding. Call respond_to_approval with approved or rejected, and always include comments when rejecting.

What is the difference between comments and work notes in ServiceNow?

Comments added via add_comment are customer-visible, while work_notes are internal to the fulfillment team. When a user asks to add a note, confirm which audience is intended before writing.

Can I update or resolve ServiceNow incidents on a read-only deployment?

No. On read-only deployments you can review the queue, check SLAs, and list approvals, but update, resolve, and approve actions are blocked. The Skill reports findings and stops instead of attempting writes.

Why should I use resolve_incident instead of setting the state field directly?

resolve_incident sets the mandatory close code and close notes correctly, which a raw state write skips. Direct state writes can leave incidents in an invalid or incomplete resolution state.