-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
31 lines (26 loc) · 1.04 KB
/
config.toml
File metadata and controls
31 lines (26 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Developed by @jams2blues – ZeroContract Studio
# File: config.toml
# Rev : r1 2025‑09‑07 UTC
# Summary: baseline Codex CLI configuration for the ZeroUnbound project.
# This configuration defines reasonable defaults for working with
# OpenAI Codex. Copy this file to your own `~/.codex/config.toml` or
# supply it via the `--config-file` flag when launching Codex. It is
# referenced by AGENTS.md and kept up to date as Codex evolves.
model = "gpt-5"
approval_policy = "on-request"
sandbox_mode = "workspace-write"
model_reasoning_effort = "high"
model_reasoning_summary = "detailed"
model_verbosity = "high"
hide_agent_reasoning = false
[shell_environment_policy]
inherit = "core"
ignore_default_excludes = false
exclude = ["AWS_*", "AZURE_*"]
include_only = ["PATH", "HOME", "USER"]
[sandbox_workspace_write]
network_access = false
exclude_tmpdir_env_var = false
exclude_slash_tmp = false
writable_roots = []
# What changed & why: initial creation of root-level Codex configuration with recommended defaults for model, sandbox and environment settings.