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.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin batch-optical-archivistThis skill uses the workspace's default tool permissions.
Build a single ISO image for one planned batch using `xorriso`. UDF + Joliet + Rock Ridge for broad compatibility (Linux, macOS, Windows).
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
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).