---
created: 2026-03-12
tags: [project, active]
related: ["Fleet Map (deprecated 2026-04-29)", "[[03-Projects/Growth Engine]]"]
---

# Control Centre

**URL:** cc.rateright.com.au
**Repo:** `control-centre/` in rateright-growth-deploy
**Stack:** React 19 + Vite 7 + TailwindCSS 4 + Supabase

## What It Is
Config-driven dashboard for managing the AI agent fleet. 8 pages, dark theme, mission control aesthetic.

## Pages
1. **Command Centre** — Fleet overview (home)
2. **Tasks** — Task management
3. **Council** — Multi-agent coordination (fan-out/consolidation)
4. **Projects** — Project tracking
5. **Calendar** — Schedule view
6. **Memories** — Agent memory browser
7. **Documents** — Doc management
8. **The Office** — Virtual office

## Key Files
- `control-centre/fleet.config.js` — THE config file (agents, models, branding, nav)
- `control-centre/src/lib/fleet.js` — Read-only fleet helpers
- `control-centre/src/lib/api.js` — API client
- `src/services/agentBridge.js` — Backend agent communication
- `src/services/councilRouter.js` — Multi-agent fan-out engine
- `src/routes/fleet.js` — Fleet API endpoints

## Architecture Rules
- NEVER add light theme (dark only by design)
- NEVER hardcode agent names/ports (read from fleet.config.js)
- Config-driven: edit fleet.config.js, no code changes needed
