@madarco/agentbox 0.4.0 → 0.4.1
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.
- package/dist/{chunk-3JKQNOXP.js → chunk-FQD6ZWYW.js} +3 -3
- package/dist/{chunk-MOC54XL6.js → chunk-NSIECUCS.js} +28 -4
- package/dist/chunk-NSIECUCS.js.map +1 -0
- package/dist/{chunk-3NCUES35.js → chunk-WR5FFGE5.js} +3 -3
- package/dist/{create-SE6H4B5U-IWAZHJHV.js → create-4BQY2UYU-CGSW3RGE.js} +3 -3
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/{lifecycle-YTMZYKOE-TD5S5FTS.js → lifecycle-LURNDNYO-UWQYPNPX.js} +3 -3
- package/package.json +3 -3
- package/runtime/docker/Dockerfile.box +6 -1
- package/dist/chunk-MOC54XL6.js.map +0 -1
- /package/dist/{chunk-3JKQNOXP.js.map → chunk-FQD6ZWYW.js.map} +0 -0
- /package/dist/{chunk-3NCUES35.js.map → chunk-WR5FFGE5.js.map} +0 -0
- /package/dist/{create-SE6H4B5U-IWAZHJHV.js.map → create-4BQY2UYU-CGSW3RGE.js.map} +0 -0
- /package/dist/{lifecycle-YTMZYKOE-TD5S5FTS.js.map → lifecycle-LURNDNYO-UWQYPNPX.js.map} +0 -0
|
@@ -13,10 +13,10 @@ import {
|
|
|
13
13
|
startBox,
|
|
14
14
|
stopBox,
|
|
15
15
|
unpauseBox
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-FQD6ZWYW.js";
|
|
17
17
|
import {
|
|
18
18
|
SNAPSHOTS_ROOT
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-NSIECUCS.js";
|
|
20
20
|
import "./chunk-IDR4HVIC.js";
|
|
21
21
|
import "./chunk-SOMIKEN2.js";
|
|
22
22
|
export {
|
|
@@ -35,4 +35,4 @@ export {
|
|
|
35
35
|
stopBox,
|
|
36
36
|
unpauseBox
|
|
37
37
|
};
|
|
38
|
-
//# sourceMappingURL=lifecycle-
|
|
38
|
+
//# sourceMappingURL=lifecycle-LURNDNYO-UWQYPNPX.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@madarco/agentbox",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Launch Claude Code, Codex, and other coding agents in isolated sandboxes",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Marco D'Alia",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"vitest": "^2.1.8",
|
|
58
58
|
"@agentbox/config": "0.0.0",
|
|
59
59
|
"@agentbox/core": "0.0.0",
|
|
60
|
-
"@agentbox/
|
|
61
|
-
"@agentbox/
|
|
60
|
+
"@agentbox/sandbox-docker": "0.0.0",
|
|
61
|
+
"@agentbox/ctl": "0.0.0"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "tsup",
|
|
@@ -9,7 +9,12 @@
|
|
|
9
9
|
#
|
|
10
10
|
# Required runtime flags:
|
|
11
11
|
# --cap-add=SYS_ADMIN --device=/dev/fuse --security-opt=apparmor:unconfined
|
|
12
|
-
|
|
12
|
+
#
|
|
13
|
+
# Pinned to ubuntu-24.04 (Noble), NOT the rolling `:ubuntu` tag: that tag now
|
|
14
|
+
# tracks Ubuntu 26.04, which has no Playwright Chromium build for arm64
|
|
15
|
+
# ("Playwright does not support chromium on ubuntu26.04-arm64") and would also
|
|
16
|
+
# break the t64-suffixed Chrome runtime libs below. Bump deliberately.
|
|
17
|
+
FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
|
|
13
18
|
|
|
14
19
|
USER root
|
|
15
20
|
|