@cordfuse/llmux 0.13.3 → 0.13.4

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.
Files changed (2) hide show
  1. package/README.md +8 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,10 +5,13 @@
5
5
  [![license](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
6
6
  [![node](https://img.shields.io/node/v/@cordfuse/llmux.svg?label=node)](./packages/llmux/package.json)
7
7
 
8
- Run every AI agent CLI under a single daemon. One named tmux session per
9
- agent. Drive any of them from a terminal (`llmux session attach`), a REST
10
- or WebSocket API, or a phone browser over Tailscale. Sessions survive
11
- daemon restarts; attach is raw-TTY (`Ctrl+]` to detach).
8
+ Run every AI agent CLI under a single daemon. Each spawn is its own named
9
+ tmux session own cwd, own flags, own conversation. Run three claude
10
+ sessions across three different repos side-by-side, or one each of claude
11
+ / codex / gemini, or fifteen of each — there's no per-agent cap and no
12
+ shared state. Drive any of them from a terminal (`llmux session attach`),
13
+ a REST or WebSocket API, or a phone browser over Tailscale. Sessions
14
+ survive daemon restarts; attach is raw-TTY (`Ctrl+]` to detach).
12
15
 
13
16
  ### Headless ≠ `claude -p`
14
17
 
@@ -40,7 +43,7 @@ toolbar (Esc / Tab / Ctrl / arrows / shell chars), watch tool calls
40
43
  stream in. No "mobile app" — it's the same daemon serving a real
41
44
  terminal over a WebSocket.
42
45
 
43
- > **Status:** v0.13.3 — daemon + CLI client consolidated into one binary
46
+ > **Status:** v0.13.4 — daemon + CLI client consolidated into one binary
44
47
  > (`llmux`). Auth, tokens, mobile picker, conversation resume, Claude Code
45
48
  > history adapter shipped. See [CHANGELOG.md](./CHANGELOG.md).
46
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cordfuse/llmux",
3
- "version": "0.13.3",
3
+ "version": "0.13.4",
4
4
  "description": "tmux-based AI agent dispatcher — REST/WS daemon + CLI client in one binary",
5
5
  "license": "MIT",
6
6
  "type": "module",