Use when growisofs misbehaves on a particular drive/media combo and the user wants to fall back to k3b's GUI to burn one batch manually.
How this skill is triggered — by the user, by Claude, or both
Slash command
/batch-optical-archivist:k3b-handoffThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manual fallback. Stage one batch's files (or symlinks) into a temp folder and launch `k3b --datacd <path>` so the user can drive the burn through the GUI.
Manual fallback. Stage one batch's files (or symlinks) into a temp folder and launch k3b --datacd <path> so the user can drive the burn through the GUI.
growisofs repeatedly fails on a specific drive/media combination.symlink (default, fast, no extra disk use) or copy (slower, but safe across removable media).k3b is installed (command -v k3b). If not, instruct sudo apt install k3b and abort.$WORKSPACE/k3b-staging/disc-NN/.$WORKSPACE/batches/disc-NN/filelist-graftpoints.txt. For each archive_path=source_path:
symlink mode: ln -s <source_path> <staging>/<archive_path> (mkdir -p parents as needed).copy mode: cp --reflink=auto <source_path> <staging>/<archive_path>.k3b --datacd "$WORKSPACE/k3b-staging/disc-NN/" &. Print the PID.$WORKSPACE/k3b-staging/disc-NN/ populated.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin batch-optical-archivist