@cordfuse/llmux 0.13.4 → 0.13.5

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 +15 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,20 +13,23 @@ shared state. Drive any of them from a terminal (`llmux session attach`),
13
13
  a REST or WebSocket API, or a phone browser over Tailscale. Sessions
14
14
  survive daemon restarts; attach is raw-TTY (`Ctrl+]` to detach).
15
15
 
16
- ### Headless ≠ `claude -p`
16
+ ### `claude -p` is metered. llmux isn't.
17
17
 
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.
18
+ Every major agent CLI ships a one-shot mode `claude -p "prompt"` and
19
+ the codex / gemini / qwen / amp equivalents. The catch: even when you
20
+ authed via OAuth on a flat-rate subscription (Claude Pro/Max, ChatGPT
21
+ Plus, Gemini Advanced, …), `-p`-style calls now route to the **metered
22
+ API billing bucket** — real per-token dollars on top of your monthly
23
+ subscription. Script a few hundred `-p` calls a day and the subscription
24
+ stops mattering.
23
25
 
24
26
  llmux drives the **interactive** agent process — the same TUI a human
25
- launches — over `tmux send-keys`. Spawn `claude` once, fire prompts at the
26
- same live agent forever from any client (CLI, REST, WebSocket, web).
27
- The agent runs unmodified and doesn't know it's being driven headlessly.
28
- Tool state persists across prompts. Conversations are resumable from any
29
- client.
27
+ launches — over `tmux send-keys`. Interactive use stays on the
28
+ subscription billing path: same OAuth, same flat rate, no per-token API
29
+ surcharge. Spawn `claude` once, fire prompts at the same live agent
30
+ forever from any client (CLI, REST, WebSocket, web). The agent runs
31
+ unmodified and doesn't know it's being driven headlessly. Tool state and
32
+ conversation persist across prompts; resume from any client.
30
33
 
31
34
  ### OAuth from your phone, on a headless box
32
35
 
@@ -43,7 +46,7 @@ toolbar (Esc / Tab / Ctrl / arrows / shell chars), watch tool calls
43
46
  stream in. No "mobile app" — it's the same daemon serving a real
44
47
  terminal over a WebSocket.
45
48
 
46
- > **Status:** v0.13.4 — daemon + CLI client consolidated into one binary
49
+ > **Status:** v0.13.5 — daemon + CLI client consolidated into one binary
47
50
  > (`llmux`). Auth, tokens, mobile picker, conversation resume, Claude Code
48
51
  > history adapter shipped. See [CHANGELOG.md](./CHANGELOG.md).
49
52
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cordfuse/llmux",
3
- "version": "0.13.4",
3
+ "version": "0.13.5",
4
4
  "description": "tmux-based AI agent dispatcher — REST/WS daemon + CLI client in one binary",
5
5
  "license": "MIT",
6
6
  "type": "module",