spudmobile-bridge 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/codex.js +2 -1
- package/package.json +1 -1
package/dist/codex.js
CHANGED
|
@@ -54,8 +54,9 @@ export function runCodex(prompt, cliPath, options = {}, onChunk) {
|
|
|
54
54
|
if (options.model) {
|
|
55
55
|
args.push('--model', options.model);
|
|
56
56
|
}
|
|
57
|
-
// Full auto approval mode — no interactive prompts
|
|
57
|
+
// Full auto approval mode — no interactive prompts, full file access
|
|
58
58
|
args.push('--full-auto');
|
|
59
|
+
args.push('--skip-git-repo-check');
|
|
59
60
|
const timeout = options.timeout || 10 * 60 * 1000; // 10 min default
|
|
60
61
|
const proc = spawn(cliPath, args, {
|
|
61
62
|
cwd: options.cwd || process.cwd(),
|