Chatgpt-skills qr-code-generator
Generate QR codes with clean URLs, optional UTM parameters, captions, and print-safe exports. Use for single codes or batch campaign generation.
install
source · Clone the upstream repo
git clone https://github.com/dkyazzentwatwa/chatgpt-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/dkyazzentwatwa/chatgpt-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/qr-code-generator" ~/.claude/skills/dkyazzentwatwa-chatgpt-skills-qr-code-generator && rm -rf "$T"
manifest:
qr-code-generator/SKILL.mdsource content
QR Code Generator
Create QR assets that are safe to print, easy to scan, and explicit about the encoded destination.
Workflow
- Validate the target URL and prefer HTTPS.
- Add UTM parameters only when the campaign needs them.
- Generate single codes with
or batches withscripts/generate_qr.py
.scripts/batch_generate.py - Prefer SVG and higher error correction for print uses.
Guardrails
- Do not generate QR codes for suspicious or deceptive destinations.
- Return the final encoded URL alongside the output files.
- Explain when PNG is fine and when SVG is the better choice.