Pickup

Pick up work from the most recent handoff document left in /tmp. Use after a /clear or in a fresh session to resume where a /handoff left off.

caneff Updated

File contents

Resume work from the most recent handoff document.

  1. Find it — newest handoff doc in /tmp:

    ls -t /tmp/*handoff*.md 2>/dev/null | head -1
    

    If the user passed an argument, treat it as a filename filter: ls -t /tmp/*<arg>*handoff*.md /tmp/*handoff*<arg>*.md 2>/dev/null | head -1.

  2. If nothing matches, say so and stop — do not grab an unrelated file from /tmp.

  3. State which file you found and its modification time so the user can confirm it's the right one, then read it.

  4. Follow it: continue the work it describes, invoking any skills its "suggested skills" section names. Reference the artifacts (specs, diffs, issues) it points at rather than re-deriving them.

caneff/agent-skills/tree/main/pickup commit 6b02d694ae

Frequently asked questions

npx skillmds@latest add caneff/pickup