Qr Code Generator

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a straightforward local QR-code generator, with the main cautions being manual Python dependency installation and careful handling of QR codes that contain secrets like Wi-Fi passwords.

This skill is reasonable to install if you want local QR-code generation. Use a virtual environment for the Python dependencies, and be careful not to share generated QR files that contain Wi-Fi passwords, personal contact details, or other private information unless that is your intent.

Findings (2)

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 QR code containing Wi-Fi credentials, contact details, or location data can expose that information if the generated file is shared, printed, or left accessible.

Why it was flagged

The skill can encode user-provided network credentials into a QR code. This is disclosed and purpose-aligned, but the resulting QR code can grant access to anyone who scans or receives it.

Skill content
python scripts/qr.py --type wifi --ssid "MyNetwork" --password "secret123"
Recommendation

Only encode credentials or personal details that you intend to share, and store or delete generated QR files appropriately.

What this means

Future installs may resolve to newer package versions than the author tested.

Why it was flagged

The skill relies on external Python packages with lower-bound version ranges rather than exact pins. These libraries are expected for QR/image generation, but unpinned dependencies can change over time.

Skill content
qrcode[pil]>=7.4.0
segno>=1.6.0
Pillow>=10.0.0
Recommendation

Install in a virtual environment and consider pinning or reviewing dependency versions if you need reproducible or tightly controlled installs.