QR code generation and reading. Use when user says "generate QR code", "create QR", "read QR code", or wants to work with QR codes.
Generate and read QR codes quickly.
When user says: "generate QR code for X", "create QR for URL Y"
bash skills/qr-code-tool-1.0.0/scripts/qr.sh generate "<text/url>" [--output filename.png]
When user says: "create WiFi QR code"
bash skills/qr-code-tool-1.0.0/scripts/qr.sh wifi "<ssid>" "<password>" [--encryption WPA]
When user says: "create contact QR"
bash skills/qr-code-tool-1.0.0/scripts/qr.sh vcard "<name>" "<phone>" "<email>"
When user says: "read this QR code", "decode QR"
bash skills/qr-code-tool-1.0.0/scripts/qr.sh read "<image-path>"
When user says: "generate QR codes for list"
bash skills/qr-code-tool-1.0.0/scripts/qr.sh batch "<input-file.txt>" [--output-dir ./qrcodes]
# Generate QR for URL
bash skills/qr-code-tool-1.0.0/scripts/qr.sh generate "https://example.com"
# Generate WiFi QR
bash skills/qr-code-tool-1.0.0/scripts/qr.sh wifi "MyNetwork" "password123"
# Generate contact QR
bash skills/qr-code-tool-1.0.0/scripts/qr.sh vcard "John Doe" "+1234567890" "john@example.com"
# Read QR from image
bash skills/qr-code-tool-1.0.0/scripts/qr.sh read "./qrcode.png"
# Batch generate from file
bash skills/qr-code-tool-1.0.0/scripts/qr.sh batch "./urls.txt" --output-dir ./qrcodes
QR codes are saved to:
workspace/qrcodes/--output parameterWhen generating:
✅ QR Code Generated
Content: https://example.com
File: ./qrcodes/qr_20260310_103045.png
Size: 300x300
When reading:
📱 QR Code Content:
https://example.com/page?id=123
ZIP package — ready to use