Install
$ agentstack add skill-therocksss-hermes-skills-portfolio-qr-code-generator ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ● Filesystem access Used
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
qr-code-generator
Overview
Generate QR codes as PNG or SVG images. The agent creates QR codes for URLs, plain text, WiFi credentials, vCards, and custom content with customizable size, color, and error correction.
When to Use
- The user wants a QR code for a URL.
- The user wants to share WiFi credentials via QR.
- The user wants a QR code for contact info (vCard).
- The user says "make a QR code", "generate a QR", or "create a scannable code".
Prerequisites
pip install qrcode[pil]
Basic QR Code
import qrcode
def make_qr(data: str, output: str = "qr.png", size: int = 10, border: int = 4):
"""Generate a QR code PNG from any string data."""
qr = qrcode.QRCode(
version=None, # auto-detect minimum size
error_correction=qrcode.constants.ERROR_CORRECT_M,
box_size=size,
border=border,
)
qr.add_data(data)
qr.make(fit=True)
img = qr.make_image(fill_color="black", back_color="white")
img.save(output)
return output
Custom Colors
def make_colored_qr(data: str, output: str, fill: str = "#1a1a2e", back: str = "#ffffff"):
qr = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_H)
qr.add_data(data)
qr.make(fit=True)
img = qr.make_image(fill_color=fill, back_color=back)
img.save(output)
return output
SVG Output
import qrcode.svg
def make_svg_qr(data: str, output: str = "qr.svg"):
factory = qrcode.svg.SvgPathImage
qr = qrcode.QRCode(image_factory=factory)
qr.add_data(data)
qr.make(fit=True)
img = qr.make_image()
img.save(output)
return output
WiFi QR Code
def wifi_qr(ssid: str, password: str, security: str = "WPA", hidden: bool = False, output: str = "wifi.png"):
"""Generate a QR code that auto-configures WiFi on phones."""
data = f"WIFI:T:{security};S:{ssid};P:{password};H:{'true' if hidden else 'false'};;"
return make_qr(data, output)
vCard QR Code
def vcard_qr(name: str, phone: str, email: str, org: str = "", output: str = "contact.png"):
"""Generate a QR code with contact info."""
data = f"BEGIN:VCARD\nVERSION:3.0\nFN:{name}\nTEL:{phone}\nEMAIL:{email}\nORG:{org}\nEND:VCARD"
return make_qr(data, output)
URL QR Code
def url_qr(url: str, output: str = "url.png"):
"""Generate a QR code for a URL."""
return make_qr(url, output)
Error Correction Levels
| Level | Recovery | Use case | |---|---|---| | L | 7% | High-density, clean environment | | M | 15% | Default, general use | | Q | 25% | Some risk of damage | | H | 30% | Logos overlay, dirty environments |
# High error correction (allows logo overlay in center)
qr = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_H)
With Logo Overlay
from PIL import Image
def qr_with_logo(data: str, logo_path: str, output: str = "qr_logo.png"):
"""Generate a QR code with a logo in the center."""
qr = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_H)
qr.add_data(data)
qr.make(fit=True)
qr_img = qr.make_image(fill_color="black", back_color="white").convert("RGBA")
logo = Image.open(logo_path).convert("RGBA")
# Scale logo to ~20% of QR size
qr_size = qr_img.size[0]
logo_size = int(qr_size * 0.2)
logo = logo.resize((logo_size, logo_size), Image.LANCZOS)
pos = ((qr_size - logo_size) // 2, (qr_size - logo_size) // 2)
qr_img.paste(logo, pos, logo)
qr_img.save(output)
return output
Workflow
- Determine the content type (URL, text, WiFi, vCard)
- Choose format (PNG for images, SVG for print/web)
- Pick error correction level (M default, H for logos)
- Generate the QR code
- Return the file path
Common Pitfalls
- Too much data. QR codes have capacity limits — a v1 QR holds 17 alphanumeric chars, v40 holds 4,296. Long URLs produce large, dense codes that are hard to scan; shorten the URL first.
- Dark on dark. QR codes need high contrast — dark fill on a dark background won't scan. Always use dark fill on a light background.
- Logo too large. A logo covering more than ~30% of the QR code makes it unscannable — keep logos to 20% max and use error correction H.
- PNG vs SVG confusion. PNG is for screen/fixed-size print; SVG is scalable. Use SVG for billboards or large-format displays, not screen previews.
- Malformed WiFi QR format. The string must be exactly
WIFI:T:WPA;S:SSID;P:PASSWORD;;— the trailing double semicolon is required; omitting it breaks the QR. - Unescaped special characters. Semicolons and colons inside WiFi SSIDs/passwords must be escaped as
\\:and\\;or the field boundaries break.
Verification Checklist
- [ ] Generated file opens as a valid image (PNG renders, SVG parses without errors)
- [ ] Decoded the QR (phone camera or a decoder library) to confirm the payload round-trips exactly
- [ ] Fill/background contrast is dark-on-light
- [ ] WiFi QR strings end in the required
;;and escape any:/;inside SSID/password - [ ] Logo overlay (if used) covers ≤20-30% of the code and error correction is set to H
- [ ] Output format (PNG vs SVG) matches the stated use case (screen vs print/large display)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: THEROCKSSS
- Source: THEROCKSSS/hermes-skills-portfolio
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.