let-them-talk 3.9.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/cli.js +1 -1
- package/package.json +58 -58
- package/server.js +4035 -4002
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
|
+
}
|