@@ -45,7 +45,7 @@ Edit `.env`:
4545``` bash
4646# Required
4747ANTHROPIC_API_KEY=sk-ant-...
48- AGENCY_TOKEN =your-secure-token
48+ SQUADHUB_TOKEN =your-secure-token
4949CONVEX_URL=https://your-deployment.convex.cloud
5050
5151# Optional
@@ -71,15 +71,15 @@ npx convex deploy
7171This script will:
7272
7373- Create ` .env ` from ` .env.example ` if missing
74- - Auto-generate a secure ` AGENCY_TOKEN `
74+ - Auto-generate a secure ` SQUADHUB_TOKEN `
7575- Validate all required environment variables
7676- Build necessary packages
7777- Start the Docker containers
7878
7979** Development:**
8080
8181``` bash
82- # Start agency gateway only (use local web dev server)
82+ # Start squadhub gateway only (use local web dev server)
8383pnpm dev:docker
8484
8585# In another terminal, start web + Convex
@@ -88,7 +88,7 @@ pnpm dev
8888
8989The production stack starts:
9090
91- - ** agency ** : Gateway running all agents
91+ - ** squadhub ** : Gateway running all agents
9292- ** watcher** : Notification delivery + cron setup
9393- ** clawe** : Web dashboard at http://localhost:3000
9494
@@ -120,7 +120,7 @@ Schedule recurring tasks that automatically create inbox items:
120120┌─────────────────────────────────────────────────────────────┐
121121│ DOCKER COMPOSE │
122122├─────────────────┬─────────────────────┬─────────────────────┤
123- │ agency │ watcher │ clawe │
123+ │ squadhub │ watcher │ clawe │
124124│ │ │ │
125125│ Agent Gateway │ • Register agents │ Web Dashboard │
126126│ with 4 agents │ • Setup crons │ • Squad status │
@@ -151,10 +151,10 @@ clawe/
151151├── packages/
152152│ ├── backend/ # Convex schema & functions
153153│ ├── cli/ # `clawe` CLI for agents
154- │ ├── shared/ # Shared agency client
154+ │ ├── shared/ # Shared squadhub client
155155│ └── ui/ # UI components
156156└── docker/
157- └── agency /
157+ └── squadhub /
158158 ├── Dockerfile
159159 ├── entrypoint.sh
160160 ├── scripts/ # init-agents.sh
@@ -221,8 +221,8 @@ Each agent has an isolated workspace with:
221221
222222### Adding New Agents
223223
224- 1 . Create workspace template in ` docker/agency /templates/workspaces/{name}/ `
225- 2 . Add agent to ` docker/agency /templates/config.template.json `
224+ 1 . Create workspace template in ` docker/squadhub /templates/workspaces/{name}/ `
225+ 2 . Add agent to ` docker/squadhub /templates/config.template.json `
2262263 . Add agent to watcher's ` AGENTS ` array in ` apps/watcher/src/index.ts `
2272274 . Rebuild: ` docker compose build && docker compose up -d `
228228
@@ -252,13 +252,13 @@ pnpm install
252252# Terminal 1: Start Convex dev server
253253pnpm convex:dev
254254
255- # Terminal 2: Start agency gateway in Docker
255+ # Terminal 2: Start squadhub gateway in Docker
256256pnpm dev:docker
257257
258258# Terminal 3: Start web dashboard
259259pnpm dev:web
260260
261- # Or run everything together (Convex + web, but not agency )
261+ # Or run everything together (Convex + web, but not squadhub )
262262pnpm dev
263263```
264264
@@ -284,6 +284,6 @@ pnpm convex:deploy
284284| Variable | Required | Description |
285285| ------------------- | -------- | --------------------------------- |
286286| ` ANTHROPIC_API_KEY ` | Yes | Anthropic API key for Claude |
287- | ` AGENCY_TOKEN ` | Yes | Auth token for agency gateway |
287+ | ` SQUADHUB_TOKEN ` | Yes | Auth token for squadhub gateway |
288288| ` CONVEX_URL ` | Yes | Convex deployment URL |
289289| ` OPENAI_API_KEY ` | No | OpenAI key (for image generation) |
0 commit comments