Pi Admin
Analysis
Pi Admin matches its Raspberry Pi administration purpose, but it can make host-wide privileged changes such as cleaning packages/logs, rebooting, disabling services, and restarting the gateway with incomplete confirmations.
Findings (7)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
$SUDO apt autoremove -y ... $SUDO journalctl --vacuum-time=7d ... $SUDO apt-get autoremove --purge -y
The cleanup path can remove packages and purge old logs non-interactively after the command is invoked, which is broad host mutation and not easily reversible.
for i in {10..1}; do ... sleep 1; done ... $SUDO rebootThe reboot command proceeds after a countdown with Ctrl+C cancellation, but no explicit yes/no confirmation before rebooting the host.
pkill -f "clawdis gateway" ... pkill -9 -f "clawdis gateway" ... pnpm clawdis gateway --port 18789 > /dev/null 2>&1 &
The script force-stops all matching gateway processes and starts a new gateway in the background, creating long-running behavior after the command finishes.
$SUDO systemctl disable bluetooth.service ... $SUDO systemctl disable avahi-daemon.service ... echo "vm.swappiness=10" | $SUDO tee /etc/sysctl.d/99-swappiness.conf
The optimize command persists service and kernel-setting changes across sessions; it is purpose-aligned and has an undo flag, but it can affect device connectivity and discovery.
**Note:** All maintenance commands require sudo and ask for confirmation before making changes.
This safety statement is broader than the scripts show: reboot proceeds after a countdown, restart-gateway has no confirmation, and optimize applies changes after the sudo/root path.
Source: unknown; Homepage: none; OS restriction: none; Required binaries: none
The registry metadata does not declare provenance, platform, or required system tools, even though the provided scripts depend on Linux/Raspberry Pi administration commands.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
read -p "Continue with sudo? [y/N]" ... $SUDO apt upgrade -y
The skill expects sudo/root authority for package maintenance; this is normal for Pi administration but grants broad control over the host.
