スキル一覧に戻る
erikdrouhard

qr-code

by erikdrouhard

0🍴 0📅 2026年1月19日
GitHubで見るManusで実行

SKILL.md


QR Code Generator

Generate QR codes from any URL and display them directly in the terminal, save to file, or copy to clipboard.

Usage

/qr-code <url>
/qr-code <url> --output qr.png
/qr-code <url> --output qr.svg
/qr-code <url> --clipboard

Examples:

  • /qr-code https://claude.ai — Display in terminal
  • /qr-code https://claude.ai --output qr.png — Save as PNG file
  • /qr-code https://claude.ai --output qr.svg — Save as SVG file
  • /qr-code https://claude.ai --clipboard — Copy to clipboard for pasting into Figma, PowerPoint, etc.
  • /qr-code https://claude.ai -o qr.png -c — Save to file AND copy to clipboard

Execution

Run the script with uv:

# Terminal display only
uv run --with qrcode scripts/generate_qr.py <url>

# Save to PNG (requires pillow)
uv run --with qrcode --with pillow scripts/generate_qr.py <url> --output qr.png

# Save to SVG
uv run --with qrcode scripts/generate_qr.py <url> --output qr.svg

# Copy to clipboard (requires pillow)
uv run --with qrcode --with pillow scripts/generate_qr.py <url> --clipboard

Arguments:

  • url (required): The URL to encode as a QR code
  • --output, -o (optional): Save to file (.png or .svg)
  • --clipboard, -c (optional): Copy PNG to system clipboard

Output

Depending on options:

  1. Default: ASCII QR code in terminal (scannable with phone camera)
  2. --output: Saves image file + shows ASCII preview
  3. --clipboard: Copies PNG to clipboard + shows ASCII preview

Platform Support

  • macOS: Full support (clipboard uses osascript)
  • Linux: Clipboard requires xclip or xsel
  • Windows: File output only (clipboard not yet supported)

スコア

総合スコア

40/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です