@mmmbuto/nexuscli 0.5.7 → 0.5.8

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.
@@ -42,8 +42,9 @@ class CodexWrapper {
42
42
  // Build CLI arguments
43
43
  // If threadId exists, use 'exec --json resume <threadId>' to continue session
44
44
  // Otherwise use 'exec --json' for new session
45
+ // Note: --skip-git-repo-check is needed for both new and resume sessions
45
46
  const args = threadId
46
- ? ['exec', '--json', 'resume', threadId]
47
+ ? ['exec', '--json', '--skip-git-repo-check', 'resume', threadId]
47
48
  : ['exec', '--json', '--skip-git-repo-check', '--dangerously-bypass-approvals-and-sandbox', '-C', cwd];
48
49
 
49
50
  // Add model if specified (only for new sessions)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmmbuto/nexuscli",
3
- "version": "0.5.7",
3
+ "version": "0.5.8",
4
4
  "description": "NexusCLI - TRI CLI Control Plane (Claude/Codex/Gemini)",
5
5
  "main": "lib/server/server.js",
6
6
  "bin": {