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>
25 lines
726 B
YAML
25 lines
726 B
YAML
services:
|
|
xtrm-agent:
|
|
build: .
|
|
container_name: xtrm-agent
|
|
restart: unless-stopped
|
|
environment:
|
|
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
|
|
- DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY}
|
|
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
|
|
- MINIMAX_API_KEY=${MINIMAX_API_KEY}
|
|
- DISCORD_BOT_TOKEN=${DISCORD_BOT_TOKEN}
|
|
volumes:
|
|
- ./config.yaml:/app/config.yaml:ro
|
|
- ./agents:/app/agents:ro
|
|
- /mnt/user/appdata/xtrm-agent/data:/app/data
|
|
networks:
|
|
- dockerproxy
|
|
labels:
|
|
net.unraid.docker.managed: dockerman
|
|
net.unraid.docker.icon: https://raw.githubusercontent.com/walkxcode/dashboard-icons/main/png/robot.png
|
|
|
|
networks:
|
|
dockerproxy:
|
|
external: true
|