let-them-talk 3.8.0 → 3.10.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 +17 -0
- package/cli.js +1 -1
- package/package.json +58 -58
- package/server.js +4035 -3819
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
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
|
+
|
|
3
20
|
## [3.8.0] - 2026-03-16
|
|
4
21
|
|
|
5
22
|
### Changed — Group Conversation Overhaul
|
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.
|
|
12
|
+
Let Them Talk — Agent Bridge v3.10.0
|
|
13
13
|
MCP message broker for inter-agent communication
|
|
14
14
|
Supports: Claude Code, Gemini CLI, Codex CLI, Ollama
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "let-them-talk",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "MCP message broker + web dashboard for inter-agent communication. Let AI CLI agents talk to each other.",
|
|
5
|
-
"main": "server.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"agent-bridge": "./cli.js",
|
|
8
|
-
"let-them-talk": "./cli.js"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"start": "node server.js",
|
|
12
|
-
"dashboard": "node dashboard.js",
|
|
13
|
-
"test": "echo \"No tests yet\""
|
|
14
|
-
},
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=16.0.0"
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"server.js",
|
|
20
|
-
"dashboard.js",
|
|
21
|
-
"dashboard.html",
|
|
22
|
-
"office/",
|
|
23
|
-
"mods/",
|
|
24
|
-
"cli.js",
|
|
25
|
-
"templates/",
|
|
26
|
-
"conversation-templates/",
|
|
27
|
-
"logo.png",
|
|
28
|
-
"LICENSE",
|
|
29
|
-
"SECURITY.md",
|
|
30
|
-
"CHANGELOG.md"
|
|
31
|
-
],
|
|
32
|
-
"keywords": [
|
|
33
|
-
"mcp",
|
|
34
|
-
"claude",
|
|
35
|
-
"claude-code",
|
|
36
|
-
"gemini-cli",
|
|
37
|
-
"codex-cli",
|
|
38
|
-
"agent",
|
|
39
|
-
"multi-agent",
|
|
40
|
-
"communication",
|
|
41
|
-
"message-broker",
|
|
42
|
-
"ai-agents",
|
|
43
|
-
"let-them-talk"
|
|
44
|
-
],
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "git+https://github.com/Dekelelz/let-them-talk.git"
|
|
48
|
-
},
|
|
49
|
-
"homepage": "https://talk.unrealai.studio",
|
|
50
|
-
"bugs": {
|
|
51
|
-
"url": "https://github.com/Dekelelz/let-them-talk/issues"
|
|
52
|
-
},
|
|
53
|
-
"author": "Dekelelz <contact@talk.unrealai.studio>",
|
|
54
|
-
"license": "SEE LICENSE IN LICENSE",
|
|
55
|
-
"dependencies": {
|
|
56
|
-
"@modelcontextprotocol/sdk": "1.27.1"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "let-them-talk",
|
|
3
|
+
"version": "3.10.0",
|
|
4
|
+
"description": "MCP message broker + web dashboard for inter-agent communication. Let AI CLI agents talk to each other.",
|
|
5
|
+
"main": "server.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"agent-bridge": "./cli.js",
|
|
8
|
+
"let-them-talk": "./cli.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"start": "node server.js",
|
|
12
|
+
"dashboard": "node dashboard.js",
|
|
13
|
+
"test": "echo \"No tests yet\""
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=16.0.0"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"server.js",
|
|
20
|
+
"dashboard.js",
|
|
21
|
+
"dashboard.html",
|
|
22
|
+
"office/",
|
|
23
|
+
"mods/",
|
|
24
|
+
"cli.js",
|
|
25
|
+
"templates/",
|
|
26
|
+
"conversation-templates/",
|
|
27
|
+
"logo.png",
|
|
28
|
+
"LICENSE",
|
|
29
|
+
"SECURITY.md",
|
|
30
|
+
"CHANGELOG.md"
|
|
31
|
+
],
|
|
32
|
+
"keywords": [
|
|
33
|
+
"mcp",
|
|
34
|
+
"claude",
|
|
35
|
+
"claude-code",
|
|
36
|
+
"gemini-cli",
|
|
37
|
+
"codex-cli",
|
|
38
|
+
"agent",
|
|
39
|
+
"multi-agent",
|
|
40
|
+
"communication",
|
|
41
|
+
"message-broker",
|
|
42
|
+
"ai-agents",
|
|
43
|
+
"let-them-talk"
|
|
44
|
+
],
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/Dekelelz/let-them-talk.git"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://talk.unrealai.studio",
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/Dekelelz/let-them-talk/issues"
|
|
52
|
+
},
|
|
53
|
+
"author": "Dekelelz <contact@talk.unrealai.studio>",
|
|
54
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@modelcontextprotocol/sdk": "1.27.1"
|
|
57
|
+
}
|
|
58
|
+
}
|