Install
openclaw skills install qrcode-generatorGenerate QR codes from text, URLs, or data for payments, WiFi sharing, or any task needing a scannable QR code image.
openclaw skills install qrcode-generatorGenerate QR codes from text, URLs, or data using the qrcode npm package.
Run the included script:
node /workspace/skills/qrcode-generator/scripts/generate.js <text_or_url> [output_file]
Arguments:
text_or_url: The content to encode (required)output_file: Output path (optional, defaults to qrcode.png)Examples:
# Generate QR code for a URL
node /workspace/skills/qrcode-generator/scripts/generate.js "https://example.com"
# Generate QR code with custom output
node /workspace/skills/qrcode-generator/scripts/generate.js "https://example.com" "/workspace/my-qr.png"