ワンクリックで
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.