From db9a0d112f5c3d571a4c7ba0d50e9625f50ad8da Mon Sep 17 00:00:00 2001 From: David Gardner Date: Tue, 30 Jun 2026 13:53:31 -0700 Subject: [PATCH 1/3] Document placement of codex's --config flag Signed-off-by: David Gardner --- docs/nemo-relay-cli/codex.mdx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/nemo-relay-cli/codex.mdx b/docs/nemo-relay-cli/codex.mdx index 740bda6cd..3edfdc448 100644 --- a/docs/nemo-relay-cli/codex.mdx +++ b/docs/nemo-relay-cli/codex.mdx @@ -57,6 +57,18 @@ nemo-relay run \ -- codex ``` + +Place Codex `--config` overrides before the `exec` subcommand: + +```bash +nemo-relay codex -- --config 'model_reasoning_effort="high"' exec "Summarize this repository." +``` + +Codex accepts overrides before or after `exec`, but treats overrides after +`exec` as command-specific and gives them higher precedence than root-level +overrides which can conflict with `--config` settings provided by Relay. + + ## Persistent Plugin Install Install the persistent plugin for Codex. It should start normally and load From 7678bc97f0e7c746e3c19f71d214a8483c135539 Mon Sep 17 00:00:00 2001 From: David Gardner Date: Tue, 30 Jun 2026 13:53:53 -0700 Subject: [PATCH 2/3] Ignore .nemo-relay settings dir Signed-off-by: David Gardner --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index fd25f1b8e..363f58425 100644 --- a/.gitignore +++ b/.gitignore @@ -99,3 +99,6 @@ crates/wasm/coverage/ # VSCode /.vscode + +# Relay +/.nemo-relay From 64f57dcaf67819d18f08650bb95ce781087e13ac Mon Sep 17 00:00:00 2001 From: Will Killian <2007799+willkill07@users.noreply.github.com> Date: Thu, 2 Jul 2026 17:13:58 -0400 Subject: [PATCH 3/3] Update codex.mdx Co-authored-by: lvojtku Signed-off-by: Will Killian <2007799+willkill07@users.noreply.github.com> --- docs/nemo-relay-cli/codex.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/nemo-relay-cli/codex.mdx b/docs/nemo-relay-cli/codex.mdx index 3edfdc448..2446e1ff4 100644 --- a/docs/nemo-relay-cli/codex.mdx +++ b/docs/nemo-relay-cli/codex.mdx @@ -66,7 +66,7 @@ nemo-relay codex -- --config 'model_reasoning_effort="high"' exec "Summarize thi Codex accepts overrides before or after `exec`, but treats overrides after `exec` as command-specific and gives them higher precedence than root-level -overrides which can conflict with `--config` settings provided by Relay. +overrides, which can conflict with `--config` settings that Relay provides. ## Persistent Plugin Install