Run the full AgentKit ecosystem with a single command
Docker Compose setup for AgentLens, AgentGate, Lore, and Mesh.
git clone https://github.com/agentkitai/agentkit-stack.git
cd agentkit-stack
cp .env.example .env # then edit .env and set real secrets
docker compose up -dAll four services pull pinned images from Docker Hub. Secrets are read from
.env (gitignored); docker compose up will refuse to start until the
required keys in .env are set.
| Service | Port | Image | Description |
|---|---|---|---|
| AgentLens | 3000 | pazgaz/agentlens:0.12.2 |
Observability dashboard |
| AgentGate | 3002 | pazgaz/agentgate:0.12.1 |
Approval gateway |
| Lore | 8765 | pazgaz/lore:1.1.1 |
Semantic memory (pgvector) |
| Lore DB | — | pgvector/pgvector:pg16 |
PostgreSQL + pgvector |
| Mesh | 8766 | pazgaz/agentkit-mesh:1.3.0 |
Agent discovery registry |
docker pull pazgaz/agentlens:0.12.2 # dashboard + server
docker pull pazgaz/agentgate:0.12.1 # approval gateway
docker pull pazgaz/lore:1.1.1 # semantic memory
docker pull pazgaz/agentkit-mesh:1.3.0 # agent discovery registrycurl http://localhost:3000/api/health/overview # AgentLens
curl http://localhost:3002/health # AgentGate
curl http://localhost:8765/health # Lore
curl http://localhost:8766/health # MeshBy default every service pulls a pinned image from Docker Hub. To build any of
them from a local checkout instead, uncomment that service's build: lines in
docker-compose.yml (each expects the sibling repo checked out alongside this
one), then:
docker compose up -d --builddocker compose down # stop containers
docker compose down -v # stop + remove volumes (data loss!)Contributions are welcome! Fork the repo, make your changes, and open a pull request. For major changes, open an issue first to discuss what you'd like to change.
| Project | Description | |
|---|---|---|
| AgentLens | Observability & audit trail for AI agents | |
| Lore | Cross-agent memory and lesson sharing | |
| AgentGate | Human-in-the-loop approval gateway | |
| FormBridge | Agent-human mixed-mode forms | |
| AgentEval | Testing & evaluation framework | |
| agentkit-mesh | Agent discovery & delegation | |
| agentkit-cli | Unified CLI orchestrator | |
| agentkit-guardrails | Reactive policy guardrails | |
| agentkit-stack | Full-stack Docker Compose setup | ⬅️ you are here |