diff --git a/.env.example b/.env.example index 5ce5d79..4c7eed4 100644 --- a/.env.example +++ b/.env.example @@ -4,7 +4,7 @@ # Compose profile(s) the default `docker compose up` activates (#6): # minimal = agentlens + lore (+ lore-db) — observability + memory # governance = minimal + agentgate (approval gateway / guardrails) -# full = governance + mesh (everything) +# full = alias of governance (everything) # Override per-command: `docker compose --profile minimal up`. COMPOSE_PROFILES=full # diff --git a/README.md b/README.md index fd872b5..6e7a1d6 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
Run the full AgentKit ecosystem with a single command
- Docker Compose setup for AgentLens, AgentGate, Lore, and Mesh.
+ Docker Compose setup for AgentLens, AgentGate, and Lore.
@@ -43,7 +43,7 @@ Run only the slice you need with [Compose profiles](https://docs.docker.com/comp
|--------------|--------------------------------------------|-----|
| `minimal` | AgentLens, Lore (+ Lore DB) | Observability + memory |
| `governance` | `minimal` + AgentGate | Compliance: approval gateway / guardrails |
-| `full` | `governance` + Mesh | Everything (the default) |
+| `full` | alias of `governance` | Everything (the default) |
```bash
docker compose --profile minimal up -d # leanest
@@ -62,7 +62,6 @@ The default `docker compose up` activates `full` via `COMPOSE_PROFILES` in
| AgentGate | 3002 | [`ghcr.io/agentkitai/agentgate:latest`](https://github.com/orgs/agentkitai/packages/container/package/agentgate) | Approval gateway |
| Lore | 8765 | [`ghcr.io/agentkitai/lore:latest`](https://github.com/orgs/agentkitai/packages/container/package/lore) | Semantic memory (pgvector) |
| Lore DB | — | `pgvector/pgvector:pg16` | PostgreSQL + pgvector |
-| Mesh | 8766 | [`ghcr.io/agentkitai/agentkit-mesh:latest`](https://github.com/orgs/agentkitai/packages/container/package/agentkit-mesh) | Agent discovery registry |
## Images (GHCR)
@@ -70,7 +69,6 @@ The default `docker compose up` activates `full` via `COMPOSE_PROFILES` in
docker pull ghcr.io/agentkitai/agentlens:latest # dashboard + server
docker pull ghcr.io/agentkitai/agentgate:latest # approval gateway
docker pull ghcr.io/agentkitai/lore:latest # semantic memory
-docker pull ghcr.io/agentkitai/agentkit-mesh:latest # agent discovery registry
```
## Health Checks
@@ -79,7 +77,6 @@ docker pull ghcr.io/agentkitai/agentkit-mesh:latest # agent discovery registry
curl http://localhost:3000/api/health/overview # AgentLens
curl http://localhost:3002/health # AgentGate
curl http://localhost:8765/health # Lore
-curl http://localhost:8766/health # Mesh
```
## Rebuild from Source
diff --git a/docker-compose.yml b/docker-compose.yml
index 1b29dbf..c154b3b 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -6,8 +6,8 @@ services:
# dockerfile: Dockerfile
container_name: agentlens
# Profiles (#6): minimal = observability + memory; governance adds the
- # approval gateway; full adds the mesh. Select with COMPOSE_PROFILES (.env)
- # or `docker compose --profile