diff --git a/codex/config.toml b/codex/config.toml index 41f2764..99bb762 100644 --- a/codex/config.toml +++ b/codex/config.toml @@ -1,14 +1,25 @@ -model_verbosity = "medium" # low|medium|high +tui = { theme = { name = "dark-zen-garden" }, spinner = { name = "brailleDotsClassic" }, alternate_screen = true, notifications = true } +notify = ["/usr/bin/python3", "/Users/david/.config/codex/notify.py"] -model = "gpt-5-codex" -tui = { theme = { name = "dark-zen-garden" }, spinner = { name = "brailleDotsClassic" }, alternate_screen = true, notifications = true } -model_reasoning_effort = "high" -notify = ["/usr/bin/python3", "/Users/david/.config/codex/notify.py"] +model = "gpt-5.1-codex-max" +model_verbosity = "medium" # low|medium|high +model_reasoning_effort = "high" +show_raw_agent_reasoning = true approval_policy = "never" sandbox_mode = "danger-full-access" +exec_timeout_ms = 900000 # 15 minutes +rmcp_client = true -show_raw_agent_reasoning = true + +[notice] +hide_gpt5_1_migration_prompt = true + +[features] +web_search_request = true +streamable_shell = true +apply_patch_freeform = true +unified_exec = true # [mcp_servers.file-edit] # command = "/Users/david/Github/file-edit-mcp/fileeditmcp" diff --git a/zsh/functions/co.zsh b/zsh/functions/co.zsh index c04b8ec..85a0eb9 100644 --- a/zsh/functions/co.zsh +++ b/zsh/functions/co.zsh @@ -1,6 +1,6 @@ co() { local -a codex_cmd - codex_cmd=(codex --sandbox danger-full-access -m gpt-5 -c 'model_reasoning_summary_format=experimental' -c 'model_reasoning_effort=high' --enable web_search_request) + codex_cmd=(codex) local search_dir=$PWD local overlay_file="" while :; do