Initial commit: Meeting Room v0.1.0

Multi-agent discussion framework:
- Custom/AutoGen/CrewAI backends
- Multi-provider API (role→model binding)
- Tools system (files, web, commands)
- Markdown scenarios with YAML frontmatter
- Workspace init (meeting-room init)
- Session save (--save)
This commit is contained in:
Hermes
2026-05-03 08:07:35 +00:00
commit 99cb5a499b
19 changed files with 1473 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "meeting-room"
version = "0.1.0"
description = "Multi-agent discussion framework — role-based AI agents debate problems and produce solutions"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"httpx>=0.27",
"pyyaml>=6.0",
]
[project.optional-dependencies]
autogen = ["autogen-agentchat", "autogen-ext"]
crewai = ["crewai"]
all = ["autogen-agentchat", "autogen-ext", "crewai"]
[project.scripts]
meeting-room = "meeting_room.cli:main"
[tool.setuptools.packages.find]
include = ["meeting_room*"]
[tool.setuptools.package-data]
meeting_room = ["config/*.yaml", "scenarios/*.md", "scenarios/*.yaml"]