@locusai/cli 0.10.5 → 0.10.6

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.
@@ -15532,7 +15532,7 @@ class CodexRunner {
15532
15532
  type: "tool_use",
15533
15533
  tool: line.replace(/^[→•✓]\s*/, "")
15534
15534
  });
15535
- } else if (this.shouldDisplay(line)) {
15535
+ } else {
15536
15536
  enqueueChunk({ type: "text_delta", content: `${line}
15537
15537
  ` });
15538
15538
  }
@@ -15672,18 +15672,11 @@ class CodexRunner {
15672
15672
  }
15673
15673
  buildArgs(outputPath) {
15674
15674
  const args = [
15675
- "--ask-for-approval",
15676
- "never",
15677
15675
  "exec",
15678
- "--sandbox",
15679
- "workspace-write",
15676
+ "--full-auto",
15680
15677
  "--skip-git-repo-check",
15681
15678
  "--output-last-message",
15682
- outputPath,
15683
- "-c",
15684
- "sandbox_workspace_write.network_access=true",
15685
- "-c",
15686
- 'sandbox.excludedCommands=["git", "gh"]'
15679
+ outputPath
15687
15680
  ];
15688
15681
  if (this.model) {
15689
15682
  args.push("--model", this.model);
package/bin/locus.js CHANGED
@@ -7232,7 +7232,7 @@ class CodexRunner {
7232
7232
  type: "tool_use",
7233
7233
  tool: line.replace(/^[→•✓]\s*/, "")
7234
7234
  });
7235
- } else if (this.shouldDisplay(line)) {
7235
+ } else {
7236
7236
  enqueueChunk({ type: "text_delta", content: `${line}
7237
7237
  ` });
7238
7238
  }
@@ -7372,18 +7372,11 @@ class CodexRunner {
7372
7372
  }
7373
7373
  buildArgs(outputPath) {
7374
7374
  const args = [
7375
- "--ask-for-approval",
7376
- "never",
7377
7375
  "exec",
7378
- "--sandbox",
7379
- "workspace-write",
7376
+ "--full-auto",
7380
7377
  "--skip-git-repo-check",
7381
7378
  "--output-last-message",
7382
- outputPath,
7383
- "-c",
7384
- "sandbox_workspace_write.network_access=true",
7385
- "-c",
7386
- 'sandbox.excludedCommands=["git", "gh"]'
7379
+ outputPath
7387
7380
  ];
7388
7381
  if (this.model) {
7389
7382
  args.push("--model", this.model);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@locusai/cli",
3
- "version": "0.10.5",
3
+ "version": "0.10.6",
4
4
  "description": "CLI for Locus - AI-native project management platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@
33
33
  "author": "",
34
34
  "license": "MIT",
35
35
  "dependencies": {
36
- "@locusai/sdk": "^0.10.5"
36
+ "@locusai/sdk": "^0.10.6"
37
37
  },
38
38
  "devDependencies": {}
39
39
  }