skills/admin/task-summarization/SKILL.md
Generate concise task summaries with status, timeline, blockers, SLA risk, and recommended next actions
npx skillsauth add happy-technologies-llc/happy-servicenow-skills task-summarizationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill produces consistent task summaries for handoff, approvals, and management reviews in ServiceNow®. Each summary includes:
Use this when teams need fast context transfer without reading full activity streams.
itil, task_admin, or admintask, task_sla, and sys_journal_fieldRetrieve the primary task fields required for summary framing.
Using MCP:
Tool: SN-Read-Record
Parameters:
table_name: task
sys_id: [task_sys_id]
fields: number,short_description,state,priority,assignment_group,assigned_to,opened_at,due_date,sys_updated_on
Collect the latest journal updates to build an accurate timeline.
Using MCP:
Tool: SN-Query-Table
Parameters:
table_name: sys_journal_field
query: name=task^element_id=[task_sys_id]^ORDERBYDESCsys_created_on
fields: element,value,sys_created_on,sys_created_by
limit: 30
Determine if the task is at risk of breach or already breached.
Using MCP:
Tool: SN-Query-Table
Parameters:
table_name: task_sla
query: task=[task_sys_id]^stage=in_progress
fields: sla,planned_end_time,business_percentage,has_breached
limit: 10
Decision points:
has_breached=true -> include breach reason and recovery actionbusiness_percentage>=80 -> mark as urgent follow-upTailor summary depth by audience:
Store output where downstream stakeholders can reuse it.
Using MCP:
Tool: SN-Add-Work-Notes
Parameters:
table_name: task
sys_id: [task_sys_id]
work_notes: |
TASK SUMMARY
- Status:
- Latest update:
- SLA risk:
- Blockers:
- Next action:
| Tool | Purpose |
|---|---|
| SN-Read-Record | Get canonical task context |
| SN-Query-Table | Retrieve journals and SLA details |
| SN-Execute-Background-Script | Build aggregated timelines for complex tasks |
| SN-Add-Work-Notes | Persist summary in task history |
Symptom: Key issue details are absent from the generated summary.
Cause: Journal query window is too short or excludes relevant elements.
Solution: Increase journal limit and include both comments and work notes.
Symptom: Task state and SLA risk appear contradictory.
Cause: State updated without corresponding SLA recalculation yet.
Solution: Re-query task_sla and compare with latest task update timestamp.
admin/task-analysis - Analyze task trends and bottlenecksitsm/incident-activity-summarization - Summarize incident-specific activity streamscatalog/approval-summarization - Summaries tailored for approval workflowstesting
Manage supplier onboarding, qualification, performance monitoring, and offboarding with auditable lifecycle controls
tools
Identify emerging risks, prioritize intake signals, and route candidates into formal GRC risk assessment workflows
documentation
Screen inbound documents for completeness, policy risk, and routing readiness before extraction or case workflows
development
Triage, prioritize, and assign ServiceNow incidents using impact/urgency matrix and category-based routing. Use when an alert fires, a ticket lands unassigned, an outage is reported, an escalation is needed, severity must be classified, an on-call team must be paged, or an SLA is at risk.