system-health
System Health Skill
Check system resource usage and health status.
When to Use
✅ USE this skill when:
- User asks about system performance
- Need to check resource usage
- Diagnose slow performance
- Check disk space
- List running processes
Commands
CPU & Load
# System load average
uptime
# CPU info
cat /proc/cpuinfo | head -20
# Detailed CPU stats
mpstat 1 1 2>/dev/null || top -bn1 | head -15
Memory
# Memory usage
free -h
# Memory details
cat /proc/meminfo | head -10
# Swap usage
swapon -s
Disk
# Disk space (human readable)
df -h
# Disk usage by directory
du -sh /* 2>/dev/null | sort -hr | head -10
# Disk inodes
df -i
Processes
# Top processes by CPU
ps aux --sort=-%cpu | head -15
# Top processes by memory
ps aux --sort=-%mem | head -15
# Running processes count
ps aux | wc -l
# Specific process check
ps aux | grep -E "node|python|docker" | head -10
Network
# Network connections
ss -tunapl | head -20
# Listening ports
ss -ltnp
# Network interface stats
ip -s link
System Info
# OS version
cat /etc/os-release
# Kernel version
uname -a
# System uptime
uptime -s
Combined Health Check
#!/bin/bash
echo "=== System Health Check ==="
echo ""
echo "Uptime: $(uptime -p)"
echo ""
echo "=== Memory ==="
free -h | grep -E "Mem|Swap"
echo ""
echo "=== Disk ==="
df -h / | tail -1
echo ""
echo "=== Top CPU ==="
ps aux --sort=-%cpu | head -6 | tail -5
echo ""
echo "=== Top Memory ==="
ps aux --sort=-%mem | head -6 | tail -5
Notes
- Different commands available on Linux vs macOS
- Use
htopfor interactive monitoring if available - Check for resource-hungry processes first
More from winsorllc/upgraded-carnival
vector-memory
Vector-based semantic memory using embeddings for intelligent recall. Store and search memories by meaning rather than keywords. Use when you need semantic search, similar document retrieval, or context-aware memory.
132model-router
Route requests between different LLM providers and models. Configure routing rules, fallback providers, and model-specific parameters inspired by ZeroClaw and OpenClaw model routing systems.
63rss-monitor
Monitor RSS/Atom feeds and blogs for new content using feedparser.
60rss-reader
Read and parse RSS/Atom feeds. Use when: user wants to subscribe to feeds, get latest articles, or monitor news sources.
55video-frames
Production-grade video frame extraction with thumbnail grids, GIF creation, and batch frame processing. Includes intelligent quality presets, progress tracking, and comprehensive error handling.
39elevenlabs-tts
Convert text to speech using ElevenLabs API. Use when you need to generate voice audio for messages, narrations, or accessibility.
25