← Back to review

A VCA member posted "Making Claude Code run none s...

May 22, 2026

Subject: Re: Making Claude Code run none stop like Codex??

Hey,

You want `--dangerously-skip-permissions` in your Claude Code config, but heads up - Codex runs autonomous by default because it sandboxes everything, while Claude Code can touch your actual filesystem. I've had it delete entire directories when a regex went wrong. If you need true continuous execution, pair it with the background agent pattern from their docs and set up a watch folder it can't escape from.

-Kevin

A VCA member posted "Making Claude Code run none s...