webmux 0.27.0 → 0.28.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # webmux
2
2
 
3
- A web dashboard for managing parallel AI coding agents. webmux owns git worktree lifecycle, tmux layout, agent runtime events, service health monitoring, and sandbox containers directly.
3
+ A web dashboard for managing parallel AI coding agents. webmux owns git worktree lifecycle, tmux layout, agent runtime events, service health monitoring, and sandbox containers directly, and now also ships a separate mobile-friendly chat UI for checking in on worktrees away from your desktop.
4
4
 
5
5
  ![webmux demo](https://github.com/windmill-labs/webmux/raw/main/site/static/videos/demo.gif)
6
6
 
@@ -16,6 +16,10 @@ Spin up new worktrees with one click. Pick a profile, type a prompt, and webmux
16
16
 
17
17
  View and interact with your agents directly in the browser. Each worktree gets its own terminal session, streamed live via WebSocket. You can watch agents work, send prompts, and switch between worktrees instantly — no need to juggle tmux windows manually.
18
18
 
19
+ ### Mobile-Friendly Agents Chat
20
+
21
+ webmux also serves a second, simplified agents UI on a separate port. It is primarily meant to give you a much better mobile UX: a worktree list, a simple chat screen, and quick access to service and PR badges without trying to squeeze a full terminal dashboard onto a phone.
22
+
19
23
  ### PR, CI & Comments
20
24
 
21
25
  ![PR and CI](https://github.com/windmill-labs/webmux/raw/main/site/static/videos/ci.gif)
@@ -55,9 +59,11 @@ cd /path/to/your/project
55
59
  webmux init # creates .webmux.yaml
56
60
 
57
61
  # 4. Start the dashboard
58
- webmux serve # opens on http://localhost:5111
62
+ webmux serve # dashboard on http://localhost:5111
59
63
  ```
60
64
 
65
+ The primary dashboard remains the best desktop experience. On mobile, the same dashboard swaps the embedded terminal for a chat view on open Codex and Claude worktrees.
66
+
61
67
  ## Prerequisites
62
68
 
63
69
  | Tool | Purpose |
@@ -130,6 +136,8 @@ profiles:
130
136
  You are running inside a sandboxed container.
131
137
  Backend port: ${PORT}. Frontend port: ${FRONTEND_PORT}.
132
138
 
139
+ Custom sandbox images should make `claude` or `codex` available on the container's normal `PATH` (for example with `ENV PATH=/your/tool/bin:$PATH`). webmux does not rely on login-shell dotfiles like `.bashrc` to discover agent binaries inside the container.
140
+
133
141
  integrations:
134
142
  github:
135
143
  autoRemoveOnMerge: true