A simple skill for generating QR codes locally. Convert any text or URL to a QR code image (PNG) or display as ASCII art in terminal. Everything runs locally, no external API calls needed.
Requires qrcode and Pillow Python packages:
pip install qrcode pillow
python3 scripts/generate_png.py "https://example.com" output.png
python3 scripts/generate_ascii.py "Hello World"
python3 scripts/generate_png.py --box-size 10 --border 4 "content" output.png
generate_png.py - Generate QR code as PNG image filegenerate_ascii.py - Generate QR code as ASCII art for terminal output共 1 个版本