bootspring go

One-command setup: detect, seed, generate, and initialize the build loop.

Overview

The go command runs the entire project setup workflow in a single command. It is the fastest way to go from zero to building.

Usage

Loading code block...

What go Does

  1. Detect -- Scans your project for stack and features (package.json, config files, etc.)
  2. Seed -- Creates context document templates in .bootspring/context/
  3. Merge -- Combines documents into SEED.md
  4. Generate -- Creates AI context files (CLAUDE.md, AGENTS.md, CODEX.md, GEMINI.md) and planning/
  5. Build init -- Initializes the build state from planning/TODO.md

Options

OptionDescription
--skip-detectSkip stack detection
--skip-seedSkip seed generation

With a Pitch

You can pass a project pitch as an argument. This uses AI to fill all context documents based on your description:

Loading code block...

Examples

Loading code block...
Loading code block...

After go completes, edit planning/TODO.md with your real tasks, then start building:

Loading code block...