QR Bridge
Analysis
QR Bridge appears purpose-aligned for decoding QR codes and inspecting links, with the main things to notice being local setup commands and network requests to decoded URLs.
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.
curl -sIL --max-redirs 15 --connect-timeout 10 "URL_HERE"
The skill follows redirects and inspects URLs decoded from QR codes. This is expected for the stated purpose, but it causes external sites from QR contents to be contacted.
pip3 install "qrcode[pil]"
The setup script may install an unpinned Python package for QR generation. This is related to the advertised QR generation feature, but it is not declared in the registry install spec.
swiftc "$SWIFT_SRC" -o "$SWIFT_BIN" -O
The first-run setup compiles the included Swift QR decoder into a local executable. This is disclosed and directly supports the skill's QR decoding purpose.
