Make sure the Docker daemon is running before you proceed.
Production (prebuilt images, fastest):
docker compose up
Development (builds from source, hot reload):
docker compose -f docker-compose.dev.yml up --build
Both start PostgreSQL, the Manager API, and the web UI.
3
Create an agent
Open http://localhost:3000 in your browser.Log in (if you have not configured an auth provider yet, press Login to skip). You land on the agent dashboard.Click Create to launch the 3-step wizard. Select your framework (LangGraph or ADK), configure framework-specific settings, then review and save.
The CLI provides an interactive TUI to configure and run a standalone agent without the Manager.
1
Install the engine
pip install idun-agent-engine
2
Launch the interactive setup
idun init
The TUI walks you through agent configuration: framework, memory, observability, guardrails, and MCP servers. When you finish, it saves the config and starts the agent server.
The graph_definition value follows the format path/to/file.py:variable_name. The variable must be an uncompiled LangGraph StateGraph. The engine compiles it with the configured checkpointer.