一键导入
servicenow
ServiceNow ITSM platform; lets an agent create, update, and resolve IT incident and service request tickets and retrieve knowledge base articles.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
ServiceNow ITSM platform; lets an agent create, update, and resolve IT incident and service request tickets and retrieve knowledge base articles.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Clio Manage/Grow practice management platform; lets an agent create matters, log time, generate invoices, manage client intake, and sync docket deadlines.
Docket Alarm court monitoring and analytics platform; lets an agent track docket updates, set filing alerts, and pull judge analytics for motion strategy.
DocuSign e-signature platform; lets an agent send engagement letters and contracts for signature, track envelope status, and retrieve executed documents.
iManage Work matter-centric DMS; lets an agent retrieve, file, and version legal work product organized by client and matter workspace.
Intapp Conflicts firm-wide conflicts management system; lets an agent run new-business conflict searches, retrieve hit reports, and track waiver records.
Ironclad contract lifecycle management (CLM) platform; lets an agent upload contracts, run playbook analysis, retrieve risk scores, and track obligations and approvals.
| name | servicenow |
| description | ServiceNow ITSM platform; lets an agent create, update, and resolve IT incident and service request tickets and retrieve knowledge base articles. |
| metadata | {"openclaw":{"requires":{"env":["SERVICENOW_INSTANCE_URL","SERVICENOW_USERNAME","SERVICENOW_PASSWORD","SERVICENOW_CLIENT_ID","SERVICENOW_CLIENT_SECRET"]}},"primaryEnv":"SERVICENOW_PASSWORD"} |
ServiceNow is the leading IT Service Management (ITSM) platform used by large and mid-size law firms to manage IT incidents, service requests, change management, and the IT knowledge base. It provides a single pane of glass for help desk operations, SLA tracking, and escalation routing. ServiceNow exposes a comprehensive Table API and scripted REST APIs for all record types.
This skill authenticates using variables declared in the metadata frontmatter above. Set them in the OpenClaw daemon env file ~/.openclaw/.env (see .env.example at the config root). Required variables:
SERVICENOW_INSTANCE_URL - ServiceNow instance URL (e.g., https://yourfirm.service-now.com)SERVICENOW_USERNAME - service account username for API accessSERVICENOW_PASSWORD - service account password (Basic auth) or use OAuth belowSERVICENOW_CLIENT_ID - OAuth 2.0 client ID (if using OAuth instead of Basic auth)SERVICENOW_CLIENT_SECRET - OAuth 2.0 client secretPOST /api/now/table/incident — create a new incident ticket with category, description, and priorityPATCH /api/now/table/incident/{sysId} — update an incident (status, resolution notes, assignee)GET /api/now/table/incident?sysparm_query=... — query incidents by requester, status, or categoryPOST /api/now/table/sc_request — create a service catalog requestGET /api/now/table/kb_knowledge?sysparm_query=... — search knowledge base articles by keyword or categoryPOST /api/now/table/task — create a follow-up task linked to an incident or requestsys_id values (GUIDs) are the primary identifiers for all records; retrieve them from search results before updating.sla_due, made_sla) are read-only and managed by ServiceNow automatically based on configured SLA definitions.