Initialize all installed Cloud Atlas AI tools with recommended defaults. Handles binary installation automatically.
Initializes all Cloud Atlas AI tools with recommended defaults and handles binary installation.
/plugin marketplace add cloud-atlas-ai/bottle/plugin install cloud-atlas-ai-bottle@cloud-atlas-ai/bottleInitialize all installed Cloud Atlas AI tools with recommended defaults. Handles binary installation automatically.
For each tool (ba, wm, sg), check if binary exists:
If binary missing:
Detect available package managers:
command -v brewcommand -v cargo OR test -f ~/.cargo/bin/cargoOffer installation:
If Homebrew available (preferred for macOS):
brew install cloud-atlas-ai/ba/ba
brew install cloud-atlas-ai/wm/wm
brew install cloud-atlas-ai/superego/superego
If Cargo available:
cargo install ba
cargo install working-memory # (published as 'working-memory', provides 'wm' binary)
cargo install superego
If neither available, offer to install a package manager:
Install Homebrew (macOS/Linux):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Install Rust (cross-platform):
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
After installation, verify binaries are available before proceeding
Once binaries are available, initialize each:
ba:
.ba/ doesn't exist, run: ba init.ba/ directory and initial configurationsuperego:
.superego/ doesn't exist, run: sg init.superego/ directory and sets up metacognitive monitoringwm:
.wm/ doesn't exist, run: wm init.wm/ directory and enables working memory captureAfter individual inits complete:
Set superego to pull mode (recommended):
.superego/config.yaml existsalways, change it to pullsed -i.bak 's/^mode: always/mode: pull/' .superego/config.yaml && rm .superego/config.yaml.bakCreate AGENTS.md with guidance for all initialized tools:
Tell user:
✓ Bottle initialization complete
Initialized:
• ba - Task tracking ready
• superego - Metacognitive advisor active (pull mode)
• wm - Working memory enabled
Configuration:
• superego mode: pull (recommended)
• AGENTS.md: Updated with tool guidance
Quick start:
ba create "Your first task" -t task
ba ready
ba claim <id> --session $SESSION_ID
Tools work together:
• ba tracks your work
• superego reviews before commits (/superego:review)
• wm captures learnings automatically
Run each tool's init command in sequence. Apply recommended defaults after inits complete. Focus on orchestration, not reimplementation.