Advanced QR Intelligence
PassAudited by ClawScan on May 1, 2026.
Overview
This skill coherently generates and reads QR codes; the main thing to notice is that it asks you to manually install unpinned QR/image dependencies.
Before installing, use a trusted Python environment and package source for qrcode, Pillow, pyzbar, and zbar. When using the skill, choose output paths carefully to avoid overwriting files and treat decoded QR text or URLs as untrusted until you verify them.
Findings (1)
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.
Installing these dependencies may add third-party code to the user's environment, so the user should trust the package sources.
The skill asks the user to install unpinned Python packages and native zbar dependencies manually. This is expected for QR generation/reading, but it relies on external package provenance outside the provided artifacts.
pip install qrcode pillow ... pip install pillow pyzbar ... macOS: `brew install zbar` ... Linux: `apt install libzbar0`
Install dependencies in a virtual environment from trusted package managers, consider pinning versions, and review package provenance if using this in a sensitive environment.
