CLI Reference

The Bootspring CLI provides 80 commands for managing your AI-assisted development workflow.

Installation

Loading code block...

Quick Reference

One-Command Setup

CommandDescription
bootspring goStart here -- detect + seed + generate + build init in one shot
bootspring auth loginAuthenticate (required first time)
bootspring init --for claudeRegister MCP for Claude Code (also: cursor, codex, gemini, zed, windsurf, opencode)

Build Loop (Daily Workflow)

CommandDescription
bootspring build nextStart the next task
bootspring build doneMark complete, auto-queue next
bootspring build statusView build progress
bootspring build taskShow current task details
bootspring build skipSkip current task
bootspring build planView the full plan
bootspring build pausePause the build loop
bootspring build resumeResume paused build
bootspring build sync --replaceReplace runtime queue from planning/TODO.md

Setup (Step-by-Step)

CommandDescription
bootspring initInitialize project (config + memory + stack detection)
bootspring hook installWire up assistant hooks (memory, stats, suggestions)
bootspring seed initCreate context document templates
bootspring seed goFull workflow: detect + seed + merge + generate + build init
bootspring seed mergeMerge context docs into SEED.md + agent files + planning/
bootspring seed from-codebaseDetect stack from existing code

Development

CommandDescription
bootspring agent run <name>Run a local agent
bootspring agent listList available agents
bootspring quality pre-commitRun quality checks
bootspring quality fullComprehensive quality audit

Hooks and Memory

CommandDescription
bootspring hook installWrite hook config + initialize memory
bootspring hook statusShow installed hooks
bootspring hook doctorValidate hook configs
bootspring memory summaryGit-based learning summary
bootspring memory recall <query>Search cross-session memory
bootspring memory save <note>Save a decision to memory

Observability

CommandDescription
bootspring observe statusCurrent session metrics
bootspring observe costsCost tracking and projections
bootspring observe intelligenceFull 12-module analysis
bootspring observe efficiencyEfficiency score (0-100 + grade)
bootspring observe on/off/quietToggle observer modes
bootspring session statusSession status and stats
bootspring session listList session snapshots
bootspring session healthSession intelligence health

Project Management

CommandDescription
bootspring project listList all projects
bootspring project create <name>Create a new project
bootspring project infoShow current project
bootspring switch <project>Switch project context

Diagnostics

CommandDescription
bootspring doctorMachine + install diagnostics
bootspring healthProject + 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 build
  • bootspring build done - Mark complete, auto-queue next
  • bootspring build status - View progress
  • bootspring build skip - Skip current task
  • bootspring build task - Show full details for the active task
  • bootspring build pause / bootspring build resume - Safe pause and continuation
  • bootspring build sync --replace - Rebuild runtime queue from planning/TODO.md
  • bootspring 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 init
  • bootspring 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 workflow
  • bootspring seed status - Check what's ready
  • bootspring 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 memory
  • bootspring hook status - Show installed hooks
  • bootspring hook doctor - Validate configs for drift
  • bootspring hook smoke - Dry-run handlers locally
  • bootspring hook uninstall - Remove hooks
  • bootspring hook profile - Manage hook profile

Agent Commands

Commands for working with expert agents:

  • bootspring agent list - List available agents
  • bootspring agent run <name> - Run a local agent
  • bootspring agent show <name> - Get agent details
  • bootspring agent invoke <name> - Invoke a hosted agent
  • bootspring agent search <query> - Search agents

Memory Commands

Commands for project memory:

  • bootspring memory summary - Git-based learning summary
  • bootspring memory search <query> - Search learnings by keyword
  • bootspring memory recall <query> - Search cross-session memory
  • bootspring memory save <note> - Save a decision/note
  • bootspring memory stats - Repository statistics

Observe Commands

Commands for session observability:

  • bootspring observe status - Current session metrics
  • bootspring observe costs - Cost tracking
  • bootspring observe intelligence - Full analysis
  • bootspring observe efficiency - Efficiency score
  • bootspring observe on/off/quiet - Toggle modes

Session Commands

Commands for session intelligence:

  • bootspring session status - Current session status
  • bootspring session list - List snapshots
  • bootspring session health - Health check
  • bootspring session clean - Remove old snapshots

Quality Commands

Commands for code quality:

  • bootspring quality pre-commit - Run pre-commit checks
  • bootspring quality pre-push - Run pre-push checks
  • bootspring quality full - Run all checks
  • bootspring quality quick - Quick type check only
  • bootspring quality analyze - Multi-agent quality analysis

Deploy Commands

Commands for deployment:

  • bootspring deploy validate - Pre-deployment checks
  • bootspring deploy run - Execute deployment
  • bootspring deploy status - Check deployment status
  • bootspring deploy rollback - Rollback to previous

Swarm Commands

Commands for multi-agent swarm intelligence:

  • bootspring swarm status - Swarm status
  • bootspring swarm topology - View agent topology
  • bootspring swarm memory search - Query vector memory

Global Options

These options work with most commands:

OptionDescription
--help, -hShow help for command
--version, -VShow version number
--jsonStructured JSON output

Environment Variables

VariableDescription
BOOTSPRING_API_KEYAPI key for authentication
BOOTSPRING_DEBUGEnable debug mode
BOOTSPRING_NO_TELEMETRYDisable telemetry

Exit Codes

CodeMeaning
0Success
1General error
2Invalid arguments
3Configuration error
4Authentication error
5Quality check failed

Getting Help

Loading code block...