let-them-talk 4.0.0 → 4.0.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 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 v4.0.0
12
+ Let Them Talk — Agent Bridge v4.0.1
13
13
  MCP message broker for inter-agent communication
14
14
  Supports: Claude Code, Gemini CLI, Codex CLI, Ollama
15
15
 
package/dashboard.html CHANGED
@@ -11,8 +11,8 @@
11
11
  <script type="importmap">
12
12
  {
13
13
  "imports": {
14
- "three": "/lib/three/build/three.module.js",
15
- "three/addons/": "/lib/three/examples/jsm/"
14
+ "three": "https://unpkg.com/three@0.170.0/build/three.module.js",
15
+ "three/addons/": "https://unpkg.com/three@0.170.0/examples/jsm/"
16
16
  }
17
17
  }
18
18
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "let-them-talk",
3
- "version": "4.0.0",
3
+ "version": "4.0.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": {
package/server.js CHANGED
@@ -3368,7 +3368,7 @@ function toolSuggestTask() {
3368
3368
  // --- MCP Server setup ---
3369
3369
 
3370
3370
  const server = new Server(
3371
- { name: 'agent-bridge', version: '4.0.0' },
3371
+ { name: 'agent-bridge', version: '4.0.1' },
3372
3372
  { capabilities: { tools: {} } }
3373
3373
  );
3374
3374