Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

openstatusopenstatus 命令行

Agent Skill

openstatus 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,371

周安装

95

GitHub Stars

公开资料未说明

下载量

768
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openstatus(openstatus 命令行)
来源仓库:https://github.com/openstatus/openstatus
安装命令:
openclaw skills install openstatus
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openstatus

简介

OpenStatus CLI 用于管理系统事件与维护时段的状态报告。

  • 支持创建、更新与发布服务状态页面,增强运维透明度。
  • 可与监控系统集成,自动触发告警与恢复通知。openstatus 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 操作前请确认组织权限,避免误报影响客户信任度。
  • 安装命令:openclaw skills install openstatus

SKILL.md

name
openstatus-cli
description
|
env
allowed-tools
metadata
{"openclaw":{"emoji":"🌎","requires":{"bins":[],"env":["OPENSTATUS_API_TOKEN", "OPENSTATUS_API_TOKEN"]}}}

OpenStatus CLI — Incident Management

OpenStatus is an open-source monitoring platform. The CLI lets you manage incidents and maintenance directly from the terminal — create status reports, post updates through the full incident lifecycle, schedule maintenance windows, and notify your status page subscribers.

Run openstatus --help or openstatus <command> --help for full option details.

official website: https://www.openstatus.dev

Prerequisites

The openstatus CLI must be installed before using this skill. Install via Homebrew:

brew install openstatusHQ/cli/openstatus --cask

For other installation methods, see the OpenStatus CLI repository.

Authentication

You must authenticate before running any command:

openstatus whoami

If not authenticated:

openstatus login

Authentication can also be provided via the --access-token / -t flag or the OPENSTATUS_API_TOKEN environment variable.

Command Overview

TaskCommandWhen to use
Create incident reportstatus-report createSomething is broken — notify users
Add update to incidentstatus-report add-update <ID>Post a progress update on an ongoing incident
List incidentsstatus-report listSee active/recent incidents
Get incident detailsstatus-report info <ID>View full incident timeline
Update incident metadatastatus-report update <ID>Change title or affected components
Delete incidentstatus-report delete <ID>Remove a status report
Create maintenance windowmaintenance createSchedule planned downtime
List maintenance windowsmaintenance listSee scheduled/active/completed maintenance
Get maintenance detailsmaintenance info <ID>View full details of a maintenance window
Update maintenance windowmaintenance update <ID>Change title, message, or time window
Delete maintenance windowmaintenance delete <ID>Remove a maintenance window
List status pagesstatus-page listFind your page ID and components
Get status page detailsstatus-page info <ID>View page config, components, theme

Command aliases: status-report = sr, status-page = sp, maintenance = mt.

Quick Start: Report an Incident End-to-End

# 1. Find your status page and components
openstatus status-page list
openstatus status-page info <PAGE_ID>

# 2. Create the incident
openstatus status-report create \
  --title "API Degradation" \
  --status investigating \
  --message "Investigating increased error rates" \
  --page-id 123 \
  --component-ids "comp-1,comp-2" \
  --notify

# 3. Post updates as you learn more
openstatus status-report add-update 456 \
  --status identified \
  --message "Root cause: database connection pool exhaustion" \
  --notify

# 4. Resolve
openstatus status-report add-update 456 \
  --status resolved \
  --message "Connection pool limits increased, recovery confirmed" \
  --notify

Quick Start: Schedule a Maintenance Window

# 1. Find your status page
openstatus status-page list

# 2. Create the maintenance window
openstatus maintenance create \
  --title "Database Migration" \
  --message "Scheduled migration to improve performance" \
  --from "2026-04-05T02:00:00Z" \
  --to "2026-04-05T04:00:00Z" \
  --page-id 123 \
  --component-ids "comp-1" \
  --notify

Incident Lifecycle

Use status reports for unplanned outages and incidents.

Status reports follow a strict progression: investigatingidentifiedmonitoringresolved. These are the only valid status values — the CLI rejects anything else.

Step 1: Look Up Your Status Page

Every incident must be attached to a status page. Find your page ID and component IDs first:

openstatus status-page list
openstatus status-page info <PAGE_ID>   # shows components grouped by section

Step 2: Create the Incident

openstatus status-report create \
  --title "API Degradation" \
  --status investigating \
  --message "We are investigating increased error rates on the API" \
  --page-id 123 \
  --component-ids "comp-1,comp-2" \
  --notify

On success, the CLI prints the report ID and suggests the next command:

Status report created successfully (ID: 456)
To add updates, run: openstatus status-report add-update 456 --status identified --message '...'

create flags:

FlagRequiredDescription
--titleyesIncident title
--statusyesinvestigating, identified, monitoring, or resolved
--messageyesInitial message describing the incident
--page-idyesStatus page ID (from status-page list)
--component-idsnoComma-separated component IDs in a single string: "id1,id2"
--notifynoSend notification to status page subscribers
--datenoRFC 3339 timestamp (e.g. 2026-03-25T10:00:00Z), defaults to now (UTC)

Step 3: Post Updates

As the incident progresses, post status updates:

openstatus status-report add-update 456 \
  --status identified \
  --message "Root cause identified: database connection pool exhaustion" \
  --notify

add-update flags:

FlagRequiredDescription
--statusyesNew status value
--messageyesUpdate message
--notifynoNotify subscribers
--datenoRFC 3339 timestamp, defaults to now (UTC)

Step 4: Resolve

openstatus status-report add-update 456 \
  --status resolved \
  --message "Connection pool limits increased, monitoring confirms recovery" \
  --notify

When status is set to resolved, the CLI confirms: Report resolved.

Update Metadata Without Changing Status

Change the title or affected components on an existing report:

openstatus status-report update 456 \
  --title "API Degradation - Resolved" \
  --component-ids "comp-1,comp-3"

At least one of --title or --component-ids must be provided. --component-ids replaces the entire list — it is not additive.

View Incident Timeline

openstatus status-report info 456

Shows full metadata plus the update timeline — each update displayed as <date> [status] <message>.

List and Filter Incidents

openstatus status-report list                          # all reports
openstatus status-report list --status investigating   # only active investigations
openstatus status-report list --limit 10               # last 10 reports

Delete an Incident

openstatus status-report delete 456        # prompts for confirmation
openstatus status-report delete 456 -y     # skip confirmation

Maintenance Windows

Use maintenance for planned downtime windows.

Create a Maintenance Window

openstatus maintenance create \
  --title "Database Migration" \
  --message "Scheduled database migration to improve performance" \
  --from "2026-04-05T02:00:00Z" \
  --to "2026-04-05T04:00:00Z" \
  --page-id 123 \
  --component-ids "comp-1,comp-2" \
  --notify

On success, the CLI prints the maintenance ID:

Maintenance created successfully (ID: 789)
Run 'openstatus maintenance info 789' to see details

create flags:

FlagRequiredDescription
--titleyesMaintenance title
--messageyesDescription of the maintenance
--fromyesStart time in RFC 3339 format (e.g. 2026-04-05T02:00:00Z)
--toyesEnd time in RFC 3339 format
--page-idyesStatus page ID (from status-page list)
--component-idsnoComma-separated component IDs: "id1,id2"
--notifynoNotify status page subscribers

Status is computed automatically based on the current time: scheduled (before --from), in_progress (between --from and --to), completed (after --to). There is no --status flag.

Update a Maintenance Window

openstatus maintenance update <ID> \
  --title "Extended Maintenance" \
  --to "2026-04-05T06:00:00Z"

Only provided flags are updated. At least one of --title, --message, --from, --to, or --component-ids must be set. --component-ids replaces the entire list.

List and Filter

openstatus maintenance list                        # all maintenance windows
openstatus maintenance list --page-id 123          # filter by page
openstatus maintenance list --limit 10             # limit results

View Details

openstatus maintenance info <ID>

Delete

openstatus maintenance delete <ID>       # prompts for confirmation
openstatus maintenance delete <ID> -y    # skip confirmation

Global Flags

Every command supports these:

FlagEffect
--jsonMachine-readable JSON output
--no-colorDisable colored output
--quiet / -qSuppress non-error output
--debugEnable debug output

Use --json when you need to parse output programmatically or pipe it to jq.

Common Gotchas

  • Missing --page-idstatus-report create and maintenance create both require --page-id. Always run openstatus status-page list first to get it.
  • Invalid status values — Status reports only accept investigating, identified, monitoring, resolved. The CLI rejects anything else.
  • --component-ids replaces, not appends — On update, passing --component-ids replaces the entire list. Include all desired components in the new value.
  • --component-ids format — Must be a single comma-separated string: "id1,id2,id3". Do not pass multiple --component-ids flags.
  • Notification fatigue--notify emails all status page subscribers. Use it for create and resolved, but consider skipping it for intermediate updates.
  • Date format — All dates must use RFC 3339 / ISO 8601 format: "2026-04-05T02:00:00Z". Other formats will be rejected.
  • Auth errors — Every command requires auth. If you get auth errors, run openstatus whoami to check, then openstatus login if needed.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.2%
按下载量换算746

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills