llm-party-cli 0.1.2 → 0.2.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 +9 -6
- package/dist/index.js +1330 -138
- package/dist/llm-party +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,12 +50,13 @@ No MCP. No master/servant. No window juggling. Just peers at a terminal table.
|
|
|
50
50
|
|
|
51
51
|
### Prerequisites
|
|
52
52
|
|
|
53
|
-
Bun runtime
|
|
53
|
+
[Bun](https://bun.sh) runtime is required. At least one AI CLI must be installed and authenticated:
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
bun --version # Bun runtime
|
|
57
|
+
claude --version # Claude Code CLI
|
|
58
|
+
codex --version # OpenAI Codex CLI
|
|
59
|
+
copilot --version # GitHub Copilot CLI
|
|
59
60
|
```
|
|
60
61
|
|
|
61
62
|
If a CLI doesn't work on its own, it won't work inside llm-party.
|
|
@@ -63,7 +64,7 @@ If a CLI doesn't work on its own, it won't work inside llm-party.
|
|
|
63
64
|
### Install
|
|
64
65
|
|
|
65
66
|
```bash
|
|
66
|
-
|
|
67
|
+
bun add -g llm-party-cli
|
|
67
68
|
```
|
|
68
69
|
|
|
69
70
|
### First run
|
|
@@ -324,12 +325,14 @@ File changes made by agents are detected via `git status` after each response. N
|
|
|
324
325
|
|
|
325
326
|
| Command | What it does |
|
|
326
327
|
| ---------------- | -------------------------------------------- |
|
|
327
|
-
| `/agents` |
|
|
328
|
+
| `/agents` | Open agents panel overlay (Ctrl+P also works) |
|
|
329
|
+
| `/config` | Open config wizard |
|
|
328
330
|
| `/save <path>` | Export conversation as JSON |
|
|
329
331
|
| `/session` | Show session ID and transcript path |
|
|
330
332
|
| `/changes` | Show git-modified files |
|
|
331
333
|
| `/clear` | Clear chat display (Ctrl+L also works) |
|
|
332
334
|
| `/exit` | Quit (graceful shutdown, all adapters cleaned up) |
|
|
335
|
+
| `Ctrl+P` | Toggle agents panel |
|
|
333
336
|
| `Ctrl+C` | Exit (or copy selected text if selection active) |
|
|
334
337
|
|
|
335
338
|
<br/>
|