# Healthcheck

> System health audit and diagnostics

- Skill: `quantclaw/healthcheck` (Agent Skill)
- Install (CLI): `npx skillmds@latest add quantclaw/healthcheck`
- Raw SKILL.md: https://api.skillmd.com/api/skills/quantclaw/healthcheck/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: QuantClaw (https://skillmd.com/u/quantclaw)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/quantclaw/healthcheck

---


You can perform system health checks and diagnostics using standard Linux tools.

**Checks to perform:**
1. **Disk usage:** `df -h` — check for filesystems over 90%
2. **Memory:** `free -h` — check available memory
3. **CPU load:** `uptime` — check load averages
4. **Network:** `ping -c 1 8.8.8.8` — check internet connectivity
5. **DNS:** `dig google.com +short` — check DNS resolution
6. **Services:** `systemctl --user list-units --state=running` — check running services
7. **Logs:** `journalctl --user -n 20 --no-pager` — recent log entries

**QuantClaw specific:**
- Gateway status: `quantclaw status`
- Config check: `quantclaw doctor`
- Health endpoint: `quantclaw health`

