From e65ee385793bf0b82cc958b9fc5081f81110706b Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Sun, 5 Apr 2026 23:31:15 -0700 Subject: [PATCH] Clarify `codex exec` approval help (#16888) Addresses #13614 Problem: `codex exec --help` implied that `--full-auto` also changed exec approval mode, even though non-interactive exec stays headless and does not support interactive approval prompts. Solution: clarify the `--full-auto` help text so it only describes the sandbox behavior it actually enables for `codex exec`. --- codex-rs/exec/src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/exec/src/cli.rs b/codex-rs/exec/src/cli.rs index 22c53da1a..0225dc176 100644 --- a/codex-rs/exec/src/cli.rs +++ b/codex-rs/exec/src/cli.rs @@ -47,7 +47,7 @@ pub struct Cli { #[arg(long = "profile", short = 'p')] pub config_profile: Option, - /// Convenience alias for low-friction sandboxed automatic execution (-a on-request, --sandbox workspace-write). + /// Convenience alias for low-friction sandboxed automatic execution (--sandbox workspace-write). #[arg(long = "full-auto", default_value_t = false, global = true)] pub full_auto: bool,