🔳
DataHTML

QR Code Maker

by dongsheng123132

QR Code Maker is a Data skill for Claude Code, published by dongsheng123132 in u-claw.

1.7K stars414 forkson dongsheng123132/u-clawAdded 2026/08/19Repository updated 2026/08/17
ai-assistantchinachineseclaude-codecodexdeepseekfeishuinternationalkimioffline-aioffline-installeropenclawplug-and-playportableqq-botusbusb-portablevietnam
Install in seconds
Install QR Code Maker
Copy QR Code Maker into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/dongsheng123132/u-claw/tree/main/portable/skills-cn/qrcode-maker ~/.claude/skills/qrcode-maker

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/dongsheng123132/u-claw.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
portable/skills-cn/qrcode-maker/SKILL.md in dongsheng123132/u-claw
Installs to
~/.claude/skills/qrcode-maker
Collection
One of 17 skills cataloged from this repository
Category
Data668 skills

What QR Code Maker does

QR Code Maker generates QR code images from URLs, text, contact info, and WiFi credentials locally without uploading data. Use it to create scannable codes for sharing links, connecting to WiFi, or displaying information.

QR Code Maker is cataloged under Data on DirSkills. QR Code Maker comes from a repository tagged ai-assistant, china, chinese, claude-code and codex.

Documentation

README

二维码生成

帮用户把网址、文本、联系方式、WiFi 信息生成二维码图片,本地离线生成,不上传任何数据。

能力概述

  • 网址/文本二维码:任意内容转二维码 PNG
  • WiFi 二维码:扫码即连,免手输密码
  • 终端预览:直接在对话里用字符画展示二维码

操作方式

用 Bash 工具,Python 的 qrcode 库(轻量、纯本地):

python -c "import qrcode" 2>/dev/null || pip install -q "qrcode[pil]"

# 网址/文本 -> PNG
python - <<'PY'
import qrcode
qrcode.make("https://u-claw.org").save("qrcode.png")
print("已生成 -> qrcode.png")
PY

# WiFi 二维码(扫码自动连网)
python - <<'PY'
import qrcode
ssid, pwd, enc = "MyWiFi", "password123", "WPA"   # enc: WPA / WEP / nopass
data = f"WIFI:T:{enc};S:{ssid};P:{pwd};;"
qrcode.make(data).save("wifi-qr.png")
print("已生成 WiFi 二维码 -> wifi-qr.png")
PY

# 终端字符画预览(不存文件,直接看)
python - <<'PY'
import qrcode
q = qrcode.QRCode(); q.add_data("https://u-claw.org"); q.make()
q.print_ascii(invert=True)
PY

This is the opening of the README. Read the full README on GitHub.

Frequently asked about QR Code Maker

  • What else does dongsheng123132 publish alongside QR Code Maker?

    QR Code Maker is one of 17 skills that DirSkills catalogs from dongsheng123132/u-claw, the repository it ships in. Its siblings there include Bilibili Helper, China Search and China Translate. Each one is a separate skill with its own page in this directory, installs the same way QR Code Maker does, and is maintained by dongsheng123132 in that same repository. The rest of the collection is listed on the dongsheng123132/u-claw page.

  • How does QR Code Maker compare to other Data skills?

    QR Code Maker ranks #366 by stars among the 668 Data skills in this catalog. The most-starred ones next to it are Benchmark Methodology, Jupyter Notebook and Solana. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of QR Code Maker against them. Open each page to compare what they document and how they install.

More from dongsheng123132/u-claw

QR Code Maker is one of 17 skills cataloged on DirSkills from dongsheng123132/u-claw.

See all 17 skills
🎬
2w ago

Bilibili Helper

Bilibili Helper optimizes Bilibili video titles, descriptions, tags, covers, and partition selection to improve recommendations and engagement. Use it before posting a Bilibili video or to diagnose why an existing video is underperforming.
Writing
1.7K414
🔍
2w ago

China Search

China Search queries Baidu, Sogou, and Bing China using curl to retrieve search results when Google is unavailable or for Chinese-specific content. It is useful for finding Chinese internet information, WeChat articles, and content on domestic platforms.
Automation
1.7K414
🌐
2w ago

China Translate

China Translate provides Chinese-English translation and localization for technical documents, UI copy, and cultural adaptation. It helps avoid machine translation tone and maintains terminology consistency across projects.
Writing
1.7K414
🌤️
2w ago

China Weather

China Weather queries real-time weather and forecasts for Chinese cities via the wttr.in API, supporting Chinese city names and offering lunar dates and lifestyle advice. Use it to get current conditions or a 3-day forecast when planning travel or deciding what to wear.
Data
1.7K414
🤖
2w ago

DeepSeek API Assistant

DeepSeek API Assistant helps developers choose between deepseek-v4-flash and deepseek-v4-pro, write API call examples in Python, curl, and Node.js, estimate token costs, and troubleshoot common API errors.
AI Engineering
1.7K414
🎬
2w ago

Douyin Script

Douyin Script generates short video scripts for Douyin and Kuaishou platforms, focusing on hooks, structure, music suggestions, and hashtag strategies. Use it to create engaging scripts for short video content, improve retention, and choose appropriate hashtags.
Writing
1.7K414