Welcome
Jumpspace is repo-local intent memory for AI coding agents.
It turns source-controlled Markdown into durable decisions, rationale, rejected alternatives, and scoped path checks that agents can read before editing code.
The First Win
Section titled “The First Win”The first win is not a perfect knowledge graph. The first win is giving an agent a grounded way to answer:
- Which decisions apply to the files I am about to edit?
- Why did the team choose this direction?
- Which tempting alternatives were already rejected?
- Should this branch add one durable intent, or is the code enough?
- What can the next agent learn without relying on chat history?
Who It Is For
Section titled “Who It Is For”Use Jumpspace when:
- your team uses AI coding agents across sessions or branches
- product or architecture intent is easy to lose between sessions
- issue trackers and commits do not explain why decisions were made
- agents keep rediscovering rejected alternatives
- you want repo-local state instead of hosted memory
Skip it for tiny throwaway repos where a README and grep are enough.
What To Run First
Section titled “What To Run First”For a new or clean repo:
npm install -D @jumpspace/clinpx @jumpspace/cli init --autonpx @jumpspace/cli add-skill --allnpx @jumpspace/cli intent listnpx @jumpspace/cli intent validate --jsonThen add one intent under documentation/intents/ for a decision code cannot
explain, and run:
npx @jumpspace/cli intent check --for src/app/page.tsxFor teams that also want source-backed task state, continue with the advanced bootstrap workflow.
For agent setup, go to Agent Setup.