@cordfuse/llmux 0.13.4 → 0.13.6

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 +4 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,10 +16,9 @@ survive daemon restarts; attach is raw-TTY (`Ctrl+]` to detach).
16
16
  ### Headless ≠ `claude -p`
17
17
 
18
18
  The obvious way to script Claude Code is `claude -p "prompt"` (and similar
19
- non-interactive modes in codex, gemini, etc.). That spawns a fresh
20
- short-lived child per call: no shared conversation, no in-session OAuth,
21
- no `/commands`, no persistent tool state, no MCP context. Each call
22
- starts cold.
19
+ non-interactive modes in codex, gemini, etc.). Each call spawns a fresh
20
+ short-lived child no shared conversation, no in-session OAuth, no
21
+ `/commands`, no persistent tool state, no MCP context.
23
22
 
24
23
  llmux drives the **interactive** agent process — the same TUI a human
25
24
  launches — over `tmux send-keys`. Spawn `claude` once, fire prompts at the
@@ -43,7 +42,7 @@ toolbar (Esc / Tab / Ctrl / arrows / shell chars), watch tool calls
43
42
  stream in. No "mobile app" — it's the same daemon serving a real
44
43
  terminal over a WebSocket.
45
44
 
46
- > **Status:** v0.13.4 — daemon + CLI client consolidated into one binary
45
+ > **Status:** v0.13.6 — daemon + CLI client consolidated into one binary
47
46
  > (`llmux`). Auth, tokens, mobile picker, conversation resume, Claude Code
48
47
  > history adapter shipped. See [CHANGELOG.md](./CHANGELOG.md).
49
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cordfuse/llmux",
3
- "version": "0.13.4",
3
+ "version": "0.13.6",
4
4
  "description": "tmux-based AI agent dispatcher — REST/WS daemon + CLI client in one binary",
5
5
  "license": "MIT",
6
6
  "type": "module",