Getting Started

Installation

Multiple ways to install and configure Jetpack.

Option 1: Install from npm (Recommended)

# Install globally
npm install -g @jetpack/cli

# Use from anywhere
jetpack start --agents 3

Option 2: Build from Source

# Clone the repository
git clone https://github.com/agent-jetpack/jetpack-cloud.git
cd jetpack-cloud

# Install dependencies
pnpm install

# Build all packages
pnpm build

# Run via pnpm
pnpm jetpack start --agents 3

Environment Variables

VariableRequiredDescription
ANTHROPIC_API_KEYFor ClaudeClaude API key for AgentHarness execution
OPENAI_API_KEYFor OpenAIOpenAI API key (embeddings for Memory System)
TURSO_DATABASE_URLFor TursoTurso cloud database URL (optional, enables sync)
TURSO_AUTH_TOKENFor TursoTurso authentication token (required with TURSO_DATABASE_URL)
JETPACK_WORK_DIRFor externalCritical: Points to target project directory
export ANTHROPIC_API_KEY=your_key       # for Claude agents
export OPENAI_API_KEY=your_key          # for memory embeddings
export TURSO_DATABASE_URL=libsql://...  # optional Turso sync
export TURSO_AUTH_TOKEN=your_token      # required with Turso URL
export JETPACK_WORK_DIR=/path           # target project directory

Note: JETPACK_WORK_DIR is essential when:

  • Running the web UI on a different project
  • Using the MCP server with Claude Code
  • Agents should work on an external codebase