llm-party-cli 0.11.1 → 0.12.0

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 CHANGED
@@ -27,6 +27,16 @@ No MCP. No master/servant. No window juggling. Just peers at a terminal table.
27
27
 
28
28
  <br/>
29
29
 
30
+ ## What's new in v0.12.0
31
+
32
+ - **Agent sidebar** with live activity accordion. Per-agent status, current tool/file, scrollable activity log. Toggle with `Ctrl+B`. Auto-hides on narrow terminals.
33
+ - **Animated splash screen** when the terminal is idle. Octopus mascot rendered in block characters.
34
+ - **Rich activity details** in sidebar and status bar. See exactly what each agent is doing: `Read: src/index.ts`, `Bash: npm test`, `Search: handleSubmit`.
35
+ - **Cancel panel** (`Esc` when agents are active). Multi-select which agents to kill, the rest keep working.
36
+ - **CWD bar** at the bottom of the terminal showing your current working directory.
37
+
38
+ <br/>
39
+
30
40
  ## Why llm-party?
31
41
 
32
42
  | | Traditional multi-agent | llm-party |
@@ -401,7 +411,7 @@ Or use the `/resume` command as your first input in a fresh session:
401
411
  /resume 20260402-102915-74722-ba956b96
402
412
  ```
403
413
 
404
- The session ID is shown at startup or via `/session`. Resume loads the full transcript, restores per-agent SDK sessions (Claude session IDs, Codex thread IDs, Copilot session IDs), and tracks which messages each agent has already seen. Agents pick up exactly where they left off with no duplicate processing.
414
+ The session ID is shown at startup (and in `/info`). Resume loads the full transcript, restores per-agent SDK sessions (Claude session IDs, Codex thread IDs, Copilot session IDs), and tracks which messages each agent has already seen. Agents pick up exactly where they left off with no duplicate processing.
405
415
 
406
416
  A `.manifest.json` file alongside each transcript stores the session state: agent cursors, SDK session IDs, sticky targets. This is what makes cross-provider resume possible.
407
417
 
@@ -417,17 +427,18 @@ Resume only works before the first message is sent. Once a conversation has star
417
427
  | `/config` | Open config wizard |
418
428
  | `/info` | Commands and keyboard shortcuts panel |
419
429
  | `/save <path>` | Export conversation as JSON |
420
- | `/session` | Show session ID and transcript path |
421
430
  | `/resume <id>` | Resume a previous session (first message only) |
422
431
  | `/changes` | Show git-modified files |
423
432
  | `/clear` | Clear chat display (Ctrl+L also works) |
424
433
  | `/exit` | Quit (graceful shutdown, all adapters cleaned up) |
425
434
  | `Ctrl+P` | Toggle agents panel |
435
+ | `Ctrl+B` | Toggle agent sidebar |
426
436
  | `Ctrl+L` | Clear chat |
427
437
  | `Ctrl+C` | Copy selection or exit |
428
438
  | `Ctrl+A / E` | Jump to start / end of input line |
429
439
  | `Ctrl+U` | Clear entire input line |
430
440
  | `Ctrl+W` | Delete word backward |
441
+ | `Esc` | Open cancel panel (when agents are active) |
431
442
  | `Shift+Enter` | Insert new line in input |
432
443
  | `Up / Down` | Input history |
433
444
  | `PageUp/Down` | Scroll chat |