43 lines
2.1 KiB
Markdown
43 lines
2.1 KiB
Markdown
---
|
|
title: meeting-room overview
|
|
type: overview
|
|
updated: 2026-05-04
|
|
---
|
|
|
|
# meeting-room — overview
|
|
|
|
Multi-agent discussion framework — an interactive workspace where AI agents debate problems and produce structured artifacts.
|
|
|
|
## What it does
|
|
|
|
Meeting-room runs multi-agent roundtable discussions with configurable participants, models, and tools. Each role can use a different LLM provider, enabling cross-model review and debate. The event-driven architecture decouples the engine from I/O — CLI subscribes to events for ANSI output, WebSocket/SSE streams them to browsers.
|
|
|
|
## Key components
|
|
|
|
- **DiscussionEngine** — event-driven core: orchestrates round-robin discussion, emits events instead of printing
|
|
- **APIClient** — class-based multi-provider client (OpenAI-compatible APIs)
|
|
- **ToolRegistry** — class-based, pure Python (Windows compatible, no find/grep)
|
|
- **EventEmitter** — synchronous pub/sub bus for decoupling engine from I/O
|
|
- **AsyncEventBridge** — bridges sync EventEmitter to asyncio consumers (WebSocket/SSE)
|
|
- **FastAPI server** — REST API + WebSocket + SSE for web UI
|
|
- **Pydantic v2 models** — typed config (DiscussionConfig, ProviderConfig, RoleConfig), messages, sessions
|
|
- **Scenarios** — Markdown + YAML frontmatter for defining discussion topics
|
|
|
|
## Built-in scenarios
|
|
|
|
- **Roundtable** — moderator/skeptic/idea_generator/analyst discuss a problem
|
|
- **Code Review** — defender/attacker/security/moderator cross-LLM code review
|
|
|
|
## Tech stack
|
|
|
|
- Python 3.11+, pydantic v2, httpx, pyyaml
|
|
- FastAPI + uvicorn + websockets (web server)
|
|
- Event-driven architecture (EventEmitter + AsyncEventBridge)
|
|
- OpenAI-compatible API (multi-provider: RouterAI, Ollama Cloud, OpenAI, Anthropic, DeepSeek, local Ollama)
|
|
|
|
## Roadmap
|
|
|
|
- [x] Phase 1: Core refactor — Pydantic models, EventEmitter, class-based APIClient/ToolRegistry, DiscussionEngine
|
|
- [x] Phase 2: Web server — FastAPI + WebSocket + SSE, REST API, HTML UI
|
|
- [ ] Phase 3: Interactivity — Boss role, CSO injection, Setup Wizard, BrainstormEngine
|
|
- [ ] Phase 4: Artifacts — LLM extraction to .tasks/.wiki, SessionArchive |