skills$openclaw/opsgenie
mrgoodb8.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

nameopsgenie
descriptionManage incidents and on-call schedules via Opsgenie API. Create alerts and escalations. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/opsgenie
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/opsgenie
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains opsgenie in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
269 B
SKILL.md
856 B
SKILL.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"
curl -X POST "https://api.opsgenie.com/v2/alerts/{alertId}/acknowledge" \
  -H "Authorization: GenieKey $OPSGENIE_API_KEY"
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.