一键导入
pagerduty
Trigger, acknowledge, or resolve PagerDuty incidents
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Trigger, acknowledge, or resolve PagerDuty incidents
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | pagerduty |
| display_name | PagerDuty |
| description | Trigger, acknowledge, or resolve PagerDuty incidents |
| auth_type | oauth2 |
| category | dev-tools |
When the user wants their voice agent to trigger or manage PagerDuty incidents. Common triggers:
Check connection via check_connection("pagerduty").
If not connected: Use secret("pagerduty") in tool scripts. The system
will automatically emit the correct action card based on the platform
configuration. Do NOT emit action cards manually.
Discover services (PagerDuty supports auto-discovery):
api_call("pagerduty", "GET", "/services?limit=25") → list services with IDsUse the real service ID in the tool config.
{
"name": "pagerduty.trigger_incident",
"description": "Trigger a PagerDuty incident to alert the on-call engineer",
"params": [
{"name": "title", "description": "Incident title / summary of the issue", "type": "string", "required": true},
{"name": "service_id", "description": "PagerDuty service ID to route the incident to", "type": "string", "required": true},
{"name": "details", "description": "Additional details about the incident", "type": "string", "required": false}
],
"script": "let key = secret('pagerduty');\nlet incident = {incident: {type: 'incident', title: title, service: {id: service_id, type: 'service_reference'}}};\nif (details) incident.incident.body = {type: 'incident_body', details: details};\nlet resp = http_post_h('https://api.pagerduty.com/incidents', incident, {'Authorization': 'Token token=' + key, 'Content-Type': 'application/json', 'From': 'voice-agent@example.com', 'Accept': 'application/vnd.pagerduty+json;version=2'});\nif (resp.status >= 200 && resp.status < 300) { return 'Incident triggered.'; }\nthrow new Error(`PagerDuty ${resp.status}: ${resp.body}`);",
"side_effect": true
}
secret("pagerduty") for credentialsToken token=<key> (not Bearer)From header is required for incident creation — ask the user for the email to use, or use a placeholderAccept header application/vnd.pagerduty+json;version=2 is requiredapi_call to discover service IDs instead of asking the userthrow using resp.status/resp.bodyRead or update contacts, opportunities, notes, and conversations in GoHighLevel
Save or retrieve records from Airtable bases
Send emails, SMS, or manage contacts via Brevo (formerly Sendinblue)
Manage bookings, availability, and event types in Cal.com
Check availability, create scheduling links, or list upcoming events in Calendly
Create or update tasks and lists in ClickUp