plugins/handoff/skills/load/SKILL.md
Load the most recent task handoff file from the shared network drive. This skill should be used when the user runs /handoff:load.
npx skillsauth add l3digitalnet/claude-code-plugins loadInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Read a handoff file from /mnt/share/instructions/ to resume work started on another machine.
If a filename argument was provided, read that file directly from /mnt/share/instructions/.
If no argument was provided, find the most recent handoff file:
bash ${CLAUDE_PLUGIN_ROOT}/scripts/find-latest-handoff.sh
If found is false, report that no handoff files were found and stop. If found is true, use the path field to read the full file.
Read the full handoff file. Then present a compact summary:
Loaded: /mnt/share/instructions/<filename>
Task: [task title from the file]
From: [machine] at [timestamp]
Next steps: [count] items
Then display the Next Steps section in full — that's the actionable part.
After presenting, ask if the user wants to proceed with the next steps. The handoff file contains enough context to begin work immediately.
development
Use when you're stuck or missing current information mid-task - the same command/API/approach failed twice, an error looks like a changed or deprecated API, or you need the current version of something, a fact from after your training cutoff, or to verify something you cannot confirm from the code in context. Starts with a cheap inline lookup and only escalates to a full research sweep if that fails. Do not use for routine pre-emptive checks before ordinary library work - for deliberate research, use /qdev:research.
documentation
Update Outline wiki documentation with implementation-level details from the current session by dispatching the up-docs-propagate-wiki sub-agent. This skill should be used when the user runs /up-docs:wiki.
documentation
Update repository documentation (README.md, docs/, CLAUDE.md) based on session changes by dispatching the up-docs-propagate-repo sub-agent. This skill should be used when the user runs /up-docs:repo.
documentation
Update Notion pages with strategic and organizational context from the current session by dispatching the up-docs-propagate-notion sub-agent. This skill should be used when the user runs /up-docs:notion.