qrgenid

qrgenid is a skill for Claude Code, Codex from wjxcom/wjx-ai-kit. It costs 60 tokens per session (1,451 once invoked), scanned A, original, MIT.

A Windows-only tool that reads an Excel workbook and creates batches of QR codes. Each QR code contains a URL, with its ID shown as text below it, and the results include an updated workbook and image files.

In plain words
What is it for?
Use it to turn rows in an .xlsx file into QR-code images, embed those images in a new workbook, and save the images and log in an output folder.
Why use it?
It removes the need to create QR codes and place them into a spreadsheet one by one. It also produces a processing log and checks for required Python packages before running.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to turn rows in an .xlsx file into QR-code images, embed those images in a new workbook, and save the images and log in an output folder.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wjxcom/wjx-ai-kit/qrgenid-skill
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add wjxcom/wjx-ai-kit --skill qrgenid-skill
Clone the repo
git clone --depth 1 https://github.com/wjxcom/wjx-ai-kit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for qrgenid

README.md
[![agentmods](https://agentmods.dev/badge/skills/wjxcom/wjx-ai-kit/qrgenid-skill/github.svg)](https://agentmods.dev/skills/wjxcom/wjx-ai-kit/qrgenid-skill)
Your own site
<a href="https://agentmods.dev/skills/wjxcom/wjx-ai-kit/qrgenid-skill"><img src="https://agentmods.dev/badge/skills/wjxcom/wjx-ai-kit/qrgenid-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for qrgenid

Your own site · 80×15
<a href="https://agentmods.dev/skills/wjxcom/wjx-ai-kit/qrgenid-skill"><img src="https://agentmods.dev/badge/skills/wjxcom/wjx-ai-kit/qrgenid-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,451 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.01451
Opus 5 $0.00030 $0.00726
Sonnet 5 $0.00012 $0.00290
Haiku 4.5 $0.00006 $0.00145

Measured 3d ago against content hash fedcd56ae4ba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

qrgenid scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

The scan reads SKILL.md. This mod also ships 10 executable files (scripts/__init__.py, scripts/__main__.py, scripts/cli.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

wjx-skills/qrgenid-skill/SKILL.md · 116 lines

How it starts

The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.

qrgenid

从 Excel 工作簿批量生成二维码:二维码本体只编码 URL,ID 作为黑色文字显示在二维码下方。最终产物三件套:

  • output.xlsx:二维码图片实际嵌入单元格(不是路径)
  • qrcodes/:PNG 文件目录
  • qrgenid.log:完整处理日志

本 skill 直接运行自带源码(scripts/ 目录),仅支持 Windows。

When to Use

用户提到以下任一意图都应触发,无论是否明确叫出 qrgenid 这个名字:

  • "Excel 生成二维码" / "xlsx 二维码" / "从表格做二维码"
  • "QR code batch" / "Excel to QR"
  • "批量二维码" / "给这表做二维码"

约定

  • SKILL.md 所在目录记为 <SKILL_DIR>,所有命令都在 <SKILL_DIR> 下执行。
  • 运行命令统一为:python -m scripts ...(源码在 <SKILL_DIR>/scripts/)。

Step 1: 运行前自检

运行:

python -m scripts --version
  • 输出 0.1.0 → 进入 Step 2。
  • ModuleNotFoundError(缺 Pillow / XlsxWriter / openpyxl / qrcode / xlrd 等)→ 按 references/install.md 给出一次性依赖补齐命令,然后停止,等用户装好后重试。
  • 其他启动错误 → 参考 references/troubleshooting.md

Step 2: 收集参数

需要 6 个参数:

参数 CLI 开关 必填 默认
输入 Excel 路径 --input
输出目录 --output-dir 输入文件所在目录
ID 列(字母或 1-based 列号) --id-column A
URL 列(字母或 1-based 列号) --url-column B
工作表名或序号(互斥) --sheet / --sheet-index 第一张表
二维码主体尺寸 --size 150(可选 150/256/512)
  • 用户已给全参数 → 直接进入 Step 3 的确认。
  • 参数不全 → 用你的文件读取能力读取 Excel 表头与样本行,手动确认 ID 列 / URL 列(表头含 "ID/编号/编码/序号" 倾向 ID,含 "URL/链接/网址/二维码" 倾向 URL;默认 A=ID、B=URL)。
  • 多张表时列出所有工作表名,默认选第一张。
  • 尺寸默认 150,除非用户明确说“高清/大尺寸”或给出数字。
  • 输出目录默认 = 输入文件所在目录,必须告知用户这个默认行为

Step 3: 覆盖风险确认(不可跳过)

执行前必须明确告知用户两项覆盖风险:

  1. output.xlsx 会被覆盖(程序先写临时文件、校验后替换,但正式文件仍被覆盖)
  2. qrcodes/ 根目录下的旧 .png 文件会被清空(子目录和其他文件保留)

等待用户明确确认后才调用命令。用户拒绝 → 停止,告知任务已取消。

Step 4: 执行

python -m scripts --input "<input-path>" --output-dir "<output-dir>" --id-column <col> --url-column <col> [--sheet <name> | --sheet-index <n>] --size <150|256|512>
  • 路径含空格或特殊字符时用引号。
  • 捕获 stdout(JSON)与 stderr(日志);stderr 仅在排障时读取,不主动展示给用户。

Step 5: 按退出码分支处理

解析 stdout 中的 JSON(字段语义详见 references/exit-codes.md)。

退出码 0(全成功,status=success)

报告:✅ 全部成功 N 张;output.xlsxqrcodes/qrgenid.log 的绝对路径。

退出码 1(部分失败/取消,status=partial_failure|cancelled)

Read the full file on GitHub · 116 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 116 lines · 60 tokens per session scan A fedcd56ae4ba

Subscribe to this mod's changes

qrgenid is a skill published in the GitHub repository wjxcom/wjx-ai-kit (18 stars, last pushed yesterday), licensed MIT. It adds 60 tokens to every session and 1,451 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-09.

Related

Other skills, from other repositories

officecli-financial-model

Use this skill when the user wants to build a financial model — 3-statement model, DCF valuation, LBO, SaaS unit economics, sensitivity / scenario analysis, debt schedule, or fundraising projections — in Excel. Trigger on: 'financial model', '3-statement model', 'P&L + BS + CF', 'DCF', 'WACC', 'NPV', 'terminal value'…

iOfficeAI/OfficeCLI · 222 tokens

officecli-xlsx

Use this skill any time a .xlsx file is involved -- as input, output, or both. This includes: creating spreadsheets, financial models, dashboards, or trackers; reading, parsing, or extracting data from any .xlsx file; editing, modifying, or updating existing workbooks; working with formulas, charts, pivot tables, or…

iOfficeAI/OfficeCLI · 119 tokens

officecli-data-dashboard

Use this skill to build a multi-element Excel dashboard — Dashboard sheet on open, multiple formula-driven KPI cards, multiple charts, sparklines, and conditional formatting — from CSV or tabular input. Trigger on: 'dashboard', 'KPI dashboard', 'analytics dashboard', 'executive dashboard', 'metrics dashboard', 'CSV to…

iOfficeAI/OfficeCLI · 157 tokens

officecli

Create, analyze, proofread, and modify Office documents (.docx, .xlsx, .pptx) using the officecli CLI tool. Use when the user wants to create, inspect, check formatting, find issues, add charts, or modify Office documents.

iOfficeAI/OfficeCLI · 56 tokens

gws-sheets

Google Sheets: Read and write spreadsheets.

googleworkspace/cli · 13 tokens

gws-sheets-append

Google Sheets: Append a row to a spreadsheet.

googleworkspace/cli · 17 tokens