TURBINEDOCUMENTATION

GETTING STARTED

Install Turbine and start orchestrating your multi-agent AI systems in minutes.

§ PREREQUISITES

  • Node.js 18.0 or higher
  • npm or yarn package manager
  • At least one AI provider account (Claude, Codex, or Gemini)

§ INSTALLATION

Install Turbine globally using npm:

npm install -g @turbine/cli

Or using yarn:

yarn global add @turbine/cli

Verify installation:

turbine --version

§ INITIALIZATION

Navigate to your project directory and initialize Turbine:

cd your-project
turbine init

This creates a turbine.config.json file with default settings.

§ PROVIDER SETUP

Configure your AI providers by adding API keys:

turbine config set claude.apiKey YOUR_CLAUDE_KEY
turbine config set codex.apiKey YOUR_CODEX_KEY
turbine config set gemini.apiKey YOUR_GEMINI_KEY

API keys are stored securely in your system keychain.

§ FIRST COMMANDS

Check system status:

turbine status

Start live monitoring:

turbine monitor --live

View cost analytics:

turbine cost --period 7d

Launch the web dashboard:

turbine dashboard

§ NEXT STEPS