@madarco/agentbox 0.12.0 → 0.13.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.
package/CHANGELOG.md CHANGED
@@ -9,6 +9,37 @@ Entries are generated from the commit history with `/release-notes` and then
9
9
  hand-reviewed — they describe what changed for someone using the `agentbox`
10
10
  CLI, not the raw commits.
11
11
 
12
+ ## [0.13.0] - 2026-06-02
13
+
14
+ ### Added
15
+
16
+ - cmux terminal integration. `--attach-in` / `attach.openIn` now place the
17
+ attached session in cmux (`split` -> new-split, `tab` -> a surface in the
18
+ current workspace, `window` -> a separate workspace), alongside the existing
19
+ tmux and iTerm2 support.
20
+ - While attached inside cmux, a box's live agent status is reflected on its
21
+ workspace colour and description (blue working, amber needs-input, cleared on
22
+ idle), restored on detach. When several boxes share a workspace as tabs, the
23
+ one needing input is flagged with a cmux notification. Gated by
24
+ `attach.cmuxStatus` (default on); no-op outside cmux.
25
+ - `Ctrl+a t` in any attach session opens a fresh shell in the same box in a new
26
+ tab (cmux surface / tmux window / iTerm2 tab).
27
+ - `Ctrl+a k` destroys the current box after a `y/N` confirmation, in both the
28
+ attach footer and the dashboard.
29
+ - `agentbox install cmux` pins a live box list to cmux's right-sidebar Dock
30
+ (`--dry-run` / `--force` / `--height` / `--title`); the panel groups boxes by
31
+ project. `agentbox list --cmux` renders the same compact, sidebar-tuned view
32
+ directly. (cmux's Dock is a beta feature — enable it under Settings -> Beta
33
+ features -> Dock.)
34
+ - A full documentation site at [agent-box.sh/docs](https://agent-box.sh/docs),
35
+ including a new Integrations section for iTerm2, tmux, and cmux.
36
+
37
+ ### Changed
38
+
39
+ - The dashboard's destroy chord moved from `Ctrl+a d` to `Ctrl+a k`, so `k`
40
+ means "kill" in both the dashboard and an attach session and never collides
41
+ with detach. Box switching stays on `Control+Option+arrows`.
42
+
12
43
  ## [0.12.0] - 2026-06-01
13
44
 
14
45
  ### Breaking
package/README.md CHANGED
@@ -25,6 +25,7 @@ agentbox claude # launch a new VM with claude and your project inside
25
25
  - 💾 **Checkpoints** — Sub <1s startup of new boxes from a previous checkpoint, auto pause to save cost/resources when not in use.
26
26
  - 🔒 **Safe** - Your git credentials are kept on your local machine, with permission requests to push to the remote repository.
27
27
 
28
+ Full [Documentation](https://agent-box.sh/docs)
28
29
 
29
30
  ### Complete setup:
30
31
 
@@ -142,6 +143,16 @@ Uses `portless` to give box web apps the same URL from inside the box and on the
142
143
 
143
144
  Run `agentbox <command> --help` for command-specific options.
144
145
 
146
+ ## Documentation
147
+
148
+ Full documentation lives at **[agent-box.sh/docs](https://agent-box.sh/docs)**:
149
+
150
+ - [Quickstart](https://agent-box.sh/docs) and [Core concepts](https://agent-box.sh/docs/core-concepts)
151
+ - [Teleport a project](https://agent-box.sh/docs/teleport-a-project), [Run an agent](https://agent-box.sh/docs/run-an-agent), [Access your box](https://agent-box.sh/docs/access-your-box)
152
+ - [Configuration](https://agent-box.sh/docs/configuration), [Services & tasks](https://agent-box.sh/docs/services-and-tasks), [Sync & git](https://agent-box.sh/docs/sync-and-git)
153
+ - Cloud providers: [Hetzner](https://agent-box.sh/docs/hetzner), [Daytona](https://agent-box.sh/docs/daytona), [Vercel](https://agent-box.sh/docs/vercel)
154
+ - Full [CLI reference](https://agent-box.sh/docs/cli)
155
+
145
156
  ## Development
146
157
 
147
158
  ```sh
@@ -3,8 +3,8 @@ import {
3
3
  buildCloudAttachInnerCommand,
4
4
  cloudAgentAttach,
5
5
  cloudAgentStartDetached
6
- } from "./chunk-HFV6THYG.js";
7
- import "./chunk-IZXPJPPV.js";
6
+ } from "./chunk-QYRK5H6Q.js";
7
+ import "./chunk-B4QG2MCW.js";
8
8
  import "./chunk-SNTHHWKY.js";
9
9
  import "./chunk-G3H2L3O2.js";
10
10
  export {
@@ -12,4 +12,4 @@ export {
12
12
  cloudAgentAttach,
13
13
  cloudAgentStartDetached
14
14
  };
15
- //# sourceMappingURL=_cloud-attach-XKO4SHR3.js.map
15
+ //# sourceMappingURL=_cloud-attach-HJC672UR.js.map
@@ -34,7 +34,7 @@ import {
34
34
  stageOpencodeCredentialsForUpload,
35
35
  stageOpencodeStateForUpload,
36
36
  stageOpencodeStaticForUpload
37
- } from "./chunk-IZXPJPPV.js";
37
+ } from "./chunk-B4QG2MCW.js";
38
38
  import {
39
39
  allocateProjectIndex,
40
40
  detectGitRepos,
@@ -1955,4 +1955,4 @@ export {
1955
1955
  createCloudProvider,
1956
1956
  renderInnerCommand
1957
1957
  };
1958
- //# sourceMappingURL=chunk-DHJ7OMIP.js.map
1958
+ //# sourceMappingURL=chunk-4NQXNQ53.js.map
@@ -782,7 +782,8 @@ var BUILT_IN_DEFAULTS = {
782
782
  sessionName: "opencode"
783
783
  },
784
784
  attach: {
785
- openIn: "split"
785
+ openIn: "split",
786
+ cmuxStatus: true
786
787
  },
787
788
  code: {
788
789
  ide: "auto",
@@ -1052,7 +1053,12 @@ var KEY_REGISTRY = [
1052
1053
  key: "attach.openIn",
1053
1054
  type: "enum",
1054
1055
  enumValues: ["split", "window", "tab", "same"],
1055
- description: "Where `agentbox claude|codex|opencode` opens the attached session when run from tmux or iTerm2: `split` (tmux split-window / iTerm2 vertical split, default), `window` (tmux new-window / new iTerm2 window), `tab` (tmux new-window / new iTerm2 tab), or `same` (attach inline in the current terminal). Outside tmux/iTerm2 every value behaves like `same`."
1056
+ description: "Where `agentbox claude|codex|opencode` opens the attached session when run from tmux, cmux, or iTerm2: `split` (tmux split-window / cmux new-split / iTerm2 vertical split, default \u2014 same workspace), `window` (tmux new-window / cmux new-workspace / new iTerm2 window), `tab` (tmux new-window / cmux new-surface tab in the current pane, same workspace / new iTerm2 tab), or `same` (attach inline in the current terminal). Outside tmux/cmux/iTerm2 every value behaves like `same`."
1057
+ },
1058
+ {
1059
+ key: "attach.cmuxStatus",
1060
+ type: "bool",
1061
+ description: "When attached inside cmux, reflect the box agent's live activity on its cmux workspace (colour + description: blue=working, amber=needs input, idle clears; restored on detach) and, when the agent needs input, flag the box's own tab via a cmux notification (tab badge + reorder + desktop notification) so it stands out among sibling tabs. cmux only; no-op in other terminals."
1056
1062
  },
1057
1063
  {
1058
1064
  key: "code.ide",
@@ -8973,4 +8979,4 @@ export {
8973
8979
  browserSessionActive,
8974
8980
  ensureBoxBrowser
8975
8981
  };
8976
- //# sourceMappingURL=chunk-IZXPJPPV.js.map
8982
+ //# sourceMappingURL=chunk-B4QG2MCW.js.map