The standalone ships a Next.js UI bundled into the wheel. There are three levels of customization.Documentation Index
Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt
Use this file to discover all available pages before exploring further.
Level 1 — Theme
Open/admin/settings/. Change the app name, greeting, layout (branded / minimal / inspector), color palette (light + dark), radius, font, and starter prompts. Save, and the change applies immediately to all clients.
The theme is persisted in the theme table alongside the rest of the admin state.
Level 2 — Replace the chat UI entirely
The static UI is mounted from a directory. Override it viaIDUN_UI_DIR:
- Be a static export (HTML + JS + CSS).
- Call the standalone’s REST endpoints — auth at
/admin/api/v1/auth/login, agent run at/agent/run, etc. - Optionally read
/runtime-config.jsfor theme + auth mode.
services/idun_agent_standalone_ui directory; fork it.
Level 3 — Headless
Mount no UI at all (pointIDUN_UI_DIR at an empty directory or omit the bundled UI from your image). The admin REST surface and /agent/run remain available for your own frontend.
Next steps
CLI reference
Every
idun command, the flags it accepts, and what it does.Deploy to Cloud Run
Run the standalone on Google Cloud Run with a managed container.
Authentication
Configure admin-panel auth for
/admin/*.