skills/system-monitor/SKILL.md
Monitor system health: CPU, memory, disk, network, processes, services, and logs. Present data naturally. Correlate issues across subsystems. Alert on thresholds. Diagnose root causes.
npx skillsauth add bolivian-peru/os-moda system-monitorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You can monitor every aspect of the system in real time.
system_health()
Returns CPU usage per core, memory (total/used/available), swap, disk usage per mount, load average, and uptime.
system_query({ query: "processes", args: { sort: "cpu", limit: 20 } })
system_query({ query: "processes", args: { sort: "memory", limit: 20 } })
system_query({ query: "processes", args: { name: "firefox" } })
system_query({ query: "disk" })
Returns per-mount: filesystem type, total/used/available space, usage percentage.
When the user reports a problem:
system_health() for the overviewmemory_recall({ query: "similar problem description" })memory_store({ summary: "...", detail: "...", category: "diagnosis" })Always diagnose before suggesting fixes. Explain what you found. Store diagnoses for future reference — next time the same issue occurs, you'll recall it instantly.
Flag these to the user proactively:
devops
Multi-perspective risk analysis using structured persona debate before deploying changes
development
Build software via spec-driven development (github/spec-kit). Whenever the user asks for a feature larger than a one-line tweak, scaffold a spec-kit project, capture WHAT + WHY, declare tech stack, break into tasks, then iterate the implementation until tests pass.
development
Manage NixOS packages declaratively. Search, install (via configuration.nix rebuild), remove, rollback, and list generations. Understands the NixOS declarative model.
development
Read and edit NixOS module options. Validate before applying. Show diffs before rebuild. Enumerate available options. Understand the NixOS declarative model deeply.