skills$openclaw/statuspage
mrgoodb8.3k

by mrgoodb

statuspage – OpenClaw Skill

statuspage is an OpenClaw Skills integration for coding workflows. Manage Statuspage incidents and components via API. Update status and communicate outages.

8.3k stars5.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namestatuspage
descriptionManage Statuspage incidents and components via API. Update status and communicate outages. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/statuspage
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/statuspage
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains statuspage in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
273 B
SKILL.md
1.1 KB
SKILL.md

name: statuspage description: Manage Statuspage incidents and components via API. Update status and communicate outages. metadata: {"clawdbot":{"emoji":"📟","requires":{"env":["STATUSPAGE_API_KEY","STATUSPAGE_PAGE_ID"]}}}

Statuspage

Status communication.

Environment

export STATUSPAGE_API_KEY="xxxxxxxxxx"
export STATUSPAGE_PAGE_ID="xxxxxxxxxx"

Create Incident

curl -X POST "https://api.statuspage.io/v1/pages/$STATUSPAGE_PAGE_ID/incidents" \
  -H "Authorization: OAuth $STATUSPAGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"incident": {"name": "Service Degradation", "status": "investigating", "body": "We are investigating..."}}'

List Incidents

curl "https://api.statuspage.io/v1/pages/$STATUSPAGE_PAGE_ID/incidents" \
  -H "Authorization: OAuth $STATUSPAGE_API_KEY"
curl -X PATCH "https://api.statuspage.io/v1/pages/$STATUSPAGE_PAGE_ID/components/{id}" \
  -H "Authorization: OAuth $STATUSPAGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"component": {"status": "operational"}}'
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 statuspage?

Run openclaw add @mrgoodb/statuspage in your terminal. This installs statuspage 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/statuspage. Review commits and README documentation before installing.