一键导入
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.