axexec 1.3.0 → 1.5.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
|
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.
|
|
5
|
+
"version": "1.5.0",
|
|
6
6
|
"description": "Unified CLI runner for AI coding agents with normalized event streaming",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -59,27 +59,27 @@
|
|
|
59
59
|
"automation",
|
|
60
60
|
"coding-assistant"
|
|
61
61
|
],
|
|
62
|
-
"packageManager": "pnpm@10.
|
|
62
|
+
"packageManager": "pnpm@10.28.0",
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=22.14.0"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@commander-js/extra-typings": "^14.0.0",
|
|
68
|
-
"axconfig": "^3.6.
|
|
69
|
-
"axshared": "^
|
|
68
|
+
"axconfig": "^3.6.2",
|
|
69
|
+
"axshared": "^4.0.0",
|
|
70
70
|
"commander": "^14.0.2",
|
|
71
71
|
"zod": "^4.3.5"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
75
|
-
"@types/node": "^25.0.
|
|
75
|
+
"@types/node": "^25.0.9",
|
|
76
76
|
"@vitest/coverage-v8": "^4.0.17",
|
|
77
77
|
"eslint": "^9.39.2",
|
|
78
78
|
"eslint-config-axkit": "^1.1.0",
|
|
79
79
|
"fta-check": "^1.5.1",
|
|
80
80
|
"fta-cli": "^3.0.0",
|
|
81
|
-
"knip": "^5.
|
|
82
|
-
"prettier": "3.
|
|
81
|
+
"knip": "^5.82.0",
|
|
82
|
+
"prettier": "3.8.0",
|
|
83
83
|
"semantic-release": "^25.0.2",
|
|
84
84
|
"typescript": "^5.9.3",
|
|
85
85
|
"vitest": "^4.0.17"
|