Files
xtrm-agent/pyproject.toml
Kaloyan Danchev 378d599125 Initial implementation of xtrm-agent multi-agent system
Multi-agent AI automation system with shared message bus, specialized
roles (coder/researcher/reviewer), and deny-by-default security.

- Config system with Pydantic validation and YAML loading
- Async message bus with inter-agent delegation
- LLM providers: Anthropic (Claude) and LiteLLM (DeepSeek/Kimi/MiniMax)
- Tool system: registry, builtins (file/bash/web), approval engine, MCP client
- Agent engine with tool-calling loop and orchestrator for multi-agent management
- CLI channel (REPL) and Discord channel
- Docker + Dockge deployment config
- Typer CLI: chat, serve, status, agents commands

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 10:21:42 +02:00

28 lines
614 B
TOML

[project]
name = "xtrm-agent"
version = "0.1.0"
description = "Multi-agent AI automation system with shared bus and specialized roles"
requires-python = ">=3.12"
dependencies = [
"anthropic>=0.79.0",
"litellm>=1.60.0",
"discord.py>=2.6.0",
"mcp>=1.0.0",
"typer>=0.15.0",
"rich>=13.0.0",
"prompt-toolkit>=3.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"pyyaml>=6.0",
"httpx>=0.28.0",
"loguru>=0.7.0",
"json-repair>=0.30.0",
]
[project.scripts]
xtrm-agent = "xtrm_agent.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"