Synara drives the OpenAI Codex CLI as a local child process, giving you a full AI coding session inside the Synara workspace without any intermediary server. Codex is the default provider in Synara — when you create a new thread, it uses Codex unless you pick a different provider. Because Synara communicates with the Codex CLI over its JSON-RPC interface, the CLI must be installed on your machine and authorized with your OpenAI account before Synara can use it.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Emanuele-web04/synara/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- Codex CLI installed — see the official repository for installation instructions.
- Codex CLI authorized with a valid OpenAI API key or OAuth session (run
codexonce in your terminal to complete the login flow). - Minimum supported version:
0.37.0. Synara checks the installed version on startup and will warn you if it is too old.
Configuration
Codex is configured underproviders.codex in settings.json. All fields are optional — Synara applies sensible defaults when a field is absent.
Set to
false to disable the Codex provider entirely. Synara will skip Codex during startup discovery and will not allow new Codex threads.The command or full path used to launch the Codex CLI. Defaults to
"codex", which resolves via your PATH. Use an absolute path (e.g. /home/user/.local/bin/codex) if the binary is not on your PATH or if you need to pin to a specific installation.An optional override for the home directory Codex uses when it starts. When left empty Codex uses its default home resolution. Set this if you have multiple Codex configurations and need Synara to use a specific one — for example, a project-specific credentials directory.
A list of additional model slugs to show in the model picker alongside Synara’s built-in Codex model list. Each entry is a plain string (e.g.
"gpt-5.5-preview"). Useful for early-access or custom model endpoints.Model options
When you start or configure a Codex thread you can tune how the model reasons. These options are passed directly to the Codex CLI at session start.Controls how much reasoning the model applies before replying. Built-in values are
"low", "medium", "high", and "xhigh". Codex runtime discovery can expose early-access effort values outside this set; any non-empty string is accepted.Defaults per model:- GPT-5.5 —
"medium" - GPT-5.4, GPT-5.4 Mini, GPT-5.3 Codex, GPT-5.3 Codex Spark, GPT-5.2 Codex, GPT-5.2 —
"high"
When
true, instructs the Codex CLI to prefer lower-latency responses. Availability depends on the selected model.Built-in model roster
The following Codex models ship with Synara’s built-in model list. Additional models can be added viacustomModels.
| Slug | Name |
|---|---|
gpt-5.5 | GPT-5.5 |
gpt-5.4 | GPT-5.4 |
gpt-5.4-mini | GPT-5.4 Mini |
gpt-5.3-codex | GPT-5.3 Codex |
gpt-5.3-codex-spark | GPT-5.3 Codex Spark |
gpt-5.2-codex | GPT-5.2 Codex |
gpt-5.2 | GPT-5.2 |
gpt-5.5.