Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Generate and read QR codes. Use when the user wants to create a QR code from text/URL, or decode/read a QR code from an image file. Supports PNG/JPG output and can read QR codes from screenshots or image files.
Generate and read QR codes. Use when the user wants to create a QR code from text/URL, or decode/read a QR code from an image file. Supports PNG/JPG output and can read QR codes from screenshots or image files.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Generate QR codes from text/URLs and decode QR codes from images.
Generate QR codes from any text, URL, or data Customize QR code size and error correction level Save as PNG or display in terminal Read/decode QR codes from image files (PNG, JPG, etc.) Read QR codes from screenshots
Install Python dependencies:
pip install qrcode pillow
pip install pillow pyzbar On Windows, pyzbar requires Visual C++ Redistributable. On macOS: brew install zbar On Linux: apt install libzbar0
python scripts/qr_generate.py "https://example.com" output.png Options: --size: Box size in pixels (default: 10) --border: Border size in boxes (default: 4) --error: Error correction level L/M/Q/H (default: M) Example with options: python scripts/qr_generate.py "Hello World" hello.png --size 15 --border 2
python scripts/qr_read.py image.png Returns the decoded text/URL from the QR code.
Generate QR for a URL: import qrcode img = qrcode.make("https://openclaw.ai") img.save("openclaw.png") Read QR from image: from pyzbar.pyzbar import decode from PIL import Image data = decode(Image.open("qr.png")) print(data[0].data.decode())
scripts/qr_generate.py - Generate QR codes with customization options scripts/qr_read.py - Decode QR codes from image files
Long-tail utilities that do not fit the current primary taxonomy cleanly.
Largest current source with strong distribution and engagement signals.