Switching from GPT-5.5 to GPT-5.6 Made Me Less Productive
I pay for three Codex subscriptions at $200 each, and for the past week they have mostly bought me waiting. Since I…
If you're using OpenAI's Codex CLI, you might want it to work like Claude Code does by default: able to run powerful commands, but asking for your approval first.
Codex CLI has a safety feature called sandbox mode that restricts what the AI can do:
This is great for security, but it also means Codex can't do much useful work on real projects.
By default, Codex CLI either:
Neither setup gives you the sweet spot: full system access with human-in-the-loop approval.
Edit your Codex config file at ~/.codex/config.toml and add these lines at the top:
approval_policy = "untrusted"
sandbox_mode = "danger-full-access"
approval_policy = "untrusted": Codex will prompt you before executing any command. You review and approve each action.
sandbox_mode = "danger-full-access": Gives Codex full system access (file operations, network calls, shell commands, etc.) so it can actually get work done.
Together, these settings mean: Codex can do anything, but only with your explicit approval.
Give Vroni a GitHub issue, bug report, spec, or rough idea. It reads the repo, plans the change, writes code, runs checks, and works toward a review-ready pull request.
Take a look at vroni.com