From ae421ce93b20a7dfbaf971a4a8e538e833852def Mon Sep 17 00:00:00 2001 From: Julian lechner Date: Fri, 11 Sep 2026 15:43:47 +0200 Subject: [PATCH] fix(codex): rename max_threads to max_concurrent_threads_per_session max_threads is a legacy alias; the current Codex config sample only documents max_concurrent_threads_per_session under [agents]. Confirmed against the official sample configuration before renaming. Co-Authored-By: Claude Sonnet 5 --- adapters/codex/config/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapters/codex/config/config.toml b/adapters/codex/config/config.toml index f0e51d5..9469cf1 100644 --- a/adapters/codex/config/config.toml +++ b/adapters/codex/config/config.toml @@ -7,7 +7,7 @@ status_line = ["model", "reasoning", "project-name", "git-branch", "context-wind [agents] enabled = true -max_threads = 5 +max_concurrent_threads_per_session = 5 [features] hooks = true