Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/bug-ops/zeph/process-managementnpx skills add bug-ops/zeph --skill process-managementgit clone --depth 1 https://github.com/bug-ops/zephWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00080 | $0.02777 |
| Opus 5 | $0.00040 | $0.01388 |
| Sonnet 5 | $0.00016 | $0.00555 |
| Haiku 4.5 | $0.00008 | $0.00278 |
Grade B, and why
process-management scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo nice -n -10 command How it starts
The opening of the file, as written. The whole thing — 491 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Process Management
Quick Reference
| Task | Command |
|---|---|
| List all processes | ps aux |
| Find process by name | pgrep -a name |
| Find process on port | lsof -i :8080 |
| Kill by PID | kill PID |
| Kill by name | pkill name |
| Force kill | kill -9 PID |
| Process tree | pstree |
| Interactive monitor | top or htop |
| Background a command | command & |
| List background jobs | jobs |
Viewing Processes
ps — Process Status
# All processes (BSD-style, most common)
ps aux
# All processes (POSIX-style)
ps -ef
# Process tree (Linux)
ps -ef --forest
# Specific user's processes
ps -u username
# Specific process by PID
ps -p 1234
# Specific process by name
ps aux | grep nginx
# Custom output columns
ps -eo pid,ppid,user,%cpu,%mem,vsz,rss,stat,start,time,comm
# Sort by CPU usage
ps aux --sort=-%cpu | head -20
# Sort by memory usage
ps aux --sort=-%mem | head -20
# Show threads
ps -eLf # Linux
ps -M PID # macOS
# Show full command line
ps auxww
# Count processes
ps aux | wc -l
Process Status Codes (STAT column)
| Code | Meaning |
|---|---|
R |
Running or runnable |
S |
Sleeping (interruptible) |
D |
Uninterruptible sleep (I/O wait) |
T |
Stopped (by signal or debugger) |
Z |
Zombie (terminated but not reaped) |
I |
Idle kernel thread |
< |
High priority |
N |
Low priority (nice) |
s |
Session leader |
l |
Multi-threaded |
+ |
Foreground process group |
top — Interactive Process Monitor
# Start top
top
# Sort by CPU (default)
# Press: P (CPU), M (memory), T (time), N (PID)
# Show specific user
top -u username
# Non-interactive mode (batch, for scripting)
top -b -n 1
# Refresh interval (seconds)
top -d 2
# Show specific number of processes
top -n 1 -b | head -20
# macOS top: sort by CPU
top -o cpu
# macOS top: sort by memory
top -o mem
htop — Enhanced Interactive Monitor
htop # start htop
htop -u username # filter by user
htop -t # tree view
htop --sort-key=PERCENT_CPU # sort by CPU
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 491 lines · 80 tokens per session scan B f877a635f5fa
process-management is a skill published in the GitHub repository bug-ops/zeph (57 stars, last pushed 7d ago), licensed MIT. It adds 80 tokens to every session and 2,777 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
verify
Run Chimeraforge's canonical verification gate end-to-end and report the real output before claiming work done or committing. Failing output gets pasted, fixed, and re-run — never summarized away.
free-model-manager
Free AI model management - discover, download, and manage free/open-source AI models from Ollama, HuggingFace, and other sources.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
interview
Ask one useful structured question at a time only when material product/implementation choices are genuinely missing; remember answers and produce a brief/spec. Discoverable facts should be investigated instead of asked.
test
Detect the project’s test stack, run the narrowest useful tests, create tests when authorized, and report coverage/gaps honestly.
verify
Exercise the real app/API/CLI and collect observable evidence; tests alone do not count as end-to-end verification.