os-health
SolidVPS OS health, network speed test, disk, RAM, CPU, uptime, process snapshot
AI & Automation 49 stars
8 forks Updated today AGPL-3.0
Install
Quality Score: 84/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
AI & Automation Solid
vps-docker
Full VPS Docker status — all containers, resource usage, arifOS health
49 Updated today
ariffazil AI & Automation Solid
health-probe
Health probes for both sides of the AGI stack — openclaw + arifOS MCP
49 Updated today
ariffazil AI & Automation Solid
git-sync
Git operations on VPS repos — status, commit, push, pull, diff, branch management
49 Updated today
ariffazil