Getting Started
Your first lap with BoB. Stand up a project, then run the autonomous loop. Extracted from the handbook’s Quick Start and first-time-install sections — read top to bottom.
← docs home · the conceptual spine is the handbook.
2. Quick Start
Section titled “2. Quick Start”2A. Brand-new project
Section titled “2A. Brand-new project”cd ~/Sites/my-project # Project must be a git repo
cdi # Wire up .claude/ symlinkscdprov # Provision skills/commands/agents from manifestclaude # Start Claude Code
# Inside Claude:/vision # Living doc: why, who, where (docs/vision.md)/capability # First feature spec (GitHub Issue, label: cap)/requirement # Acceptance criteria (GitHub Issue, label: req)# Approve a requirement: add the `approved` label2B. Existing project
Section titled “2B. Existing project”cd ~/Sites/my-projectcdb # Sanity-check tooling statuscdprov --status # See what's provisionedclaudeInside Claude:
/what-next # Tells you the next sensible work item2C. Autonomous mode (warp-drive)
Section titled “2C. Autonomous mode (warp-drive)”claude -a3 -rdb # Level 3 + Telegram bridgeInside Claude:
/warp-drive # Picks up next approved requirement and goesPhone nearby. Decisions land in Telegram. /stop-warp-drive to abort cleanly.
2D. Parallel work clusters
Section titled “2D. Parallel work clusters”cdfork fork feat/a feat/b feat/c # 3 worktrees, 3 tmux windows, 3 warp-drivescdfork fork --from-issues 4 # Auto-pick 4 approved requirementscdfork status # See every active worktreecdfork drop feat/a # Tear down one cleanly3.1 First-time install on a machine
Section titled “3.1 First-time install on a machine”git clone git@github.com:paulirv/bigbrain.git ~/projects/bigbraincd ~/projects/bigbrain
scripts/bob-install.sh # Adds BoB shell wrapper + aliases to your shell rcsource ~/.zshrc # (or ~/.bashrc) — picks up wrapper + aliases
scripts/deploy.sh --first-run # Sync source → ~/.claude/ for the first timeWhat bob-install.sh adds to your shell rc:
claudeshell wrapper — intercepts-a1 / -a2 / -a3(automation level) and-rdb(Telegram), then exec’s the realclaudeCLI.- Aliases:
cdprov,cdr,cdfork.