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.

What this means

A user may believe the skill is actually checking Pi health, controlling GPIO, or managing services when it is only recording text entries.

Why it was flagged

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.

Skill content
description: "Manage Raspberry Pi devices — GPIO control, system monitoring (CPU/temp/memory), service management, sensor data reading." ... "Log, track, and organize entries"
Recommendation

Treat this as a local logging utility unless the publisher provides reviewed code and documentation for real GPIO, service, sensor, and system-monitoring functionality.

What this means

The skill may not run as expected on unsupported systems, and users have less clarity about how the provided command becomes available.

Why it was flagged

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.

Skill content
Required binaries (all must exist): none ... No install spec — this is an instruction-only skill. ... Code file presence: scripts/script.sh
Recommendation

Before use, verify the install path, command wrapper, and required shell utilities, especially on non-Unix systems.

What this means

Operational details, hostnames, IPs, maintenance notes, or accidentally entered secrets could remain on disk and later be searched or exported.

Why it was flagged

The skill intentionally keeps a persistent local history and export files containing user-provided operational notes.

Skill content
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`
Recommendation

Avoid logging credentials or sensitive incident details, and periodically review or delete the local data directory if retention is not desired.

What this means

A crafted or accidental log entry could break exported reports or behave unexpectedly when opened in another tool.

Why it was flagged

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.

Skill content
printf '  {"type":"%s","time":"%s","value":"%s"}' "$name" "$ts" "$val" ... echo "$name,$ts,$val" >> "$out"
Recommendation

Use caution when exporting and opening reports; the publisher should properly escape JSON and CSV output.