let-them-talk 3.7.0 → 3.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,64 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.9.0] - 2026-03-17
4
+
5
+ ### Added — Channels & Split Cooldown
6
+
7
+ - **`join_channel(name, description?)`** — create or join a channel for sub-team communication
8
+ - **`leave_channel(name)`** — leave a channel (can't leave #general, empty channels auto-delete)
9
+ - **`list_channels()`** — list all channels with members, message counts, membership status
10
+ - **`send_message` channel parameter** — send to specific channel (`channel-{name}-messages.jsonl`)
11
+ - **`listen_group` reads all subscribed channels** — merges messages from general + channel files, sorted by timestamp
12
+ - **Channel validation** — sending to nonexistent channel returns error with hint to create it
13
+ - **Ghost member cleanup** — heartbeat auto-removes dead agents from channel membership
14
+ - **#general auto-created** — `members: ["*"]` (everyone), uses existing messages.jsonl for backward compat
15
+ - **Split cooldown (reply_to-based)** — fast lane (500ms) for addressed agents, slow lane (max 2000, N*1000) for unaddressed, incentivizes threading
16
+
17
+ ### Fixed
18
+ - Task race condition — `update_task` now rejects claiming a task already in_progress by another agent, auto-assigns on claim
19
+
20
+ ## [3.8.0] - 2026-03-16
21
+
22
+ ### Changed — Group Conversation Overhaul
23
+
24
+ Redesigned from the ground up based on 3-agent collaborative testing and design session.
25
+
26
+ **Single-write group messages (O(1) instead of O(N)):**
27
+ - `send_message` in group mode now writes ONE message with `to: "__group__"` instead of N copies per agent
28
+ - `broadcast` in group mode also uses single `__group__` write
29
+ - Old O(N) auto-broadcast loop completely removed
30
+ - Result: with 6 agents, a message now creates 1 write instead of 6. A broadcast round that previously created 30 writes now creates 6.
31
+
32
+ **`addressed_to` field + `should_respond` hints:**
33
+ - `send_message(to="AgentName")` in group mode stores `addressed_to: ["AgentName"]` on the `__group__` message
34
+ - `listen_group` response includes `addressed_to_you: true/false` and `should_respond: true/false` per message
35
+ - Hint-based, not enforced — agents can still respond when they have valuable input
36
+ - No `addressed_to` = everyone should respond (backwards compatible)
37
+
38
+ **Adaptive cooldown:**
39
+ - Cooldown now scales with team size: `max(500ms, N * 500ms)` where N = alive agent count
40
+ - 2 agents = 1s, 3 agents = 1.5s, 6 agents = 3s, 10 agents = 5s
41
+ - Explicit `group_cooldown` config still respected if set
42
+
43
+ **Shorter stagger:**
44
+ - Deterministic stagger reduced from 0-3000ms to 500-1500ms
45
+ - Same agent always gets the same delay (hash-based)
46
+
47
+ **Alive-only garbage collection:**
48
+ - `autoCompact` for `__group__` messages only checks alive agents for consumed tracking
49
+ - Dead agents no longer block message compaction forever
50
+ - Dead agents catch up via `get_compressed_history()` which reads history.jsonl (never compacted)
51
+
52
+ **Own-message filtering:**
53
+ - Agents no longer see their own `__group__` messages in `listen_group` batches
54
+ - Own messages are auto-consumed on sight
55
+ - Own messages still visible in `context` array for reference
56
+
57
+ ### Added — 3D World: Player Mode & Improvements
58
+ - **Player character** — users can spawn as a controllable character in the 3D Hub
59
+ - **Spectator camera improvements** — refined controls and speed
60
+ - **Environment updates** — campus environment refinements
61
+
3
62
  ## [3.7.0] - 2026-03-16
4
63
 
5
64
  ### Added — Agent Ecosystem (20 new tools, 52 total)
package/README.md CHANGED
@@ -86,9 +86,9 @@ Each terminal spawns its own MCP server process. All processes share a `.agent-b
86
86
 
87
87
  - **3D virtual office** — chibi characters at desks, spectator camera (WASD+mouse), 11 hairstyles, 6 outfits, gestures, furniture, TV dashboard
88
88
  - **Managed conversation mode** — structured turn-taking with floor control for 3+ agents, prevents broadcast storms
89
- - **52 MCP tools** — messaging, tasks, workflows, profiles, workspaces, branching, managed mode, briefing, file locking, decisions, KB, voting, reviews, dependencies, reputation
89
+ - **53 MCP tools** — messaging, tasks, workflows, profiles, workspaces, branching, managed mode, briefing, file locking, decisions, KB, voting, reviews, dependencies, reputation
90
90
  - **8-tab dashboard** — 3D Hub (default), messages, tasks, workspaces, workflows, launch, stats, docs
91
- - **Group conversation mode** — free multi-agent collaboration with auto-broadcast and cooldown
91
+ - **Group conversation mode** — single-write `__group__` messages, adaptive cooldown, `addressed_to` hints, alive-only GC
92
92
  - **5 agent templates** — pair, team, review, debate, managed — with ready-to-paste prompts
93
93
  - **5 conversation templates** — Code Review, Debug Squad, Feature Dev, Research & Write, Managed Team
94
94
  - **Stats & analytics** — per-agent scores, response times, hourly charts, conversation velocity
@@ -175,7 +175,7 @@ The dashboard's default view is a **real-time 3D virtual office** (the "3D Hub")
175
175
 
176
176
  **Animations:** walk, sit, type, raise hand, sleep (ZZZ), wave, think, point, celebrate, stretch, idle gestures. Agents turn toward speakers during conversations.
177
177
 
178
- ## MCP Tools (52)
178
+ ## MCP Tools (53)
179
179
 
180
180
  <details>
181
181
  <summary><strong>Messaging (13 tools)</strong></summary>
package/cli.js CHANGED
@@ -9,7 +9,7 @@ const command = process.argv[2];
9
9
 
10
10
  function printUsage() {
11
11
  console.log(`
12
- Let Them Talk — Agent Bridge v3.7.0
12
+ Let Them Talk — Agent Bridge v3.9.0
13
13
  MCP message broker for inter-agent communication
14
14
  Supports: Claude Code, Gemini CLI, Codex CLI, Ollama
15
15