@cordfuse/llmux 0.13.5 → 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.
- package/README.md +11 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,23 +13,19 @@ 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
|
-
### `claude -p`
|
|
16
|
+
### Headless ≠ `claude -p`
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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.
|
|
18
|
+
The obvious way to script Claude Code is `claude -p "prompt"` (and similar
|
|
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.
|
|
25
22
|
|
|
26
23
|
llmux drives the **interactive** agent process — the same TUI a human
|
|
27
|
-
launches — over `tmux send-keys`.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
conversation persist across prompts; resume from any client.
|
|
24
|
+
launches — over `tmux send-keys`. Spawn `claude` once, fire prompts at the
|
|
25
|
+
same live agent forever from any client (CLI, REST, WebSocket, web).
|
|
26
|
+
The agent runs unmodified and doesn't know it's being driven headlessly.
|
|
27
|
+
Tool state persists across prompts. Conversations are resumable from any
|
|
28
|
+
client.
|
|
33
29
|
|
|
34
30
|
### OAuth from your phone, on a headless box
|
|
35
31
|
|
|
@@ -46,7 +42,7 @@ toolbar (Esc / Tab / Ctrl / arrows / shell chars), watch tool calls
|
|
|
46
42
|
stream in. No "mobile app" — it's the same daemon serving a real
|
|
47
43
|
terminal over a WebSocket.
|
|
48
44
|
|
|
49
|
-
> **Status:** v0.13.
|
|
45
|
+
> **Status:** v0.13.6 — daemon + CLI client consolidated into one binary
|
|
50
46
|
> (`llmux`). Auth, tokens, mobile picker, conversation resume, Claude Code
|
|
51
47
|
> history adapter shipped. See [CHANGELOG.md](./CHANGELOG.md).
|
|
52
48
|
|