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/cli add-skill --codexnpx @jumpspace/cli add-skill --claudenpx @jumpspace/cli add-skill --allnpx @jumpspace/cli add-skill jumpspace-work --agent claudeThe 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. Named installs add the reference workflow skill plus the selected pipeline skill.
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
task askas evidence, not authority - use JSON schemas before scripting against command output
- use
task workfor approved implementation - use
task nextfor plan steps - record step evidence
- use
task verifyto earn verified state - run
task scan,task audit, andtask doctorafter metadata mutations - fall back to
rgand direct code reads when Jumpspace evidence is missing
Useful Agent Commands
Section titled “Useful Agent Commands”npx @jumpspace/cli task find "approval flow" --json --compactnpx @jumpspace/cli task context DOC-EXAMPLE-001 --jsonnpx @jumpspace/cli task work DOC-EXAMPLE-001 --jsonnpx @jumpspace/cli task next DOC-EXAMPLE-001 --jsonnpx @jumpspace/cli task handoff --task DOC-EXAMPLE-001 --jsonnpx @jumpspace/cli task last --jsonnpx @jumpspace/cli task history --jsonCheck The Active Install
Section titled “Check The Active Install”When an agent seems to be running an old CLI, run:
npx @jumpspace/cli 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.