LaunchKit · 2026
Back to Skills

server-health-agent

Monitor VPS and server health metrics including real-time CPU usage, RAM utilization, disk usage, and Docker.

0
629 downloads
by @sanjay-gthb

Setup & Installation

openclaw skills install @sanjay-gthb/server-health-agent

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install server-health-agent

What This Skill Does

Runs read-only system commands to collect CPU usage, RAM utilization, disk capacity, and Docker container status from a VPS or server. Returns structured JSON for use in monitoring workflows or further automation. Gracefully handles environments where Docker access is restricted.

Returns structured JSON directly usable in automation pipelines, avoiding the need to parse unstructured shell output manually.

When to use it

  • Checking server load before a production deploy
  • Diagnosing a slow server during an incident
  • Auditing running Docker containers on a remote VPS
  • Alerting when disk usage approaches capacity limits
  • Running scheduled infrastructure health checks in a CI pipeline

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: What is the current health of my server?

AGENT
  1. 1Runs top to capture live CPU utilization
  2. 2Reads RAM usage via system-level memory commands
  3. 3Checks root filesystem disk usage with df
  4. 4Queries the Docker socket for running container status
  5. 5Assembles all metrics into a structured JSON response
OUTPUT

{"cpu_percent":"12.44","ram_percent":"21.33","disk_usage":"51%","docker_status":"openclaw-openclaw-gateway-1: Up 2 hours"}