Start Agent Work
Use jumpspace task work <id> when a task is ready for implementation.
1. Find The Task
Section titled “1. Find The Task”npx @jumpspace/cli task scannpx @jumpspace/cli task find invitation workflow --json --compact2. Review Readiness
Section titled “2. Review Readiness”npx @jumpspace/cli task ready --jsonnpx @jumpspace/cli task plan validate DOC-PROJECT-001 --jsonnpx @jumpspace/cli task next DOC-PROJECT-001 --jsonready lists approved dependency-unblocked tasks. next returns pending
unblocked plan steps.
3. Start From A Work Packet
Section titled “3. Start From A Work Packet”npx @jumpspace/cli task work DOC-PROJECT-001 --jsonThe packet is designed for agents. It includes:
- intent and source doc path
- linked code and tests
- acceptance criteria
- durable plan state
- next executable steps
- verification records
- mutation history
- guardrails
- schema names
Add drift context when a Git baseline is available:
npx @jumpspace/cli task work DOC-PROJECT-001 --since main --json4. Complete Steps With Evidence
Section titled “4. Complete Steps With Evidence”npx @jumpspace/cli task step complete DOC-PROJECT-001 design --evidence "Human approved the implementation plan."Jumpspace refuses to complete a blocked step or a step without evidence.
5. Hand Off
Section titled “5. Hand Off”npx @jumpspace/cli task handoff --task DOC-PROJECT-001 --jsonUse handoff before switching agents, pausing work, or opening a PR.