Always enable plan tool in exec (#5380)

Fixes: https://github.com/openai/codex/issues/5359
This commit is contained in:
pakrym-oai
2025-10-20 11:05:55 -07:00
committed by GitHub
parent 73a1787eb8
commit cda6db6ccf
3 changed files with 17 additions and 14 deletions

View File

@@ -68,8 +68,8 @@ pub struct Cli {
pub json: bool,
/// Whether to include the plan tool in the conversation.
#[arg(long = "include-plan-tool", default_value_t = false)]
pub include_plan_tool: bool,
#[arg(long = "include-plan-tool")]
pub include_plan_tool: Option<bool>,
/// Specifies file where the last message from the agent should be written.
#[arg(long = "output-last-message", short = 'o', value_name = "FILE")]