From sundial-org-awesome-openclaw-skills-4
Monitors system processes for CPU, memory, disk I/O, network, open files, and ports. Finds resource hogs, kills runaway processes, and provides watch mode with alerts on macOS/Linux.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Comprehensive system process monitoring. Goes beyond basic `top` to show:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Comprehensive system process monitoring. Goes beyond basic top to show:
process-watch list [--sort cpu|mem|disk|name] [--limit 20]
process-watch top [--type cpu|mem|disk|net] [--limit 10]
process-watch info <pid>
# Shows: CPU, memory, open files, network connections, children, environment
process-watch find <name>
# e.g., process-watch find chrome
process-watch ports [--port 3000]
# What's listening on which port?
process-watch net [--pid <pid>] [--established]
process-watch kill <pid> [--force]
process-watch kill --name "chrome" [--force]
process-watch watch [--interval 2] [--alert-cpu 80] [--alert-mem 90]
# Continuous monitoring with threshold alerts
process-watch summary
# Quick overview: load, memory, disk, top processes
# 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