원클릭으로
document-screening
Screen inbound documents for completeness, policy risk, and routing readiness before extraction or case workflows
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Screen inbound documents for completeness, policy risk, and routing readiness before extraction or case workflows
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Reusable development patterns and automation recipes for enterprise platforms - 180+ skills across 23 categories
Generate concise task summaries with status, timeline, blockers, SLA risk, and recommended next actions
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 | document-screening |
| version | 1.0.0 |
| description | Screen inbound documents for completeness, policy risk, and routing readiness before extraction or case workflows |
| author | Happy Technologies LLC |
| tags | ["document","screening","intake","triage","compliance","routing","risk"] |
| platforms | ["claude-code","claude-desktop","chatgpt","cursor","any"] |
| tools | {"mcp":["SN-Query-Table","SN-Read-Record","SN-Create-Record","SN-Update-Record","SN-Add-Work-Notes"],"rest":["/api/now/table/sys_attachment","/api/now/table/sn_doc_template","/api/now/table/sn_doc_intelligence_extraction","/api/now/table/sn_doc_intelligence_extraction_result","/api/now/table/task"],"native":["Bash"]} |
| complexity | advanced |
| estimated_time | 15-30 minutes |
This skill adds a document screening stage before extraction or fulfillment workflows in ServiceNow®. It helps teams:
Use this when your intake process receives mixed document quality, high volume, or compliance-sensitive content.
admin, sn_doc_intelligence_admin, or equivalent intake operations rolesys_attachment, sn_doc_template, sn_doc_intelligence_extraction, and taskCollect newly submitted documents and classify by source, type, and priority.
Using MCP:
Tool: SN-Query-Table
Parameters:
table_name: sys_attachment
query: sys_created_on>=javascript:gs.hoursAgoStart(24)^table_nameISNOTEMPTY
fields: sys_id,file_name,content_type,size_bytes,table_name,table_sys_id,sys_created_on,sys_created_by
limit: 100
order_by: sys_created_on
Using REST API:
GET /api/now/table/sys_attachment?sysparm_query=sys_created_on>=javascript:gs.hoursAgoStart(24)^table_nameISNOTEMPTY&sysparm_fields=sys_id,file_name,content_type,size_bytes,table_name,table_sys_id,sys_created_on,sys_created_by&sysparm_limit=100
Map each document to a known template and required evidence checklist.
Decision points:
Evaluate required attributes and extraction confidence signals.
Using MCP:
Tool: SN-Query-Table
Parameters:
table_name: sn_doc_intelligence_extraction_result
query: extraction=[extraction_sys_id]
fields: field_name,extracted_value,confidence_score,validation_status
limit: 200
Checks to apply:
Set one of three outcomes:
Using MCP:
Tool: SN-Create-Record
Parameters:
table_name: task
fields:
short_description: "Document screening failed: missing required evidence"
description: "File [file_name] failed screening checks. Review checklist and resubmit."
priority: 3
state: 1
Document the screening rationale and the exact routing decision.
| Tool | Purpose |
|---|---|
SN-Query-Table | Retrieve attachments, templates, and extraction results |
SN-Read-Record | Inspect source record context for submitted documents |
SN-Create-Record | Create remediation tasks for failed screenings |
SN-Update-Record | Update screening status and routing fields |
SN-Add-Work-Notes | Persist decision rationale for auditability |
Symptom: No documents appear in intake query.
Cause: Time-window filter or source table filter is too restrictive.
Solution: Broaden query window and verify attachment source integration.
Symptom: Most documents route to fail or conditional pass.
Cause: Confidence threshold or required field set is misaligned with real inputs.
Solution: Tune thresholds by document type and add exception handling rules.
document/document-extraction - Extract structured data from documentsdocument/smart-documents - Manage document templates and generationprocurement/invoice-management - Apply screened invoice documents to AP workflows