From db9a0d112f5c3d571a4c7ba0d50e9625f50ad8da Mon Sep 17 00:00:00 2001 From: David Gardner Date: Tue, 30 Jun 2026 13:53:31 -0700 Subject: [PATCH 1/2] 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/2] 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