Manage incidents and on-call schedules via Opsgenie API. Create alerts and escalations.
Scanned 2/10/2026
Install to Claude Code
npx -y skills add openclaw/skills --skill opsgenie --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Opsgenie?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/openclaw-opsgenie)More formats (shields.io, HTML) on the badges page.
---
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
```bash
export OPSGENIE_API_KEY="xxxxxxxxxx"
```
## Create Alert
```bash
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
```bash
curl "https://api.opsgenie.com/v2/alerts" -H "Authorization: GenieKey $OPSGENIE_API_KEY"
```
## Acknowledge Alert
```bash
curl -X POST "https://api.opsgenie.com/v2/alerts/{alertId}/acknowledge" \
-H "Authorization: GenieKey $OPSGENIE_API_KEY"
```
## Links
- Docs: https://docs.opsgenie.com/docs/api-overview
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.