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.
npx agentmods add skills/mindboard/indesign-extendscript-plugins/idmlnpx skills add mindboard/indesign-extendscript-plugins --skill idmlgit clone --depth 1 https://github.com/mindboard/indesign-extendscript-pluginsWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00081 | $0.02590 |
| Opus 5 | $0.00041 | $0.01295 |
| Sonnet 5 | $0.00016 | $0.00518 |
| Haiku 4.5 | $0.00008 | $0.00259 |
Grade A, and why
idml 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 2d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 190 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IDML Unpack / Pack (XML editing)
An IDML (.idml) file is Adobe InDesign Markup — a ZIP package of XML
files (an OCF container, the same family as EPUB). Unpacking it gives you a tree
of human- and AI-readable XML you can read, diff, and edit directly, then pack
back into a valid .idml that InDesign opens.
This skill uses Python 3 (stdlib only) — no pip install, nothing to set
up. Python is the right tool here: it's already on macOS, and editing the
unpacked XML is exactly what Claude is good at. The companion script is
scripts/idmlutil.py.
Sibling skill:
indddrives a live InDesign app via ExtendScript. Useidml(this one) when you want to manipulate the file's XML offline without launching InDesign; useinddwhen you need InDesign to render, export (PDF/PNG), or convert IDML↔INDD.
The one rule that makes an IDML valid
A plain zip -r out.idml folder/ produces a file InDesign rejects. The
package must contain a mimetype entry that is:
- the first entry in the archive, and
- STORED (uncompressed), holding exactly
application/vnd.adobe.indesign-idml-package.
InDesign reads those magic bytes from a fixed offset, so order and compression
matter. idmlutil.py pack does this for you (every other file is DEFLATED).
Always repack with this script, never with a generic zip command.
How to run it
# Extract an .idml into a folder of XML (default folder: ./workspace)
python3 skills/idml/scripts/idmlutil.py unpack /abs/path/in.idml /abs/path/out_dir
# Repack a folder back into a valid .idml (default folder: ./workspace)
python3 skills/idml/scripts/idmlutil.py pack /abs/path/out.idml /abs/path/src_dir
- The 3rd argument (folder) is optional and defaults to
./workspace. unpackclears the destination folder first, so each extraction is clean.packreads themimetypefrom the source folder if present, otherwise writes the standard constant; it skips.DS_Store.- Prefer absolute paths.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 2d ago First seen · 190 lines · 81 tokens per session scan A 3a8d5998ec70
idml is a skill published in the GitHub repository mindboard/indesign-extendscript-plugins (4 stars, last pushed 10d ago), licensed MIT. It adds 81 tokens to every session and 2,590 once invoked, about $0.0004 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-08-31.
Other skills, from other repositories
indesign-cli
当用户需要制作或编辑固定分页 HTML、InDesign 演示文稿、建筑汇报或排版文档,转换 HTML 与 InDesign,修改现有 INDD,或填充既有 InDesign 模板时使用。.
using-opencode-cli
当 Codex 需要调用 OpenCode CLI 做本地 Agent 任务时使用,包括代码审核、结构分析、方案规划、替代 Claude Code,以及需要持续利用 DeepSeek Pro 1M 长上下文的多轮项目线程。.
using-git-worktrees
当你开始需要与当前工作区隔离的功能开发,或在执行实施计划前使用;它会创建隔离的 git worktree,并进行目录选择与安全校验.
chatgpt-pro-review
当用户要求在 SA-AIAPP 项目中询问 ChatGPT/GPT Pro、让外部模型审核当前 GitHub 分支、做画布/前端/后端/架构二次审查时使用。.
writing-skills
当你要创建新技能、修改现有技能,或在部署前验证技能是否可用时使用.
requesting-code-review
在任务完成后、实现重大功能后或合并前使用,用来验证成果是否满足要求.