$npx -y skills add dkyazzentwatwa/chatgpt-skills --skill qr-code-generatorGenerate QR codes with clean URLs, optional UTM parameters, captions, and print-safe exports. Use for single codes or batch campaign generation.
| 1 | # QR Code Generator |
| 2 | |
| 3 | Create QR assets that are safe to print, easy to scan, and explicit about the encoded destination. |
| 4 | |
| 5 | ## Workflow |
| 6 | |
| 7 | 1. Validate the target URL and prefer HTTPS. |
| 8 | 2. Add UTM parameters only when the campaign needs them. |
| 9 | 3. Generate single codes with `scripts/generate_qr.py` or batches with `scripts/batch_generate.py`. |
| 10 | 4. Prefer SVG and higher error correction for print uses. |
| 11 | |
| 12 | ## Guardrails |
| 13 | |
| 14 | - Do not generate QR codes for suspicious or deceptive destinations. |
| 15 | - Return the final encoded URL alongside the output files. |
| 16 | - Explain when PNG is fine and when SVG is the better choice. |