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.
Files changed (2) hide show
  1. package/dist/codex.js +2 -1
  2. 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(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spudmobile-bridge",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Bridge between OpenAI Codex CLI and SpudMobile iOS app via Supabase",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",