From sundial-org-awesome-openclaw-skills-4
Monitors Raspberry Pi resources (CPU, memory, storage, temperature), network/Tailscale, services/Docker, hardware; runs updates, cleaning, reboots via CLI.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Complete system monitoring and introspection for the Raspberry Pi host. Access network details, system resources, storage, services, and more.
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.
Complete system monitoring and introspection for the Raspberry Pi host. Access network details, system resources, storage, services, and more.
# 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
| 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 |
# 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
Network:
Tailscale:
Resources:
Storage:
Services:
Hardware:
updateUpdate system packages via apt:
./skill.sh update --dry-run shows what would be updatedcleanClean up system to free disk space:
./skill.sh clean --dry-run shows what would be cleanedrebootGraceful system reboot:
./skill.sh reboot --dry-run shows countdown without rebootingrestart-gatewayRestart the Clawdis Gateway service:
./skill.sh restart-gateway --dry-run shows what would happenoptimizeApply safe system optimizations:
./skill.sh optimize --dry-run shows what would change./skill.sh optimize --undo reverts all changesTotal 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.