ワンクリックで
task-summarization
Generate concise task summaries with status, timeline, blockers, SLA risk, and recommended next actions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate concise task summaries with status, timeline, blockers, SLA risk, and recommended next actions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Reusable development patterns and automation recipes for enterprise platforms - 180+ skills across 23 categories
Screen inbound documents for completeness, policy risk, and routing readiness before extraction or case workflows
Identify emerging risks, prioritize intake signals, and route candidates into formal GRC risk assessment workflows
Manage supplier onboarding, qualification, performance monitoring, and offboarding with auditable lifecycle controls
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.
Set up ServiceNow as an MCP (Model Context Protocol) server defining tool capabilities, authentication, resource endpoints, and integration patterns for AI agents
| name | task-summarization |
| version | 1.0.0 |
| description | Generate concise task summaries with status, timeline, blockers, SLA risk, and recommended next actions |
| author | Happy Technologies LLC |
| tags | ["admin","task","summarization","handover","approvals","sla","operations"] |
| platforms | ["claude-code","claude-desktop","chatgpt","cursor","any"] |
| tools | {"mcp":["SN-Read-Record","SN-Query-Table","SN-Execute-Background-Script","SN-Add-Work-Notes"],"rest":["/api/now/table/task","/api/now/table/sys_journal_field","/api/now/table/task_sla"],"native":["Bash"]} |
| complexity | intermediate |
| estimated_time | 10-20 minutes |
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 workflows