Install
$ agentstack add skill-happy-technologies-llc-happy-platform-skills-task-summarization ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Task Summarization
Overview
This skill produces consistent task summaries for handoff, approvals, and management reviews in ServiceNow®. Each summary includes:
- Current status and owner
- Timeline of key events
- Latest customer/agent activity
- SLA exposure and urgency
- Open blockers and next actions
Use this when teams need fast context transfer without reading full activity streams.
Prerequisites
- Roles:
itil,task_admin, oradmin - Access: Read access to
task,task_sla, andsys_journal_field - Input: Target task number or sys_id and intended audience (resolver, approver, manager)
Procedure
Step 1: Read Core Task Context
Retrieve 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
Step 2: Pull Recent Activity and Work Notes
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
Step 3: Evaluate SLA Risk
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:
- If
has_breached=true-> include breach reason and recovery action - If
business_percentage>=80-> mark as urgent follow-up - Otherwise -> keep as standard monitoring
Step 4: Generate Audience-Specific Summary
Tailor summary depth by audience:
- Resolver: technical updates, blockers, dependencies
- Approver: business impact, decision needed, risk if delayed
- Manager: status trend, SLA risk, ownership alignment
Step 5: Save Summary to Work Notes
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 Usage
| 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 |
Best Practices
- Always include timestamp and summary author context
- Keep summaries factual; separate facts from recommendations
- Call out unresolved dependencies explicitly
- Use consistent summary sections for easier comparison across tasks
- Re-summarize after major state or owner transitions
Troubleshooting
Summary Misses Critical Context
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.
Conflicting Status Signals
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.
Related Skills
admin/task-analysis- Analyze task trends and bottlenecksitsm/incident-activity-summarization- Summarize incident-specific activity streamscatalog/approval-summarization- Summaries tailored for approval workflows
References
-
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Happy-Technologies-LLC
- Source: Happy-Technologies-LLC/happy-platform-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.