@cordfuse/llmux 0.13.6 → 0.13.7

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 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,6 +27,13 @@ The agent runs unmodified and doesn't know it's being driven headlessly.
27
27
  Tool state persists across prompts. Conversations are resumable from any
28
28
  client.
29
29
 
30
+ That same surface is the substrate higher-level orchestration sits on top
31
+ of — spec-driven development (SDD) pipelines, multi-agent chains,
32
+ scheduled jobs, evals harnessed against live agents — all just `llmux
33
+ session prompt <name> "..."` calls. No special agent build, no headless
34
+ SDK, no mode flag. If a human can drive the agent, llmux can drive it
35
+ the same way.
36
+
30
37
  ### OAuth from your phone, on a headless box
31
38
 
32
39
  A consequence of driving real interactive agents: **OAuth works even when
@@ -42,7 +49,7 @@ toolbar (Esc / Tab / Ctrl / arrows / shell chars), watch tool calls
42
49
  stream in. No "mobile app" — it's the same daemon serving a real
43
50
  terminal over a WebSocket.
44
51
 
45
- > **Status:** v0.13.6 — daemon + CLI client consolidated into one binary
52
+ > **Status:** v0.13.7 — daemon + CLI client consolidated into one binary
46
53
  > (`llmux`). Auth, tokens, mobile picker, conversation resume, Claude Code
47
54
  > history adapter shipped. See [CHANGELOG.md](./CHANGELOG.md).
48
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cordfuse/llmux",
3
- "version": "0.13.6",
3
+ "version": "0.13.7",
4
4
  "description": "tmux-based AI agent dispatcher — REST/WS daemon + CLI client in one binary",
5
5
  "license": "MIT",
6
6
  "type": "module",