let-them-talk 5.4.1 → 5.4.3
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 +42 -2
- package/USAGE.md +1 -1
- package/cli.js +1184 -1245
- package/conversation-templates/autonomous-feature.json +4 -4
- package/conversation-templates/code-review.json +3 -3
- package/conversation-templates/debug-squad.json +3 -3
- package/conversation-templates/feature-build.json +3 -3
- package/conversation-templates/research-write.json +3 -3
- package/dashboard.html +0 -19
- package/dashboard.js +7 -50
- package/package.json +1 -1
- package/scripts/check-dashboard-control-plane.js +7 -63
- package/server.js +12 -250
- package/templates/debate.json +2 -2
- package/templates/managed.json +4 -4
- package/templates/pair.json +2 -2
- package/templates/review.json +2 -2
- package/templates/team.json +3 -3
package/README.md
CHANGED
|
@@ -76,7 +76,7 @@ Open a third terminal, tell that agent to register as `Bob`, and the two will st
|
|
|
76
76
|
|
|
77
77
|
## ✨ Features
|
|
78
78
|
|
|
79
|
-
- **
|
|
79
|
+
- **65 MCP tools** for the full coordination surface — `register`, `send_message`, `broadcast`, `listen_group`, `get_work`, `verify_and_advance`, `create_task`, `start_plan`, `advance_workflow`, `lock_file`, `log_decision`, `kb_write`, `call_vote`, `submit_review`, `handoff`, and 50+ more.
|
|
80
80
|
- **Canonical runtime** — event-backed state under `.agent-bridge/runtime/` with replay, projections, and branch-local isolation.
|
|
81
81
|
- **Branches as full execution contexts** — messages, tasks, workflows, sessions, evidence, governance (decisions, KB, reviews, votes, rules, progress) all switch together on a branch change.
|
|
82
82
|
- **Sessions + evidence-backed completion** — first-class session records; "done" is authoritative only when structured evidence is recorded (`summary`, `verification`, `files_changed`, `confidence`, `recorded_at`, `recorded_by_session`).
|
|
@@ -309,7 +309,7 @@ The verify suite doesn't claim to cover every provider or runtime matrix, and do
|
|
|
309
309
|
- **Dashboard binds to `127.0.0.1` by default.** LAN mode (`--lan`) requires explicit enablement and uses a file-based auth token.
|
|
310
310
|
- **Rate-limited** API endpoints on non-localhost requests.
|
|
311
311
|
- **No telemetry, no cloud.** Everything runs locally.
|
|
312
|
-
- **0 known vulnerabilities** in the shipped tarball as of v5.4.
|
|
312
|
+
- **0 known vulnerabilities** in the shipped tarball as of v5.4.3.
|
|
313
313
|
- **Sensitive-path blocks** on file-share: `.env`, `.pem`, `.key`, `.lan-token`, `mcp.json`, and the agent-bridge data directory cannot be shared.
|
|
314
314
|
- See [`SECURITY.md`](SECURITY.md) for the disclosure policy.
|
|
315
315
|
|
|
@@ -327,6 +327,46 @@ Source-of-truth docs:
|
|
|
327
327
|
|
|
328
328
|
---
|
|
329
329
|
|
|
330
|
+
## 🧾 Commands reference
|
|
331
|
+
|
|
332
|
+
Full CLI surface for copy-paste convenience:
|
|
333
|
+
|
|
334
|
+
```bash
|
|
335
|
+
# Setup & init
|
|
336
|
+
npx let-them-talk init
|
|
337
|
+
npx let-them-talk init --claude
|
|
338
|
+
npx let-them-talk init --gemini
|
|
339
|
+
npx let-them-talk init --codex
|
|
340
|
+
npx let-them-talk init --all
|
|
341
|
+
npx let-them-talk init --ollama
|
|
342
|
+
npx let-them-talk init --template <name>
|
|
343
|
+
|
|
344
|
+
# Packaged helpers via npx
|
|
345
|
+
npx let-them-talk dashboard
|
|
346
|
+
npx let-them-talk status
|
|
347
|
+
npx let-them-talk templates
|
|
348
|
+
npx let-them-talk uninstall
|
|
349
|
+
npx let-them-talk help
|
|
350
|
+
|
|
351
|
+
# After init, local launcher (no re-download)
|
|
352
|
+
node .agent-bridge/launch.js
|
|
353
|
+
node .agent-bridge/launch.js --lan
|
|
354
|
+
node .agent-bridge/launch.js status
|
|
355
|
+
node .agent-bridge/launch.js msg <agent> <text>
|
|
356
|
+
node .agent-bridge/launch.js reset
|
|
357
|
+
node .agent-bridge/launch.js migrate
|
|
358
|
+
|
|
359
|
+
# Verification (run inside agent-bridge/)
|
|
360
|
+
npm test
|
|
361
|
+
npm run verify
|
|
362
|
+
npm run verify:contracts
|
|
363
|
+
npm run verify:replay
|
|
364
|
+
npm run verify:invariants
|
|
365
|
+
npm run verify:smoke
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
---
|
|
369
|
+
|
|
330
370
|
## 💬 Community
|
|
331
371
|
|
|
332
372
|
- [Discord](https://discord.gg/6Y9YgkFNJP) — questions, show-and-tell, feedback
|
package/USAGE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- Generated from ../USAGE.md by scripts/sync-packaged-docs.js for published package consumers. -->
|
|
2
2
|
|
|
3
|
-
# Let Them Talk Usage Guide v5.4.
|
|
3
|
+
# Let Them Talk Usage Guide v5.4.3
|
|
4
4
|
|
|
5
5
|
This guide is the short operator view of the current runtime. For normative architecture details, use the docs under `docs/architecture/`.
|
|
6
6
|
|