# Send Pi Admin to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pi-admin",
    "name": "Pi Admin",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/TheSethRose/pi-admin",
    "canonicalUrl": "https://clawhub.ai/TheSethRose/pi-admin",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pi-admin",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pi-admin",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "clean.sh",
      "hardware.sh",
      "network.sh",
      "optimize.sh",
      "overview.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pi-admin",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T01:10:23.410Z",
      "expiresAt": "2026-05-08T01:10:23.410Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pi-admin",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pi-admin",
        "contentDisposition": "attachment; filename=\"pi-admin-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pi-admin"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pi-admin"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pi-admin",
    "downloadUrl": "https://openagent3.xyz/downloads/pi-admin",
    "agentUrl": "https://openagent3.xyz/skills/pi-admin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pi-admin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pi-admin/agent.md"
  }
}
```
## Documentation

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

ToolDescriptionoverviewQuick system summarynetworkIP addresses, hostname, network interfacestailscaleTailscale status, IP, peersresourcesCPU, memory, temperaturestorageDisk usage, mount pointsservicesRunning services, Gateway statushardwareCPU info, Raspberry Pi model, GPUallComplete 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

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: TheSethRose
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T01:10:23.410Z
- Expires at: 2026-05-08T01:10:23.410Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pi-admin)
- [Send to Agent page](https://openagent3.xyz/skills/pi-admin/agent)
- [JSON manifest](https://openagent3.xyz/skills/pi-admin/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pi-admin/agent.md)
- [Download page](https://openagent3.xyz/downloads/pi-admin)