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 3Option 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 3Environment Variables
| Variable | Required | Description |
|---|---|---|
| ANTHROPIC_API_KEY | For Claude | Claude API key for AgentHarness execution |
| OPENAI_API_KEY | For OpenAI | OpenAI API key (embeddings for Memory System) |
| TURSO_DATABASE_URL | For Turso | Turso cloud database URL (optional, enables sync) |
| TURSO_AUTH_TOKEN | For Turso | Turso authentication token (required with TURSO_DATABASE_URL) |
| JETPACK_WORK_DIR | For external | Critical: 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 directoryNote: 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
