# Proc Monitor

> Monitor system processes and report CPU/memory usage, top consumers, and resource alerts.

- Skill: `johnalbertini14-glitch/proc-monitor` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add johnalbertini14-glitch/proc-monitor`
- Raw SKILL.md: https://api.skillmd.com/api/skills/johnalbertini14-glitch/proc-monitor/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: johnalbertini14-glitch (https://skillmd.com/u/johnalbertini14-glitch)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/johnalbertini14-glitch/proc-monitor

---


# Process Monitor

Monitor system processes and resource usage.

## Capabilities

- **Top Processes**: Show processes by CPU or memory usage
- **Process Search**: Find specific processes by name or PID
- **Resource Summary**: Overall CPU, memory, swap, load average
- **Alerts**: Identify processes exceeding thresholds

## Usage

Ask the agent to:
- "Show top 10 processes by memory usage"
- "Is there anything using more than 80% CPU?"
- "Find all node processes"
- "Give me a system resource summary"

## How It Works

Uses standard system tools:

```bash
ps aux --sort=-%mem | head -20
top -bn1 | head -20
free -h
uptime
```

## Requirements

- Standard Unix tools (`ps`, `top`, `free`, `uptime`)
- No API keys needed

