skills$openclaw/uptime-monitor
kunoiiv8.3k

by kunoiiv

uptime-monitor – OpenClaw Skill

uptime-monitor is an OpenClaw Skills integration for coding workflows. 24/7 OpenClaw uptime monitor. Every 5min cron ping → writes dead.json if down, uptime.json after 7d (168h) continuous alive streak. Use when setting up persistent monitoring (cron setup, streak tracking, status files).

8.3k stars3.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameuptime-monitor
description24/7 OpenClaw uptime monitor. Every 5min cron ping → writes dead.json if down, uptime.json after 7d (168h) continuous alive streak. Use when setting up persistent monitoring (cron setup, streak tracking, status files). OpenClaw Skills integration.
ownerkunoiiv
repositorykunoiiv/uptime-monitor
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @kunoiiv/uptime-monitor
last updatedFeb 7, 2026

Maintainer

kunoiiv

kunoiiv

Maintains uptime-monitor in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
uptime-check.js
1.1 KB
_meta.json
322 B
SKILL.md
1.6 KB
SKILL.md

name: uptime-monitor description: 24/7 OpenClaw uptime monitor. Every 5min cron ping → writes dead.json if down, uptime.json after 7d (168h) continuous alive streak. Use when setting up persistent monitoring (cron setup, streak tracking, status files).

Uptime Monitor

Silent 24/7 sentinel: Tracks OpenClaw/Gateway alive → dead.json (fail) or uptime.json (7d streak). Files in workspace/uptime/.

Quick Setup (One-Shot)

# Install cron (5min pings)
📊 cron add uptime-5m '{"kind":"every","everyMs":300000}' '{"kind":"systemEvent","text":"UPTIME CHECK 👻"}' --sessionTarget main

# View status/logs
📊 cron list
📊 cron runs uptime-5m

Workflow (Auto on "UPTIME CHECK")

  1. Ping: 📊 session_status + openclaw gateway status (via exec).
  2. Success: Update uptime/streak.json (hours += 5/60). If >=168h → write uptime/uptime.json.
  3. Fail: Write uptime/dead.json {ts, downtime_start: now}.
  4. Dirs: Auto-mkdir uptime/.

Streak Reset: On fail → streak=0.

Files (Workspace/uptime/)

  • streak.json: {"streak_hours": 24.5, "last_ping": 1738746800000}
  • uptime.json: {"streak_hours": 168.1, "verified": true, "end_ts": 1738746800000} (7d+)
  • dead.json: {"ts": 1738746800000, "downtime_start": 1738746800000}

Edge Handling

  • First run: streak=0.
  • Cron miss: Streak holds (no false-dead).
  • Manual: message "UPTIME CHECK 👻" triggers.

No alerts/deps. Pure files. Prod eternal.

Script (Optional Exec)

scripts/uptime-check.js: Standalone Node ping (for manual/cron spawn).

Prod: Cron → silent forever.

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 uptime-monitor?

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