axexec 1.2.0 → 1.4.0

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.
@@ -36,7 +36,12 @@ function prepareCommand(options) {
36
36
  if (options.model) {
37
37
  cliArguments.push("--model", options.model);
38
38
  }
39
- const environment = {};
39
+ const environment = {
40
+ // Indicate external sandbox to bypass root privilege check with
41
+ // --dangerously-skip-permissions (common in containerized CI/CD).
42
+ // See: https://github.com/anthropics/claude-code/issues/9184
43
+ IS_SANDBOX: "1",
44
+ };
40
45
  // Pass through authentication environment variables.
41
46
  // If neither is set, Claude CLI will prompt interactively or fail with its
42
47
  // own error message - we intentionally let the agent handle auth errors
@@ -67,6 +67,10 @@ function getCredentialEnvironment(credentials) {
67
67
  environment["GEMINI_API_KEY"] = apiKey;
68
68
  break;
69
69
  }
70
+ case "opencode": {
71
+ environment["OPENCODE_API_KEY"] = apiKey;
72
+ break;
73
+ }
70
74
  }
71
75
  }
72
76
  break;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "axexec",
3
3
  "author": "Łukasz Jerciński",
4
4
  "license": "MIT",
5
- "version": "1.2.0",
5
+ "version": "1.4.0",
6
6
  "description": "Unified CLI runner for AI coding agents with normalized event streaming",
7
7
  "repository": {
8
8
  "type": "git",