Backend configuration¶
About this page
This documents a stack generated from soliplex-template. A generated
project ships its own copy of this page without this note.
The backend's behavior is driven by the files under backend/environment/,
bind-mounted into the container at /environment. Because the backend runs
with --reload=config, edits here take effect without a rebuild.
Layout¶
installation.yaml— the top-level install config: agents, secrets, env vars, room list, skills, DB URIs, paths. Start here.rooms/<name>/room_config.yaml— per-room agent prompts, tools, and skills.skills/<name>/— filesystem skills discovered viafilesystem_skills_paths.logging.yaml,haiku.rag.yaml— logging and RAG configuration.
installation.yaml is heavily commented with pointers to the
Soliplex config docs. Those
comments describe defaults — so a section being empty or absent is not the
same as being unconfigured.
Two sources of truth to remember
room_pathsininstallation.yamllists the directories rooms load from. It points at./rooms, so everyrooms/<name>/room_config.yamlis loaded; to leave a room out, remove its directory or replace./roomswith an explicit list.- A filesystem skill must be both present under a
filesystem_skills_pathsdirectory and declared inskill_configsto be enabled.
Sandbox (code execution for agents)¶
backend/sandbox/environments/<name>/pyproject.toml— each subdirectory is auvproject. The backend Dockerfile runsuv sync --frozenon each at build time, so adding or changing one requiresdocker compose build backend.backend/sandbox/workdirs/— per-run working directories created by agents at runtime (gitignored).
Dependencies needed by agent-executed sandbox code belong in the relevant sandbox environment, not in the backend image's top-level dependency list (see Backend image & dependencies).