health-check
每日安全检查。检查 OpenClaw Gateway、磁盘空间、内存使用等系统健康状态。触发时机:cron 定时任务或手动调用。
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/axelhu/health-checkWhat This Skill Does
The health-check skill is an essential automated utility for OpenClaw users who require continuous monitoring of their agent environment. It acts as a digital watchdog, systematically evaluating the operational status of the OpenClaw Gateway, current disk space availability, memory usage metrics, and recent error logs to preemptively identify system instabilities.
By leveraging the internal references/spec.md file as a benchmark, the skill ensures that all running processes align with predefined environment standards. It automates the tedious task of manual system auditing, transforming raw diagnostic data into a structured report that is archived locally and pushed directly to your team communication platform (Feishu).
Installation
To integrate this health monitoring capability into your OpenClaw ecosystem, execute the following command in your terminal:
clawhub install openclaw/skills/skills/axelhu/health-check
Ensure that your OpenClaw agent has the necessary permissions to access the file system for log creation and the network access rights required to communicate with the Feishu API.
Use Cases
- Automated Infrastructure Monitoring: Configure a daily cron job to ensure the agent environment remains within optimal operational parameters.
- Pre-deployment Verification: Run an immediate check after updating agent configurations to ensure no resource leaks or errors were introduced.
- Error Tracking: Use the logs generated at
data/exec-logs/health-check/to debug historical system crashes or performance degradation issues. - Team Alerting: Maintain transparency by automatically notifying your operations team via Feishu whenever the agent reports status, ensuring everyone is kept in the loop regarding system health.
Example Prompts
- "Run the daily health check now and send the report to the dev team's Feishu group."
- "Execute health-check and notify me if the disk usage is above 80%."
- "Perform a system health check and save the output to the logs, then summarize the memory status for me."
Tips & Limitations
- Message Formatting: The skill intelligently handles large reports by splitting them into multiple messages if the length exceeds 3800 characters, ensuring readability and compliance with communication platform limitations.
- Retry Logic: The skill includes a robust retry mechanism for network failures. If the Feishu notification fails, the agent will attempt one subsequent retry before logging a critical error.
- Persistence: Always verify that the directory
data/exec-logs/health-check/is writable by the agent, or the skill will fail to store the historical report files.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-axelhu-health-check": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: file-write, file-read, external-api
Related Skills
Openclaw Sleep
Skill by axelhu
superpowers-overview
Use when starting any development work or when unsure which superpowers development skill to use - provides entry point and navigation to the full superpowers skill suite for OpenClaw agents
superpowers-subagent-dev
Use when executing implementation plans with independent tasks - coordinates task execution by dispatching subagents per task with verification checkpoints, adapted for OpenClaw's isolated session model
contacts
通讯录查询与维护技能。用于查找联系人信息(open_id、chat_id、account_id 等)、记录新联系人、或查询历史沟通偏好。触发时机:(1) 需要 @某人或向某渠道发消息时 (2) 认识新联系人后需要录入通讯录时 (3) 查询某人的联系方式或交流偏好时 (4) 询问"谁知道xxx的飞书ID"或"怎么联系xxx"时。
superpowers-executing-plans
Use when executing a written implementation plan in the current session with sequential task execution and review checkpoints - for when subagent-driven mode is not available