Resume work from a previous handoff
Resumes work from a previous handoff session stored in agent/handoffs/.
/plugin marketplace add MaxWolf-01/agents/plugin install mx@MaxWolf-01handoff-slugResumes work from a previous handoff session stored in agent/handoffs/.
Requested handoff: $ARGUMENTS
If no handoff was specified, list unconsumed ones:
echo "## Available Handoffs"
echo ""
grep -l "consumed: false" agent/handoffs/*.md 2>/dev/null | while read file; do
title=$(grep -m 1 "^# " "$file" | sed 's/^# //')
basename=$(basename "$file" .md)
echo "* \`$basename\`: $title"
done
echo ""
echo "To pickup: /pickup <name>"
If a handoff was specified:
agent/handoffs/Read the handoff file. It contains:
Before starting work:
[[task-name]])[[knowledge-file]])Briefly summarize:
Then ask the user to confirm before proceeding, or clarify if something seems off.
After loading successfully, update the handoff frontmatter:
consumed: true
This prevents it from showing in future /pickup listings.
/pickupPick up the next task to work on. Shows ready tasks, helps select one, and starts it with full context.
/pickupPick up the next task to work on. Shows ready tasks, helps select one, and starts it with full context.