llm-party-cli 0.11.0 → 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 +15 -11
- package/dist/index.js +2305 -1556
- package/package.json +1 -1
- package/prompts/artifacts.md +59 -8
- package/prompts/base.md +49 -18
package/README.md
CHANGED
|
@@ -19,18 +19,21 @@
|
|
|
19
19
|
|
|
20
20
|
A peer orchestrator that puts **Claude**, **Codex**, **Copilot**, and any Claude-compatible API (GLM, Ollama, etc.) in the same terminal. You talk, they listen. They talk to each other. Nobody is the boss except you.
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
<p align="center">
|
|
23
|
+
<img src="https://llm-party.party/llm-party-preview.gif" alt="llm-party demo" width="720" />
|
|
24
|
+
</p>
|
|
25
|
+
|
|
26
|
+
No MCP. No master/servant. No window juggling. Just peers at a terminal table.
|
|
25
27
|
|
|
26
|
-
|
|
27
|
-
[CODEX] Fixed. Wrapped in try/catch with proper logging. See diff below.
|
|
28
|
+
<br/>
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
[COPILOT] Added 3 test cases covering the happy path and both error branches.
|
|
31
|
-
```
|
|
30
|
+
## What's new in v0.12.0
|
|
32
31
|
|
|
33
|
-
|
|
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.
|
|
34
37
|
|
|
35
38
|
<br/>
|
|
36
39
|
|
|
@@ -408,7 +411,7 @@ Or use the `/resume` command as your first input in a fresh session:
|
|
|
408
411
|
/resume 20260402-102915-74722-ba956b96
|
|
409
412
|
```
|
|
410
413
|
|
|
411
|
-
The session ID is shown at startup
|
|
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.
|
|
412
415
|
|
|
413
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.
|
|
414
417
|
|
|
@@ -424,17 +427,18 @@ Resume only works before the first message is sent. Once a conversation has star
|
|
|
424
427
|
| `/config` | Open config wizard |
|
|
425
428
|
| `/info` | Commands and keyboard shortcuts panel |
|
|
426
429
|
| `/save <path>` | Export conversation as JSON |
|
|
427
|
-
| `/session` | Show session ID and transcript path |
|
|
428
430
|
| `/resume <id>` | Resume a previous session (first message only) |
|
|
429
431
|
| `/changes` | Show git-modified files |
|
|
430
432
|
| `/clear` | Clear chat display (Ctrl+L also works) |
|
|
431
433
|
| `/exit` | Quit (graceful shutdown, all adapters cleaned up) |
|
|
432
434
|
| `Ctrl+P` | Toggle agents panel |
|
|
435
|
+
| `Ctrl+B` | Toggle agent sidebar |
|
|
433
436
|
| `Ctrl+L` | Clear chat |
|
|
434
437
|
| `Ctrl+C` | Copy selection or exit |
|
|
435
438
|
| `Ctrl+A / E` | Jump to start / end of input line |
|
|
436
439
|
| `Ctrl+U` | Clear entire input line |
|
|
437
440
|
| `Ctrl+W` | Delete word backward |
|
|
441
|
+
| `Esc` | Open cancel panel (when agents are active) |
|
|
438
442
|
| `Shift+Enter` | Insert new line in input |
|
|
439
443
|
| `Up / Down` | Input history |
|
|
440
444
|
| `PageUp/Down` | Scroll chat |
|