process-monitor

📁 ignaciosua/copilot-skills-repo 📅 Jan 27, 2026
1
总安装量
1
周安装量
#50584
全站排名
安装命令
npx skills add https://github.com/ignaciosua/copilot-skills-repo --skill process-monitor

Agent 安装分布

clawdbot 1

Skill 文档

Process Monitor

Monitors system processes and displays performance statistics.

Usage

python ~/.copilot/skills/process-monitor/process_monitor.py [options]

Options

Option Description Default
--top N Show top N processes 10
--sort Sort by: cpu, mem cpu
--stats-only Show only system stats, no processes false

Output

JSON with:

  • processes: List of top processes (pid, name, cpu%, mem%)
  • load_average: System load (1, 5, 15 min)
  • memory: RAM usage (total, used, available, percent)
  • uptime: System uptime

Examples

Default (Top 10 by CPU)

python ~/.copilot/skills/process-monitor/process_monitor.py

Top 5 by Memory

python ~/.copilot/skills/process-monitor/process_monitor.py --top 5 --sort mem

System Stats Only

python ~/.copilot/skills/process-monitor/process_monitor.py --stats-only