一键导入
health-check
Full system health report in plain English with traffic-light ratings. Triggers: "is it working", "health check", "full status", "how's the system".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Full system health report in plain English with traffic-light ratings. Triggers: "is it working", "health check", "full status", "how's the system".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Create backups before changes and restore if things go wrong. Triggers: "backup", "restore", "undo", "go back", "roll back", "save point".
Explain any command, concept, or log entry in plain English with a risk rating. Triggers: "what does this do", "explain", "what is", "what happened here", "what does this mean".
Guided secret rotation with validation. Never revoke old key before new one is verified. Triggers: "rotate key", "change API key", "new token", "credential expired", "401 error".
Guided deployment with pre-flight, explain, confirm, execute, verify. Triggers: "deploy", "push changes", "update the agent", "update workspace files". NEVER skip phases. NEVER auto-execute.
Full credential security audit across local repo and VPS. Triggers: "audit secrets", "check credentials", "are my keys safe", "security check".
Step-by-step troubleshooting when something is broken. Triggers: "it's broken", "not working", "error", "help", "something wrong", "agent down".
基于 SOC 职业分类
| name | health-check |
| description | Full system health report in plain English with traffic-light ratings. Triggers: "is it working", "health check", "full status", "how's the system". |
MANDATORY: Run all 7 checks. Present results in plain English with traffic lights.
Run via SSH. All commands are read-only (GREEN). Run in parallel where possible.
ssh -i ~/.ssh/id_ed25519_github root@72.62.213.231 "openclaw gateway health"
GREEN if responding within 5 seconds. YELLOW if 5-15s. RED if timeout or error.
ssh -i ~/.ssh/id_ed25519_github root@72.62.213.231 "systemctl is-active openclaw-gateway && systemctl is-enabled openclaw-gateway"
GREEN if active + enabled. RED if not active. YELLOW if active but not enabled (won't start on reboot).
ssh -i ~/.ssh/id_ed25519_github root@72.62.213.231 "ls ~/.openclaw/workspace/ 2>/dev/null || echo 'No workspace found'"
Verify the expected files are present (AGENTS.md, SOUL.md, IDENTITY.md, skills/, etc.).
ssh -i ~/.ssh/id_ed25519_github root@72.62.213.231 "openclaw cron list 2>/dev/null || echo 'Cannot list cron jobs'"
GREEN if expected jobs present and healthy. YELLOW if any in error state. RED if cron list fails.
ssh -i ~/.ssh/id_ed25519_github root@72.62.213.231 "df -h / | tail -1"
GREEN if under 80% used. YELLOW if 80-90%. RED if over 90%.
ssh -i ~/.ssh/id_ed25519_github root@72.62.213.231 "ss -tlnp | grep -v 'sshd\|openclaw\|systemd\|node'"
GREEN if nothing unexpected. RED if any unexpected port is listening (potential security incident from the autonomous script class of bugs).
ssh -i ~/.ssh/id_ed25519_github root@72.62.213.231 "journalctl -u openclaw-gateway --since '1 hour ago' --no-pager -p err 2>/dev/null | head -20"
GREEN if no errors. YELLOW if warnings only. RED if errors present.
=== System Health ===
Overall: GREEN | YELLOW | RED
| Check | Status | Plain English |
|-------|--------|--------------|
| Gateway | [color] | [e.g., "Running and responding in 120ms"] |
| Service | [color] | [e.g., "Active and will start on reboot"] |
| Workspace | [color] | [e.g., "All expected files present"] |
| Cron Jobs | [color] | [e.g., "7 jobs registered, all healthy"] |
| Disk | [color] | [e.g., "Using 45% of 50GB"] |
| Security | [color] | [e.g., "No unexpected network services"] |
| Recent Errors | [color] | [e.g., "Clean — no errors in the last hour"] |
[If any YELLOW/RED: plain-English explanation of what needs attention and what to do]
/troubleshoot for deeper investigation.