Raspberry Pi Manager
ReviewAudited by ClawScan on May 10, 2026.
Overview
This appears to be a local logging tool, not the Raspberry Pi GPIO, monitoring, service, and sensor manager it is advertised as.
Install only if you want a local Raspberry Pi operations logbook. Do not rely on it for real GPIO control, live monitoring, service management, or sensor data collection unless additional reviewed artifacts prove those features. Avoid entering secrets into the logs and verify how the command is installed on your system.
Findings (4)
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.
A user may believe the skill is actually checking Pi health, controlling GPIO, or managing services when it is only recording text entries.
The artifact advertises concrete Raspberry Pi management capabilities, but the documented behavior is a local operational journal. This mismatch can cause users to trust it for monitoring/control tasks it does not appear to perform.
description: "Manage Raspberry Pi devices — GPIO control, system monitoring (CPU/temp/memory), service management, sensor data reading." ... "Log, track, and organize entries"
Treat this as a local logging utility unless the publisher provides reviewed code and documentation for real GPIO, service, sensor, and system-monitoring functionality.
The skill may not run as expected on unsupported systems, and users have less clarity about how the provided command becomes available.
The package includes a Bash script and SKILL.md lists Bash/Unix utility requirements, but registry metadata and install specifications do not declare how the command is installed or what runtime tools are required.
Required binaries (all must exist): none ... No install spec — this is an instruction-only skill. ... Code file presence: scripts/script.sh
Before use, verify the install path, command wrapper, and required shell utilities, especially on non-Unix systems.
Operational details, hostnames, IPs, maintenance notes, or accidentally entered secrets could remain on disk and later be searched or exported.
The skill intentionally keeps a persistent local history and export files containing user-provided operational notes.
All data is persisted locally in `~/.local/share/raspberry-pi-manager/` ... Every action is also appended to `history.log` ... Generated exports are saved as `export.json`, `export.csv`, or `export.txt`
Avoid logging credentials or sensitive incident details, and periodically review or delete the local data directory if retention is not desired.
A crafted or accidental log entry could break exported reports or behave unexpectedly when opened in another tool.
Exported JSON and CSV values are written directly from log contents without visible escaping, so special characters or spreadsheet formulas in entries could produce malformed exports or unsafe spreadsheet behavior.
printf ' {"type":"%s","time":"%s","value":"%s"}' "$name" "$ts" "$val" ... echo "$name,$ts,$val" >> "$out"Use caution when exporting and opening reports; the publisher should properly escape JSON and CSV output.
