CLI Reference
The Bootspring CLI provides 80 commands for managing your AI-assisted development workflow.
Installation
Loading code block...
Quick Reference
One-Command Setup
| Command | Description |
|---|---|
bootspring go | Start here -- detect + seed + generate + build init in one shot |
bootspring auth login | Authenticate (required first time) |
bootspring init --for claude | Register MCP for Claude Code (also: cursor, codex, gemini, zed, windsurf, opencode) |
Build Loop (Daily Workflow)
| Command | Description |
|---|---|
bootspring build next | Start the next task |
bootspring build done | Mark complete, auto-queue next |
bootspring build status | View build progress |
bootspring build task | Show current task details |
bootspring build skip | Skip current task |
bootspring build plan | View the full plan |
bootspring build pause | Pause the build loop |
bootspring build resume | Resume paused build |
bootspring build sync --replace | Replace runtime queue from planning/TODO.md |
Setup (Step-by-Step)
| Command | Description |
|---|---|
bootspring init | Initialize project (config + memory + stack detection) |
bootspring hook install | Wire up assistant hooks (memory, stats, suggestions) |
bootspring seed init | Create context document templates |
bootspring seed go | Full workflow: detect + seed + merge + generate + build init |
bootspring seed merge | Merge context docs into SEED.md + agent files + planning/ |
bootspring seed from-codebase | Detect stack from existing code |
Development
| Command | Description |
|---|---|
bootspring agent run <name> | Run a local agent |
bootspring agent list | List available agents |
bootspring quality pre-commit | Run quality checks |
bootspring quality full | Comprehensive quality audit |
Hooks and Memory
| Command | Description |
|---|---|
bootspring hook install | Write hook config + initialize memory |
bootspring hook status | Show installed hooks |
bootspring hook doctor | Validate hook configs |
bootspring memory summary | Git-based learning summary |
bootspring memory recall <query> | Search cross-session memory |
bootspring memory save <note> | Save a decision to memory |
Observability
| Command | Description |
|---|---|
bootspring observe status | Current session metrics |
bootspring observe costs | Cost tracking and projections |
bootspring observe intelligence | Full 12-module analysis |
bootspring observe efficiency | Efficiency score (0-100 + grade) |
bootspring observe on/off/quiet | Toggle observer modes |
bootspring session status | Session status and stats |
bootspring session list | List session snapshots |
bootspring session health | Session intelligence health |
Project Management
| Command | Description |
|---|---|
bootspring project list | List all projects |
bootspring project create <name> | Create a new project |
bootspring project info | Show current project |
bootspring switch <project> | Switch project context |
Diagnostics
| Command | Description |
|---|---|
bootspring doctor | Machine + install diagnostics |
bootspring health | Project + auth + MCP + hooks check |
Command Categories
Build Commands
The primary workflow for building your project with AI assistants:
bootspring build next- Get next task and buildbootspring build done- Mark complete, auto-queue nextbootspring build status- View progressbootspring build skip- Skip current taskbootspring build task- Show full details for the active taskbootspring build pause/bootspring build resume- Safe pause and continuationbootspring build sync --replace- Rebuild runtime queue fromplanning/TODO.mdbootspring build plan- View the full plan
Works with Claude Code, Cursor, Codex, and any AI coding assistant.
Go Command
One-command setup from zero to building:
bootspring go- Full workflow: detect + seed + generate + build initbootspring go "your pitch"- Seed from a project description
Seed Commands
Commands for context creation and project setup (run before building):
bootspring seed init- Create context document templates in.bootspring/context/bootspring seed merge- Merge context docs into SEED.md + auto-generate agent files + planning/bootspring seed go- Full end-to-end workflowbootspring seed status- Check what's readybootspring seed from-codebase- Auto-detect stack from existing code
Initialization Commands
bootspring init- Initialize project (config + memory + stack detection)bootspring init --for <client>- Register MCP for a specific AI assistant
Hook Commands
Commands for managing assistant hooks:
bootspring hook install- Write hook config + init memorybootspring hook status- Show installed hooksbootspring hook doctor- Validate configs for driftbootspring hook smoke- Dry-run handlers locallybootspring hook uninstall- Remove hooksbootspring hook profile- Manage hook profile
Agent Commands
Commands for working with expert agents:
bootspring agent list- List available agentsbootspring agent run <name>- Run a local agentbootspring agent show <name>- Get agent detailsbootspring agent invoke <name>- Invoke a hosted agentbootspring agent search <query>- Search agents
Memory Commands
Commands for project memory:
bootspring memory summary- Git-based learning summarybootspring memory search <query>- Search learnings by keywordbootspring memory recall <query>- Search cross-session memorybootspring memory save <note>- Save a decision/notebootspring memory stats- Repository statistics
Observe Commands
Commands for session observability:
bootspring observe status- Current session metricsbootspring observe costs- Cost trackingbootspring observe intelligence- Full analysisbootspring observe efficiency- Efficiency scorebootspring observe on/off/quiet- Toggle modes
Session Commands
Commands for session intelligence:
bootspring session status- Current session statusbootspring session list- List snapshotsbootspring session health- Health checkbootspring session clean- Remove old snapshots
Quality Commands
Commands for code quality:
bootspring quality pre-commit- Run pre-commit checksbootspring quality pre-push- Run pre-push checksbootspring quality full- Run all checksbootspring quality quick- Quick type check onlybootspring quality analyze- Multi-agent quality analysis
Deploy Commands
Commands for deployment:
bootspring deploy validate- Pre-deployment checksbootspring deploy run- Execute deploymentbootspring deploy status- Check deployment statusbootspring deploy rollback- Rollback to previous
Swarm Commands
Commands for multi-agent swarm intelligence:
bootspring swarm status- Swarm statusbootspring swarm topology- View agent topologybootspring swarm memory search- Query vector memory
Global Options
These options work with most commands:
| Option | Description |
|---|---|
--help, -h | Show help for command |
--version, -V | Show version number |
--json | Structured JSON output |
Environment Variables
| Variable | Description |
|---|---|
BOOTSPRING_API_KEY | API key for authentication |
BOOTSPRING_DEBUG | Enable debug mode |
BOOTSPRING_NO_TELEMETRY | Disable telemetry |
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | General error |
| 2 | Invalid arguments |
| 3 | Configuration error |
| 4 | Authentication error |
| 5 | Quality check failed |
Getting Help
Loading code block...
Related
- Getting Started - Quick start guide
- Configuration - Full config reference
- Troubleshooting - Common issues