Use when the user wants to build a UDF/ISO9660 hybrid image for one batch before burning, so the same image can be reused across multiple disc copies.
How this skill is triggered — by the user, by Claude, or both
Slash command
/batch-optical-archivist:build-isoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Build a single ISO image for one planned batch using `xorriso`. UDF + Joliet + Rock Ridge for broad compatibility (Linux, macOS, Windows).
Build a single ISO image for one planned batch using xorriso. UDF + Joliet + Rock Ridge for broad compatibility (Linux, macOS, Windows).
burn-disc when burning more than one copy of the same batch (build once, burn many).01) or explicit graftpoints file.ARCHIVE-YYYYMMDD-NN. Must be uppercase, max 32 chars for UDF, max 16 for strict ISO9660 — xorriso will warn.$WORKSPACE/batches/disc-NN/filelist-graftpoints.txt.$WORKSPACE/iso/ exists.xorriso -as mkisofs \
-udf -r -J \
-V "ARCHIVE-$(date +%Y%m%d)-NN" \
-o "$WORKSPACE/iso/disc-NN.iso" \
-graft-points $(cat "$WORKSPACE/batches/disc-NN/filelist-graftpoints.txt")
For long graftpoints lists, pass via -path-list instead to avoid argv overflow.xorriso -indev disc-NN.iso -toc to confirm the image is readable.$WORKSPACE/iso/disc-NN.isoxorriso installed (apt install xorriso).npx claudepluginhub danielrosehill/claude-code-plugins --plugin batch-optical-archivistCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.