npx skills add https://github.com/openclaw/skills
sundial-org/awesome-openclaw-skills
process-watch
Monitor system processes - CPU, memory, disk I/O, network, open files, ports. Find resource hogs, kill runaway processes, track what's consuming your machine.
Installation
npx skills add sundial-org/awesome-openclaw-skills --skill process-watch
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Process media files (video, audio, images, documents) using Transloadit. Use when asked to enco…
8.8K installsDeploy an event-driven workflow that routes S3 uploads to either Lambda or Fargate via Step Fun…
3.4K installsAnalyze and improve business processes. Trigger with "this process is slow", "how can we improv…
2.8K installsManages MongoDB Atlas Stream Processing (ASP) workflows.
2.6K installsDocument a business process — flowcharts, RACI, and SOPs. Use when formalizing a process that l…
2.6K installsDraft process letters and bid instructions for sell-side M&A processes. Covers initial indicati…
7 installsAlso in this package
Other skills from sundial-org/awesome-openclaw-skills · top by installs.
npx skills add sundial-org/awesome-openclaw-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
More metadata
- clawdhub
- {"emoji":"📊","requires":{"bins":["python3"]}}
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,925 B -
docs
SUMMARY.md179 B
History
- First seen on skills.sh
- First recorded snapshot · 3 installs
SKILL.md
Process Watch
Comprehensive system process monitoring. Goes beyond basic top to show:
- CPU & memory usage
- Disk I/O per process
- Network connections
- Open files & handles
- Port bindings
- Process trees
Commands
List processes
process-watch list [--sort cpu|mem|disk|name] [--limit 20]
Top resource consumers
process-watch top [--type cpu|mem|disk|net] [--limit 10]
Process details
process-watch info <pid>
# Shows: CPU, memory, open files, network connections, children, environment
Find by name
process-watch find <name>
# e.g., process-watch find chrome
Port bindings
process-watch ports [--port 3000]
# What's listening on which port?
Network connections
process-watch net [--pid <pid>] [--established]
Kill process
process-watch kill <pid> [--force]
process-watch kill --name "chrome" [--force]
Watch mode
process-watch watch [--interval 2] [--alert-cpu 80] [--alert-mem 90]
# Continuous monitoring with threshold alerts
System summary
process-watch summary
# Quick overview: load, memory, disk, top processes
Examples
# What's eating my CPU?
process-watch top --type cpu
# What's on port 3000?
process-watch ports --port 3000
# Details on a specific process
process-watch info 1234
# Kill all Chrome processes
process-watch kill --name chrome
# Watch with alerts
process-watch watch --alert-cpu 90 --alert-mem 85
Platform Support
- macOS: Full support
- Linux: Full support
- Windows: Partial (basic process list, no lsof equivalent)