Quickstart
This page gives you the shortest useful path. Use the CLI reference for detailed options.
Jumpspace is alpha software. Commands and metadata fields may change before a stable 1.0 release. Pin versions in CI and review changelogs before upgrading.
Path 1: New Repo Or Clean Setup
Section titled “Path 1: New Repo Or Clean Setup”npm install -D @jumpspace/clinpx @jumpspace/cli init --autonpx @jumpspace/cli add-skill --allnpx @jumpspace/cli intent listnpx @jumpspace/cli intent validate --jsonAdd a small intent for a decision code cannot explain:
---id: no-pre-launch-feature-flagsstatus: activescope: src/**/*.ts, src/**/*.tsx---
# Do not gate new code paths behind runtime feature flags
## DecisionWhile the app is pre-launch, new features ship without runtime feature-flaggates.
## WhyFeature flags add a second state dimension that the team does not need beforeexternal launch.
## Alternatives rejected- **Environment-variable gates.** They still create cleanup debt.Save it under documentation/intents/, then inspect it:
npx @jumpspace/cli intent listnpx @jumpspace/cli intent check --for src/app/page.tsxnpx @jumpspace/cli intent validate --jsonPath 2: Existing Repo Intent Memory
Section titled “Path 2: Existing Repo Intent Memory”Use this when the repo already has docs but no durable intent memory yet. Start with one decision that code cannot explain.
npx @jumpspace/cli init --autonpx @jumpspace/cli intent list --jsonnpx @jumpspace/cli intent check --for src/app/page.tsx --jsonnpx @jumpspace/cli intent validate --jsonWhen a branch adds intent files, compare against a base ref so the 0-3 new-intent guardrail can warn before review gets noisy:
npx @jumpspace/cli intent validate --since origin/main --jsonnpx @jumpspace/cli intent verify --since origin/main --jsonUse bootstrap propose, bootstrap validate, and bootstrap apply only when
you want the advanced task graph/workflow layer from existing Markdown docs.
Path 3: Agent Setup
Section titled “Path 3: Agent Setup”npx @jumpspace/cli add-skill --allnpx @jumpspace/cli intent check --for src/app/page.tsxnpx @jumpspace/cli intent validate --jsonThen ask your agent:
Read the repo's Jumpspace guidance, then use Jumpspace to understand theintent memory before changing code.intent check returns scoped decisions, not a hidden agent memory dump. Treat
matches as binding context to read before editing, and propose new intents only
for decisions code cannot explain.
Health Check
Section titled “Health Check”Run this whenever setup feels uncertain:
npx @jumpspace/cli intent validate --jsonnpx @jumpspace/cli release install-doctor --jsonIf the repo intentionally uses task blocks, also run:
npx @jumpspace/cli task doctor --jsonnpx @jumpspace/cli task audit --json