Control Usb Relay
Analysis
This appears to be a straightforward USB relay controller, but it can switch real connected hardware and requires serial-port setup.
Findings (3)
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.
print("Turning ON relay...")
relay.turn_on()
...
print("Toggling relay...")
relay.toggle()Running the included test path physically actuates the connected relay. This is purpose-aligned, but it can affect real equipment.
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt-get install -y nodejs
The optional setup guide includes a remote script executed with sudo. It is user-directed and disclosed, but users should treat it as a privileged supply-chain step.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
sudo usermod -a -G dialout $USER
The setup asks the user to grant their account dialout group access, which is expected for serial hardware but broadens serial-device permissions.
