-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodex.toml
More file actions
28 lines (22 loc) · 870 Bytes
/
codex.toml
File metadata and controls
28 lines (22 loc) · 870 Bytes
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
# Codex CLI project configuration
# Used when Codex workers are dispatched by Claude via MCP
[model]
default = "gpt-5.4"
[agents]
# Max concurrent subagent threads per worker.
# Conservative setting to avoid GPT Plus quota drain bug (#9748).
max_threads = 3
# Nesting depth: 1 = direct children only, no grandchildren.
# Keeps the hierarchy flat and predictable.
max_depth = 1
[sandbox]
# Default sandbox mode for the root agent.
# Subagents override this via their own TOML configs.
mode = "write-allow"
[framework]
# "hybrid" = Claude Planner + Codex Workers (default, requires Claude Max + GPT Plus)
# "codex-only" = Codex Planner + Codex Workers (requires GPT Plus only)
mode = "hybrid"
# Enable second-round adversarial review via codex-review MCP server.
# Only effective in codex-only mode. Requires: claude mcp add codex-review ...
enhanced_review = false