let-them-talk 3.2.0 → 3.2.1
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 +4 -8
- package/dashboard.html +1 -1
- package/dashboard.js +1 -1
- package/package.json +2 -2
- package/server.js +1 -1
package/cli.js
CHANGED
|
@@ -8,7 +8,7 @@ const command = process.argv[2];
|
|
|
8
8
|
|
|
9
9
|
function printUsage() {
|
|
10
10
|
console.log(`
|
|
11
|
-
Let Them Talk — Agent Bridge v3.
|
|
11
|
+
Let Them Talk — Agent Bridge v3.2.0
|
|
12
12
|
MCP message broker for inter-agent communication
|
|
13
13
|
Supports: Claude Code, Gemini CLI, Codex CLI
|
|
14
14
|
|
|
@@ -232,13 +232,9 @@ function reset() {
|
|
|
232
232
|
console.log(' No data directory found. Nothing to reset.');
|
|
233
233
|
return;
|
|
234
234
|
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
fs.unlinkSync(path.join(targetDir, f));
|
|
239
|
-
count++;
|
|
240
|
-
}
|
|
241
|
-
console.log(` Cleared ${count} file(s) from ${targetDir}`);
|
|
235
|
+
fs.rmSync(targetDir, { recursive: true, force: true });
|
|
236
|
+
fs.mkdirSync(targetDir, { recursive: true });
|
|
237
|
+
console.log(` Cleared all data from ${targetDir}`);
|
|
242
238
|
}
|
|
243
239
|
|
|
244
240
|
function getTemplates() {
|
package/dashboard.html
CHANGED
|
@@ -2471,7 +2471,7 @@
|
|
|
2471
2471
|
</div>
|
|
2472
2472
|
</div>
|
|
2473
2473
|
<div class="app-footer">
|
|
2474
|
-
<span>Let Them Talk v3.
|
|
2474
|
+
<span>Let Them Talk v3.2.0</span>
|
|
2475
2475
|
</div>
|
|
2476
2476
|
<div class="profile-popup" id="profile-popup" onclick="event.stopPropagation()">
|
|
2477
2477
|
<div class="profile-popup-header">
|
package/dashboard.js
CHANGED
|
@@ -3,7 +3,7 @@ const http = require('http');
|
|
|
3
3
|
const fs = require('fs');
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const os = require('os');
|
|
6
|
-
const {
|
|
6
|
+
const { spawn } = require('child_process');
|
|
7
7
|
|
|
8
8
|
const PORT = parseInt(process.env.AGENT_BRIDGE_PORT || '3000', 10);
|
|
9
9
|
let LAN_MODE = process.env.AGENT_BRIDGE_LAN === 'true';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "let-them-talk",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "MCP message broker + web dashboard for inter-agent communication. Let AI CLI agents talk to each other.",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"bin": {
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
"author": "Dekelelz",
|
|
49
49
|
"license": "MIT",
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@modelcontextprotocol/sdk": "1.
|
|
51
|
+
"@modelcontextprotocol/sdk": "1.27.1"
|
|
52
52
|
}
|
|
53
53
|
}
|
package/server.js
CHANGED
|
@@ -1970,7 +1970,7 @@ async function main() {
|
|
|
1970
1970
|
loadPlugins();
|
|
1971
1971
|
const transport = new StdioServerTransport();
|
|
1972
1972
|
await server.connect(transport);
|
|
1973
|
-
console.error('Agent Bridge MCP server v3.
|
|
1973
|
+
console.error('Agent Bridge MCP server v3.2.0 running (' + (27 + loadedPlugins.length) + ' tools)');
|
|
1974
1974
|
}
|
|
1975
1975
|
|
|
1976
1976
|
main().catch(console.error);
|