pagerduty
Installation
SKILL.md
PagerDuty
Manage incidents and on-call schedules.
Environment Variables
PAGERDUTY_TOKEN- PagerDuty API token (v2)
List open incidents
curl -s -H "Authorization: Token token=$PAGERDUTY_TOKEN" \
-H "Content-Type: application/json" \
"https://api.pagerduty.com/incidents?statuses[]=triggered&statuses[]=acknowledged&limit=10" | jq '.incidents[] | {id, title, status, urgency, service: .service.summary, created_at}'