system-info
Original:🇺🇸 English
Not Translated
Get system information — OS version, disk usage, memory, running processes, network status. Use when users ask about their computer status or system health.
1installs
Sourceninehills/skills
Added on
NPX Install
npx skill4agent add ninehills/skills system-infoSKILL.md Content
System Info Skill
Gather system information using standard command-line tools.
Commands
bash
# OS version
sw_vers # macOS
uname -a # Any Unix
# Disk usage
df -h # All volumes
du -sh ~/Desktop ~/Documents ~/Downloads # Common folders
# Memory
vm_stat # macOS memory stats
top -l 1 -s 0 | head -12 # Quick system overview
# CPU
sysctl -n machdep.cpu.brand_string # CPU model
sysctl -n hw.ncpu # CPU count
# Running processes (top CPU/memory)
ps aux --sort=-%cpu | head -10 # Top CPU
ps aux --sort=-%mem | head -10 # Top memory
# Network
ifconfig | grep "inet " # IP addresses
networksetup -getairportnetwork en0 # WiFi network (macOS)
ping -c 1 8.8.8.8 # Connectivity check
# Battery (MacBook)
pmset -g batt # Battery status
# Uptime
uptimeTips
- Use for macOS version details
sw_vers - Use for full hardware info
system_profiler SPHardwareDataType - Use to check what's running on a port
lsof -i :PORT