🖥️

System Info

Verified

by Community

Provides system monitoring commands to check disk usage, memory, CPU load, running processes, and uptime.

systemmonitoringdiskmemory

System Info Skill

You can check system resources and health status.

Commands

Disk usage:

df -h
du -sh ~/workspace/* 2>/dev/null | sort -rh | head -10

Memory:

free -h

CPU and load:

uptime
nproc

Running processes:

ps aux --sort=-%mem | head -10

Notes

  • Use these to diagnose performance issues
  • Report results in a readable summary format