Fix: config.toml top-level keys placement
Root cause: TOML bare keys after a [table] header belong to that table. notify, model_reasoning_effort, and developer_instructions were being emitted after [features], so Codex CLI parsed them as feature flags (expected boolean) instead of top-level config keys.
Fix: The generator now splits output into three sections:
- Top-level keys (
notify,model_reasoning_effort,developer_instructions) — before any[table] [features]flags (collab,child_agents_md)[table]sections ([mcp_servers.*],[tui])
Run omx setup to regenerate your config.
Full Changelog: v0.3.2...v0.3.3