π¦ ClawHub
DevOps Ops Bot
by @gruted
Server health monitoring with alerts and auto-recovery. Checks CPU, memory, disk, and uptime with configurable thresholds. Sends Slack/Discord alerts and can...
TERMINAL
clawhub install devops-ops-botπ About This Skill
name: devops-ops-bot description: Server health monitoring with alerts and auto-recovery. Checks CPU, memory, disk, and uptime with configurable thresholds. Sends Slack/Discord alerts and can auto-restart services on critical. metadata: openclaw: requires: bins: [node]
devops-ops-bot
Lightweight server health monitoring CLI.
Quick check
cd ~/.openclaw/workspace/skills/devops-ops-bot
npx @gruted/devops-ops-bot check
Or if installed globally:
devops-watch check
What it does
Usage examples
# Basic health check
devops-watch checkCustom thresholds
devops-watch check --warn-cpu 80 --crit-cpu 95 --warn-mem 80 --crit-mem 95JSON output
devops-watch check --jsonWith Slack alerts
devops-watch check --webhook-url "https://hooks.slack.com/services/..."Auto-restart on critical
devops-watch check --restart-cmd "systemctl restart nginx"Cron (every 5 min)
devops-watch cron-example --every-min 5
Install
# npm
npm install -g @gruted/devops-ops-botor one-liner
curl -fsSL https://raw.githubusercontent.com/gruted/devops-ops-bot/main/install.sh | bashor Docker
docker run --rm ghcr.io/gruted/devops-ops-bot:latest check