Skip to content
Discord GitHub

Quick Start

Get up and running with Capsule Agents in just a few minutes using Docker.

  • Docker installed on your system.

Create a .env file with your AI provider API key. You need at least one provider key:

# Choose at least one provider
OPENAI_API_KEY=sk-your-openai-key
ANTHROPIC_API_KEY=sk-ant-your-anthropic-key
GOOGLE_GENERATIVE_AI_API_KEY=your-google-key
# Recommended: Basic auth for the editor + API
ADMIN_PASSWORD=your-secure-password
Terminal window
docker run \
--env-file .env \
-e AGENT_URL=http://localhost:8080 \
-p 8080:9000 \
-it brycewcole/capsule-agents:latest

Once the container starts, you can access:

That’s it! Your agent is now running and ready to use.

  1. Open http://localhost:8080/editor and log in as admin
  2. Modify your agent’s:
    • Name and description
    • AI model and parameters
    • Built-in tools (exec, file operations, memory)
    • System prompts
  3. Click “Save” to apply changes