Data & AI
sysadmin - Claude MCP Skill
sysadmin
SEO Guide: Enhance your AI agent with the sysadmin tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to sysadmin... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# sysadmin System health diagnostics and maintenance for macOS. user-invocable: true --- ## Purpose Quick system health check and maintenance tasks. Identifies resource hogs, disk usage, and potential issues. **Critical constraint:** NEVER kill or terminate Claude Code processes. Warn only. ## Execution Run these diagnostics in sequence: ### 1. System Overview ```bash system_profiler SPHardwareDataType | grep -E "(Model|Chip|Memory|Cores)" ``` ### 2. Resource Usage ```bash # Top CPU consumers (macOS BSD ps) ps aux -r | head -15 # Top memory consumers ps aux -m | head -15 ``` ### 3. Claude Code Check ```bash # Find Claude-related processes ps aux | grep -i "claude\|anthropic" | grep -v grep ``` **If Claude Code appears in top resource consumers:** - Report memory/CPU usage prominently - Suggest: "Consider restarting Claude Code session if memory exceeds 4GB" - Suggest: "Long sessions accumulate context - `/clear` can help" - **DO NOT suggest killing processes** ### 4. Disk Usage ```bash # Overall disk usage df -h / | tail -1 # Large directories in home du -sh ~/Library/Caches ~/Library/Application\ Support ~/.Trash 2>/dev/null | sort -hr # Docker if present docker system df 2>/dev/null || echo "Docker not running" ``` ### 5. Memory Pressure ```bash # Memory stats vm_stat | head -10 # Swap usage sysctl vm.swapusage ``` ### 6. Network Connections ```bash # Active connections count by state netstat -an | grep -E "ESTABLISHED|LISTEN" | wc -l ``` ### 7. Homebrew Health (if time permits) ```bash brew doctor 2>&1 | head -20 ``` ## Output Format ``` ## System Health Report **Machine:** [model] | **Chip:** [chip] | **RAM:** [total] ### Resource Usage | Process | CPU% | MEM% | Notes | |---------|------|------|-------| ... ### Claude Code Status [Warning block if high usage, otherwise "Normal"] ### Disk - Root: X% used (Y available) - Caches: X GB - Docker: X GB reclaimable ### Recommendations 1. [Actionable items only] ``` ## Maintenance Actions (on request) Only run these if user explicitly asks: ```bash # Clear caches (safe) rm -rf ~/Library/Caches/* 2>/dev/null # Empty trash rm -rf ~/.Trash/* 2>/dev/null # Docker cleanup docker system prune -f # Homebrew cleanup brew cleanup --prune=7 ``` Never run maintenance automatically. Always confirm first.
Signals
Information
- Repository
- phrazzld/claude-config
- Author
- phrazzld
- Last Sync
- 3/2/2026
- Repo Updated
- 3/1/2026
- Created
- 2/3/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
cursorrules
CrewAI Development Rules
CLAUDE
CLAUDE.md
browser-use
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, or extract information from web pages.
remote-browser
Controls a cloud browser from a sandboxed remote machine. Use when the agent is running in a sandbox (no GUI) and needs to navigate websites, interact with web pages, fill forms, take screenshots, or expose local dev servers via tunnels.
Related Guides
Mastering the Oracle CLI: A Complete Guide to the Claude Skill for Database Professionals
Learn how to use the oracle Claude skill. Complete guide with installation instructions and examples.
Python Django Best Practices: A Comprehensive Guide to the Claude Skill
Learn how to use the python django best practices Claude skill. Complete guide with installation instructions and examples.
Building Full-Stack Applications with Claude: The Node.js MongoDB JWT Express React Skill Guide
Learn how to use the nodejs mongodb jwt express react Claude skill. Complete guide with installation instructions and examples.