Install
openclaw skills install pi-adminRaspberry Pi system administration. Monitor resources, manage services, perform updates and maintenance.
openclaw skills install pi-adminComplete 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.