@madarco/agentbox 0.3.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.
@@ -13,10 +13,10 @@ import {
13
13
  startBox,
14
14
  stopBox,
15
15
  unpauseBox
16
- } from "./chunk-7NQFIBQG.js";
16
+ } from "./chunk-FQD6ZWYW.js";
17
17
  import {
18
18
  SNAPSHOTS_ROOT
19
- } from "./chunk-MOC54XL6.js";
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-YTMZYKOE-R4M3OR27.js.map
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.3.0",
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/ctl": "0.0.0",
61
- "@agentbox/sandbox-docker": "0.0.0"
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
- FROM mcr.microsoft.com/devcontainers/base:ubuntu
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
 
@@ -59,6 +64,7 @@ RUN apt-get update \
59
64
  build-essential \
60
65
  git \
61
66
  tmux \
67
+ vim \
62
68
  libcap2-bin \
63
69
  && rm -rf /var/lib/apt/lists/* \
64
70
  && mkdir -p /workspace /host-src /upper /snapshot /run/agentbox /var/log/agentbox \