Agent Skills
Jumpspace is most useful when agents know to use it first, then fall back to code reading when needed.
Install Skills
Section titled “Install Skills”npx jumpspace add-skill --codexnpx jumpspace add-skill --claudenpx jumpspace add-skill --allThe installer is additive and non-destructive. It creates missing files or updates clearly marked Jumpspace-managed blocks. It should not overwrite user-authored guidance outside those markers.
What The Skill Tells Agents
Section titled “What The Skill Tells Agents”The generated guidance tells agents to:
- run Jumpspace discovery before broad repository reads
- treat
askas evidence, not authority - use JSON schemas before scripting against command output
- use
workfor approved implementation - use
nextfor plan steps - record step evidence
- use
verifyto earn verified state - run scan, audit, and doctor after metadata mutations
- fall back to
rgand direct code reads when Jumpspace evidence is missing
Useful Agent Commands
Section titled “Useful Agent Commands”npx jumpspace find "approval flow" --json --compactnpx jumpspace context DOC-EXAMPLE-001 --jsonnpx jumpspace work DOC-EXAMPLE-001 --jsonnpx jumpspace next DOC-EXAMPLE-001 --jsonnpx jumpspace handoff --task DOC-EXAMPLE-001 --jsonnpx jumpspace last --jsonnpx jumpspace history --jsonCheck The Active Install
Section titled “Check The Active Install”When an agent seems to be running an old CLI, run:
npx jumpspace release install-doctor --jsonThis reports the invoked binary, the first jumpspace found on PATH, package roots, versions, schema counts, workspace comparisons, stale-install warnings, and repair commands.
Human Pattern
Section titled “Human Pattern”For a small team, the ideal pattern is:
- The human writes or approves the task block.
- The agent uses Jumpspace to gather context.
- The human approves the plan.
- The agent implements the next step.
- Jumpspace records evidence and verification.
- CI checks drift before merge.