Use when the user wants to confirm a freshly-burned disc actually matches the source — sha256-compares every file on the disc against the source manifest.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin batch-optical-archivistThis skill uses the workspace's default tool permissions.
Mount the just-burned disc read-only and verify every file's sha256 matches the source. Slow but conclusive — recommend running on the first copy of each batch only.
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.
Mount the just-burned disc read-only and verify every file's sha256 matches the source. Slow but conclusive — recommend running on the first copy of each batch only.
burn-disc completes, especially for the first copy of a batch.lsblk -nro NAME,TYPE | awk '$2=="rom"{print "/dev/"$1}' | head -1. Allow override.udisksctl mount -b <device> and capture the mountpoint from the output.mount -o ro,loop <iso> <mountpoint> (requires sudo) or udisksctl loop-setup -f <iso> then mount.$WORKSPACE/batches/disc-NN/filelist.txt (and graftpoints map for the on-disc path).sha256sum of the on-disc copy and the source file; record pass/fail and both hashes.$WORKSPACE/logs/disc-NN-verify.json with per-file results plus aggregate (passed, failed, missing).udisksctl unmount -b <device> (or umount for loop). Eject if physical.$WORKSPACE/logs/disc-NN-verify.json.