skills$openclaw/pi-admin
thesethrose107

by thesethrose

pi-admin – OpenClaw Skill

pi-admin is an OpenClaw Skills integration for data analytics workflows. Raspberry Pi system administration. Monitor resources, manage services, perform updates and maintenance.

107 stars3.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namepi-admin
descriptionRaspberry Pi system administration. Monitor resources, manage services, perform updates and maintenance. OpenClaw Skills integration.
ownerthesethrose
repositorythesethrose/pi-admin
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @thesethrose/pi-admin
last updatedFeb 7, 2026

Maintainer

thesethrose

thesethrose

Maintains pi-admin in the OpenClaw Skills directory.

View GitHub profile
File Explorer
15 files
.
_meta.json
273 B
clean.sh
3.9 KB
hardware.sh
2.0 KB
network.sh
1.1 KB
optimize.sh
5.2 KB
overview.sh
682 B
reboot.sh
759 B
resources.sh
1.5 KB
restart-gateway.sh
2.0 KB
services.sh
1.4 KB
SKILL.md
3.9 KB
skill.sh
1.8 KB
storage.sh
993 B
tailscale.sh
946 B
update.sh
1.8 KB
SKILL.md

name: pi-admin description: Raspberry Pi system administration. Monitor resources, manage services, perform updates and maintenance. metadata: {"clawdis":{"emoji":"🥧","requires":{"bins":[]}}}

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

# 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

ToolDescription
overviewQuick system summary
networkIP addresses, hostname, network interfaces
tailscaleTailscale status, IP, peers
resourcesCPU, memory, temperature
storageDisk usage, mount points
servicesRunning services, Gateway status
hardwareCPU info, Raspberry Pi model, GPU
allComplete detailed dump

Examples

# 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.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install pi-admin?

Run openclaw add @thesethrose/pi-admin in your terminal. This installs pi-admin into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/thesethrose/pi-admin. Review commits and README documentation before installing.