Profiles
A profile is a named object that commands in an agent refer to instead of writing the details itself: an LLM, a prompt, a REST API, a database, or an MCP server. Profiles are edited in the GUI and reach every agent server before its next run.
- How profiles workCommands in an agent name profiles; profiles hold the details. An llm command says "profile": "gpt5_mini", and the LLM profile of that name holds the URL, th…
- LLM profilesAn LLM profile is one model at one vendor: how to reach the model and what the model costs. Agents name the profile in the llm command. To use another model,…
- Prompt profilesReusable system and user prompts that agents refer to by name in the prompt command. The same wording does not have to be repeated in every agent, and the wo…
- API profilesAn API profile is a REST server that agents call through the api command. The profile holds the server's base URL, the headers sent on every call, and the co…
- Database profilesA database profile is a connection that agents query through the db command. The profile holds the connection string and the pool settings for that connection.
- MCP serversAn MCP server is a tool provider that agents use through the llm command's mcp field. The server's tools are listed from the server itself and offered to the…

