← ClaudeAtlas

os-healthlisted

VPS OS health, network speed test, disk, RAM, CPU, uptime, process snapshot
ariffazil/arifos · ★ 45 · AI & Automation · score 80
Install: claude install-skill ariffazil/arifos
# OS Health & Speedtest — arifOS_bot Triggers: "speedtest", "network speed", "how fast is my VPS", "os health", "system check", "cpu usage", "memory usage", "disk space", "uptime", "processes", "top processes", "is VPS slow", "latency", "ping", "bandwidth", "vps performance" --- ## Full Health Snapshot (run all at once) ```bash echo "=== $(date) ===" && \ echo "--- UPTIME ---" && uptime && \ echo "--- CPU ---" && grep -c ^processor /proc/cpuinfo && cat /proc/loadavg && \ echo "--- RAM ---" && free -h && \ echo "--- DISK ---" && df -h / && \ echo "--- CONTAINERS ---" && docker ps --format "table {{.Names}}\t{{.Status}}" 2>/dev/null && \ echo "--- arifOS ---" && curl -sf http://arifosmcp:8080/health | python3 -c "import sys,json; d=json.load(sys.stdin); print(f\"status={d['status']} tools={d.get('tools_loaded','?')}\")" 2>/dev/null ``` --- ## Network Speed Test ### Download speed (Cloudflare — no install needed) ```bash # 10MB test file from Cloudflare SPEED=$(curl -s -o /dev/null -w "%{speed_download}" \ "https://speed.cloudflare.com/__down?bytes=10000000" --max-time 15) echo "Download: $(echo "scale=1; ${SPEED}/1048576" | bc) MB/s" ``` ### Latency to key endpoints ```bash for HOST in 1.1.1.1 8.8.8.8 api.anthropic.com api.moonshot.cn; do RTT=$(curl -s -o /dev/null -w "%{time_connect}s" "https://${HOST}" --max-time 5 2>/dev/null || echo "timeout") echo "${HOST}: ${RTT}" done ``` ### Upload speed (to your own VPS — internal) ```bash # From cont