Using With Agents
Jumpspace is built so you can ask an agent for outcomes instead of memorizing the CLI.
The CLI gives the agent a reliable spine: discover the task, gather grounded context, inspect or save the plan, get the next unblocked step, make changes, record evidence, verify, and hand off.
One-Time Setup
Section titled “One-Time Setup”Install the repo-local guidance once:
npx jumpspace add-skill --codexnpx jumpspace add-skill --claudeAfter that, Jumpspace should be part of the agent’s default repo workflow. You should not need to say “use Jumpspace” every time. The installed AGENTS.md, CLAUDE.md, or skill file tells the agent to start with Jumpspace for repo questions, feature work, branch review, bootstrap, and handoff.
You can still mention Jumpspace when you want to force the workflow, but normal requests should be outcome-focused.
Good Agent Requests
Section titled “Good Agent Requests”For orientation:
Explain how task approvals work in this repo. Give me evidence paths, task IDs, linked code/tests, and unanswered terms. Do not invent an answer.For a new repo:
Inspect this repo and propose the first task graph. Keep the graph small, cite source headings, and wait for approval before applying.For implementation:
Find the approved task, gather context, show me the plan, then execute the next unblocked step after I approve it.For branch review:
Review this branch for task-memory drift. Separate factual drift from recommendations.For handoff:
Summarize the task you just worked on, what is complete, what evidence was recorded, and what remains.What The Agent Should Do
Section titled “What The Agent Should Do”The agent can translate your request into this loop:
npx jumpspace find "task approval" --json --compactnpx jumpspace context PM-TASK-001 --jsonnpx jumpspace plan show PM-TASK-001 --jsonnpx jumpspace next PM-TASK-001 --jsonnpx jumpspace work PM-TASK-001 --jsonAfter coding:
npx jumpspace step complete PM-TASK-001 implementation --evidence "Implemented task approval states and tests."npx jumpspace verify PM-TASK-001 --check "npm test" --criteria AC-1 --jsonnpx jumpspace scannpx jumpspace audit --jsonIf the repo does not have Git available, verify may refuse to write a record because it cannot capture a commit SHA. That is good behavior. The agent should report the failed verification honestly instead of marking the task verified.
Codex Pattern
Section titled “Codex Pattern”Once jumpspace add-skill --codex has updated AGENTS.md, Codex should use Jumpspace without a special reminder. The managed block tells Codex to start with scan/find/context/related/audit, use work or next for approved implementation, record step evidence, and finish with scan/audit/handoff.
If Codex seems to skip the graph, ask it to check the installed AGENTS.md guidance and rerun the task from the Jumpspace packet.
Codex can still read files directly. Jumpspace is the starting map, not a blindfold.
Claude Code Pattern
Section titled “Claude Code Pattern”Once jumpspace add-skill --claude has updated CLAUDE.md and the Claude skill file, Claude Code should use Jumpspace before broad grep or file reads.
If Claude Code seems to skip the graph, ask it to check the installed Claude guidance. For bootstrap, the managed guidance should push it toward:
Run bootstrap discover/context/propose/validate. Show me the dry run before applying task blocks.What Humans Still Approve
Section titled “What Humans Still Approve”Agents can do most of the mechanical workflow, but humans should still approve:
- initial bootstrap proposals
- durable plans before large implementation
- ambiguous code/test links
- changes from
repair --apply - verification criteria that claim user-facing acceptance
The sweet spot is human judgment, agent execution.
When To Fall Back
Section titled “When To Fall Back”Ask the agent to fall back to normal repo reading when:
findreturns nothing relevantaskreports weak evidence- linked files are missing
- the task has gaps
- audit reports broken references
- the question is about code that has not been documented yet
The best agent behavior is transparent: start from Jumpspace by default, report the evidence, then read the code when the graph is not enough.