pi-admin
Raspberry Pi system administration. Monitor resources, manage services, perform updates and maintenance.
What this skill does
# Raspberry Pi Administration Complete system monitoring and introspection for the Raspberry Pi host. Access network details, system resources, storage, services, and more. ## When to Use - Checking Pi network configuration (IP, Tailscale) - Monitoring system resources (CPU, memory, storage) - Viewing running services and their status - Checking temperature and hardware info - Troubleshooting system issues - Getting system overview for debugging ## Usage ```bash # Information Commands cd /home/srose/clawd/skills/pi-admin ./skill.sh overview ./skill.sh network ./skill.sh tailscale ./skill.sh resources ./skill.sh storage ./skill.sh services ./skill.sh hardware # Maintenance Commands ./skill.sh update # Update system packages ./skill.sh clean # Clean unused packages, logs, Docker ./skill.sh reboot # Reboot with countdown ./skill.sh restart-gateway # Restart the Clawdis Gateway # Complete system info ./skill.sh all ``` ## Tools Available | Tool | Description | | ----------- | ------------------------------------------ | | `overview` | Quick system summary | | `network` | IP addresses, hostname, network interfaces | | `tailscale` | Tailscale status, IP, peers | | `resources` | CPU, memory, temperature | | `storage` | Disk usage, mount points | | `services` | Running services, Gateway status | | `hardware` | CPU info, Raspberry Pi model, GPU | | `all` | Complete detailed dump | ## Examples ```bash # Quick system check ./skill.sh overview # Debug network issues ./skill.sh network && ./skill.sh tailscale # Check if Gateway is running ./skill.sh services | grep gateway # Monitor disk space ./skill.sh storage ``` ## Information Collected **Network:** - Hostname - Local IP addresses (eth0, wlan0) - Network interface details - DNS configuration **Tailscale:** - Status (running/stopped) - Tailscale IP - Connected peers - Exit node status **Resources:** - CPU usage - Memory usage (used/free/total) - CPU temperature - Uptime **Storage:** - Disk usage by mount point - Inode usage - Free space **Services:** - Gateway service status - Docker containers - Systemd services - Port listeners **Hardware:** - CPU model and cores - Raspberry Pi model - GPU memory - Total RAM ## Maintenance Commands ### `update` Update system packages via apt: - Updates package lists - Shows upgradable packages - Requires confirmation before upgrading - Reports if reboot is needed - **Dry run:** `./skill.sh update --dry-run` shows what would be updated ### `clean` Clean up system to free disk space: - Removes unused packages (autoremove) - Clears package cache - Cleans old journal logs (keeps 7 days) - Optionally cleans Docker artifacts - Shows space saved - **Dry run:** `./skill.sh clean --dry-run` shows what would be cleaned ### `reboot` Graceful system reboot: - 10-second countdown - Ctrl+C to cancel - Uses systemctl reboot - **Dry run:** `./skill.sh reboot --dry-run` shows countdown without rebooting ### `restart-gateway` Restart the Clawdis Gateway service: - Stops all running gateway processes - Starts fresh gateway on port 18789 - Confirms port is listening - Shows access URLs - **Dry run:** `./skill.sh restart-gateway --dry-run` shows what would happen ### `optimize` Apply safe system optimizations: - Disable Bluetooth service (~50MB RAM saved) - Disable ModemManager (~30MB RAM saved) - Disable Avahi/Zeroconf (~20MB RAM saved) - Set swappiness to 10 (better RAM utilization) - **Dry run:** `./skill.sh optimize --dry-run` shows what would change - **Undo:** `./skill.sh optimize --undo` reverts all changes **Total RAM savings:** ~100MB **Reversibility:** Yes, use `--undo` flag to revert **Note:** All maintenance commands require sudo and ask for confirmation before making changes. Use `--dry-run` flag to preview changes without applying them.
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.