with one click
pagerduty
Trigger, acknowledge, or resolve PagerDuty incidents
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Trigger, acknowledge, or resolve PagerDuty incidents
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Read 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
| 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.body