Skip to content

Handoff Between Agents

Agent chat history is not portable. Jumpspace handoff writes and summarizes repo-local implementation state so another agent can resume.

Run the checks that match the work:

Terminal window
npx @jumpspace/cli task scan
npx @jumpspace/cli task audit --json
npx @jumpspace/cli task doctor --json
npx @jumpspace/cli task plan validate DOC-PROJECT-001 --json
npx @jumpspace/cli task handoff --task DOC-PROJECT-001 --json

If a Git baseline exists:

Terminal window
npx @jumpspace/cli task ci --since main --json

Record durable state in the task block, not only in chat:

  • completed plan steps with evidence
  • changed status, except verified
  • verification records from jumpspace task verify
  • new or repaired code/test links
  • explicit gaps when evidence is missing
Terminal window
npx @jumpspace/cli task last --json
npx @jumpspace/cli task history --task DOC-PROJECT-001 --json

Use history when the next agent needs to know what Jumpspace changed during the session.

Use Jumpspace to resume this task. Start with handoff and work packets, inspect
linked files, and do not rely on prior chat history as the source of truth.

The next agent should then run:

Terminal window
npx @jumpspace/cli task handoff --task DOC-PROJECT-001 --json
npx @jumpspace/cli task work DOC-PROJECT-001 --json