A multi-agent collaboration framework where lightweight AI agents work together through structured coordination to accomplish complex software development tasks.
Pick one:
uvx autopoe # run without installing
uv tool install autopoe # install via uv
pip install autopoe # install via pipTo run from source, see Development.
- Bubblewrap (
bwrap) — required for agents to execute shell commands in a sandboxed environment. Install it before running Autopoe if you want agents to be able to run code.
On first run, configure your LLM provider via the Settings panel (gear icon). Four API types are supported — any compatible endpoint works:
- OpenAI-compatible — OpenRouter, Ollama, ModelScope, vLLM, LiteLLM, or any
/v1/chat/completionsendpoint - OpenAI Responses — OpenAI or compatible
/v1/responsesendpoints - Anthropic — any endpoint following the Anthropic Messages API
- Google Gemini — any endpoint following the Gemini
generateContentAPI
Settings are saved to settings.json and can be changed at runtime without restarting.
# Clone the repo
git clone https://github.com/ImFeH2/autopoe.git
cd autopoe
# Backend (hot reload)
uv sync
uv run fastapi dev app/main.py
# Frontend (hot reload, separate terminal)
cd frontend
pnpm install
pnpm dev