8.8k★by mrgoodb
opsgenie – OpenClaw Skill
opsgenie is an OpenClaw Skills integration for writing workflows. Manage incidents and on-call schedules via Opsgenie API. Create alerts and escalations.
8.8k stars7.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | opsgenie |
| description | Manage incidents and on-call schedules via Opsgenie API. Create alerts and escalations. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/opsgenie |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/opsgenie |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
856 BSKILL.md
name: opsgenie description: Manage incidents and on-call schedules via Opsgenie API. Create alerts and escalations. metadata: {"clawdbot":{"emoji":"🚨","requires":{"env":["OPSGENIE_API_KEY"]}}}
Opsgenie
Incident management.
Environment
export OPSGENIE_API_KEY="xxxxxxxxxx"
Create Alert
curl -X POST "https://api.opsgenie.com/v2/alerts" \
-H "Authorization: GenieKey $OPSGENIE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"message": "Server down", "priority": "P1"}'
List Alerts
curl "https://api.opsgenie.com/v2/alerts" -H "Authorization: GenieKey $OPSGENIE_API_KEY"
Acknowledge Alert
curl -X POST "https://api.opsgenie.com/v2/alerts/{alertId}/acknowledge" \
-H "Authorization: GenieKey $OPSGENIE_API_KEY"
Links
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 opsgenie?
Run openclaw add @mrgoodb/opsgenie in your terminal. This installs opsgenie 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/opsgenie. Review commits and README documentation before installing.
