<!-- This is borrowed and inspired from Armin(https://github.com/mitsuhiko/agent-commands/blob/main/common/pickup.md) -->
Resumes a previous handoff session from a file in `.claude/handoffs`. Use this when you need to continue work that was previously paused or handed off to another agent.
/plugin marketplace add priyanshujain/claude-coding/plugin install claude-coding@priyanshujainResumes work from a previous handoff session which are stored in .claude/handoffs.
The handoff folder might not exist if there are none.
Requested handoff file: $ARGUMENTS
If no handoff file was provided, list them all. Eg:
echo "## Available Handoffs"
echo ""
for file in .claude/handoffs/*.md; do
if [ -f "$file" ]; then
title=$(grep -m 1 "^# " "$file" | sed 's/^# //')
basename=$(basename "$file")
echo "* \`$basename\`: $title"
fi
done
echo ""
echo "To pickup a handoff, use: /pickup <filename>"
If a handoff file was provided locate it in .claude/handoffs and read it. Note that this file might be misspelled or the user might have only partially listed it. If there are multiple matches, ask the user which one they want to continue with. The file contains the instructions for how you should continue.