An AI agent orchestrator that dispatches Claude Code agents to work on tasks in isolated Docker containers. User source code never leaves their network.
Your Cloud User Environment
┌───────────────────────────┐ ┌───────────────────────────┐
│ Postgres ◄─► API Server │◄─ HTTPS ─│ Worker │
│ ◄─► Web UI │ │ └─► Agent containers │
└───────────────────────────┘ └───────────────────────────┘
- You create a task in the web UI with a description and target repository
- A worker (running in the user's environment) long-polls and claims the task
- The worker spawns an isolated Docker container running Claude Code
- The agent makes code changes, commits, and opens a pull request
- Logs stream back in real-time and PR status is monitored automatically
- If CI fails, the task is automatically retried with failure context
curl -fsSL https://raw.githubusercontent.com/joshjon/verve/main/scripts/install.sh | shOr install a specific version:
curl -fsSL https://raw.githubusercontent.com/joshjon/verve/main/scripts/install.sh | sh -s 0.1.0By default this installs to ~/.local/bin/verve. Set INSTALL_DIR to override:
curl -fsSL https://raw.githubusercontent.com/joshjon/verve/main/scripts/install.sh | INSTALL_DIR=/usr/local/bin sh- Docker
- Anthropic API Key (or Claude Code OAuth token)
make build-agent # Build the agent Docker image
ANTHROPIC_API_KEY=sk-... verveThis starts the API server and worker together, with the UI at http://localhost:7400.
Open the dashboard, connect a GitHub repo, and create your first task.
For production deployments with PostgreSQL:
cp .env.example .env # Fill in your keys
make up # Start PostgreSQL, API server, and workermake logs # Tail container logs
make down # Stop everythingThe base agent image includes Node.js and common tools. If your project needs additional dependencies (Go, Python, Rust, etc.), create a custom Dockerfile:
FROM ghcr.io/joshjon/verve:base
USER root
COPY --from=golang:1.25-alpine /usr/local/go /usr/local/go
ENV PATH="/usr/local/go/bin:${PATH}"
USER agentSee agent/examples/ for more examples.
- Go — API server and worker
- SvelteKit — Web UI
- PostgreSQL / SQLite — Database (Postgres for production, SQLite in-memory for dev)
- Docker — Agent container isolation
- Claude Code — AI coding agent