OpenClawDashboard/skills/sys-health/SKILL.md
Manohar 0fcc209020 feat(skills): spawn-delegate, angel-positions, inbox-manager, sys-health
Four skills that wire Tiger into its own control plane (requires
TIGER_BRIDGE_TOKEN in the container env): delegate work to specialists,
read live P&L (read-only, never trades), manage the TASKS.md inbox,
self-diagnose host RAM/gateway/bridge health.
2026-06-10 14:59:41 +00:00

1.5 KiB

name description metadata
sys-health Check the health of the Tiger Command Center itself — RAM/swap pressure on the VPS, LLM gateway reachability, bridge status, recent audit events, cron run outcomes. Use when asked "is everything running", "why is it slow", after failures, or proactively when your own turns feel sluggish.
moltbot
emoji requires primaryEnv
🩺
env
TIGER_BRIDGE_TOKEN
TIGER_BRIDGE_TOKEN

System Health

Memory pressure (the #1 failure mode on this host)

/proc inside the container shows HOST memory:

grep -E 'MemTotal|MemAvailable|SwapTotal|SwapFree' /proc/meminfo

Interpretation: MemAvailable under ~800MB or swap more than half used means agent turns will crawl and cron jobs may hit their 300s timeouts. Say so explicitly and recommend deferring heavy work.

LLM gateway (all models route through it)

curl -s -o /dev/null -w '%{http_code}' https://llm.manohargupta.com/health/liveliness

Anything but 200 = every agent in the system is degraded.

Bridge + recent activity

curl -s http://172.17.0.1:3456/tiger/status -H "Authorization: Bearer $TIGER_BRIDGE_TOKEN"
# last 20 audited events (spawns, cron, tasks, outputs):
curl -s 'http://172.17.0.1:3456/tiger/activity/audit?limit=20' -H "Authorization: Bearer $TIGER_BRIDGE_TOKEN"

Report format

Lead with a one-line verdict (healthy / degraded / critical), then only the metrics that are off. Quantify with numbers and units.