원클릭으로
system-monitoring
Monitor system resource usage (CPU, RAM, GPU) and active processes on CachyOS.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Monitor system resource usage (CPU, RAM, GPU) and active processes on CachyOS.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | system_monitoring |
| description | Monitor system resource usage (CPU, RAM, GPU) and active processes on CachyOS. |
This skill teaches the Hermes Agent how to monitor active system hardware loads on CachyOS.
When the user requests resource utilization data or asks about system loads, run the following commands to gather metrics:
Check Memory (RAM & Swap) usage:
free -h
Check System Load & CPU utilization:
uptime
# Or get the top CPU-consuming processes
ps -eo pid,cmd,%mem,%cpu --sort=-%cpu | head -n 10
Check GPU utilization:
nvidia-smi --query-gpu=utilization.gpu,utilization.memory,temperature.gpu,memory.used,memory.total --format=csv
cat /sys/class/drm/card0/device/gpu_busy_percent 2>/dev/null || echo "ROCm GPU telemetry not available directly via sysfs."
Verify if Ollama is running active processes:
pgrep -fl ollama
Provide a summarized report to the user: Report the active memory pool details, CPU load factors, and GPU telemetry details back in a clear, formatted summary.