Install
openclaw skills install skylv-api-status-checkerChecks API health and uptime. Monitors endpoints and validates responses. Triggers: check api status, api health, monitor uptime.
openclaw skills install skylv-api-status-checkerMonitors API endpoints for health and uptime.
200 in <500ms = HEALTHY 200 in 500ms-2s = DEGRADED 200 in >2s = SLOW 4xx = CLIENT_ERROR 5xx = SERVER_ERROR Timeout = DOWN
$result = Invoke-WebRequest -Uri "https://api.example.com/health" -Method GET -TimeoutSec 10 if ($result.StatusCode -eq 200) { "OK" } else { "FAIL: " + $result.StatusCode }