From 63af91e70d41417cac0bbb0e3c2b3d418a54e8ee Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Tue, 24 Jun 2025 22:11:03 -0700 Subject: [PATCH] chore: improve docstring for --full-auto --- codex-rs/exec/src/cli.rs | 2 +- codex-rs/tui/src/cli.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/exec/src/cli.rs b/codex-rs/exec/src/cli.rs index f14b28e702..7f3563370a 100644 --- a/codex-rs/exec/src/cli.rs +++ b/codex-rs/exec/src/cli.rs @@ -18,7 +18,7 @@ pub struct Cli { #[arg(long = "profile", short = 'p')] pub config_profile: Option, - /// Convenience alias for low-friction sandboxed automatic execution (network-disabled sandbox that can write to cwd and TMPDIR) + /// Convenience alias for low-friction sandboxed automatic execution (-a on-failure, -c sandbox.mode=workspace-write). #[arg(long = "full-auto", default_value_t = false)] pub full_auto: bool, diff --git a/codex-rs/tui/src/cli.rs b/codex-rs/tui/src/cli.rs index e4ee752ba9..7e5a8175e9 100644 --- a/codex-rs/tui/src/cli.rs +++ b/codex-rs/tui/src/cli.rs @@ -25,7 +25,7 @@ pub struct Cli { #[arg(long = "ask-for-approval", short = 'a')] pub approval_policy: Option, - /// Convenience alias for low-friction sandboxed automatic execution (-a on-failure, network-disabled sandbox that can write to cwd and TMPDIR) + /// Convenience alias for low-friction sandboxed automatic execution (-a on-failure, -c sandbox.mode=workspace-write). #[arg(long = "full-auto", default_value_t = false)] pub full_auto: bool,