7.7k★by mrgoodb
pagerduty – OpenClaw Skill
pagerduty is an OpenClaw Skills integration for writing workflows. Manage incidents, on-call schedules, and alerts via PagerDuty API. Trigger and resolve incidents programmatically.
7.7k stars837 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | pagerduty |
| description | Manage incidents, on-call schedules, and alerts via PagerDuty API. Trigger and resolve incidents programmatically. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/pagerduty |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/pagerduty |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
271 BSKILL.md
1.6 KBSKILL.md
name: pagerduty description: Manage incidents, on-call schedules, and alerts via PagerDuty API. Trigger and resolve incidents programmatically. metadata: {"clawdbot":{"emoji":"🚨","requires":{"env":["PAGERDUTY_API_KEY"]}}}
PagerDuty
Incident management.
Environment
export PAGERDUTY_API_KEY="u+xxxxxxxxxx"
export PAGERDUTY_SERVICE_ID="PXXXXXX"
export PAGERDUTY_ROUTING_KEY="xxxxxxxxxx" # For Events API
Trigger Incident (Events API v2)
curl -X POST "https://events.pagerduty.com/v2/enqueue" \
-H "Content-Type: application/json" \
-d '{
"routing_key": "'$PAGERDUTY_ROUTING_KEY'",
"event_action": "trigger",
"dedup_key": "incident-123",
"payload": {
"summary": "Server CPU at 95%",
"severity": "critical",
"source": "monitoring-system"
}
}'
Resolve Incident
curl -X POST "https://events.pagerduty.com/v2/enqueue" \
-H "Content-Type: application/json" \
-d '{
"routing_key": "'$PAGERDUTY_ROUTING_KEY'",
"event_action": "resolve",
"dedup_key": "incident-123"
}'
List Incidents
curl "https://api.pagerduty.com/incidents?statuses[]=triggered&statuses[]=acknowledged" \
-H "Authorization: Token token=$PAGERDUTY_API_KEY"
Get On-Call
curl "https://api.pagerduty.com/oncalls" \
-H "Authorization: Token token=$PAGERDUTY_API_KEY"
List Services
curl "https://api.pagerduty.com/services" \
-H "Authorization: Token token=$PAGERDUTY_API_KEY"
Links
- Dashboard: https://app.pagerduty.com
- Docs: https://developer.pagerduty.com
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install pagerduty?
Run openclaw add @mrgoodb/pagerduty in your terminal. This installs pagerduty into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/pagerduty. Review commits and README documentation before installing.
