fix: codex uses --yolo not --full-auto

This commit is contained in:
2026-05-18 19:15:59 -05:00
parent fd1d2c3e92
commit e523b34d1b
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import type { ClientName, ExecResult } from "./types.js";
import { ClientNotFoundError, ExecError } from "./types.js";
const CLIENT_ARGS: Record<ClientName, (prompt: string) => string[]> = {
codex: (p) => ["exec", "--full-auto", p],
codex: (p) => ["exec", "--yolo", p],
claude: (p) => ["-p", p, "--dangerously-skip-permissions"],
opencode: (p) => ["run", "--dangerously-skip-permissions", p],
};