os-health

Solid

VPS OS health, network speed test, disk, RAM, CPU, uptime, process snapshot

AI & Automation 49 stars 8 forks Updated today AGPL-3.0

Install

View on GitHub

Quality Score: 80/100

Stars 20%
57
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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...

Details

Author
ariffazil
Repository
ariffazil/arifos
Created
8 months ago
Last Updated
today
Language
Python
License
AGPL-3.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category