원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
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.body