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 +1 -1
- package/dashboard.html +2 -2
- package/package.json +1 -1
- package/server.js +1 -1
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.
|
|
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": "/
|
|
15
|
-
"three/addons/": "/
|
|
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
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.
|
|
3371
|
+
{ name: 'agent-bridge', version: '4.0.1' },
|
|
3372
3372
|
{ capabilities: { tools: {} } }
|
|
3373
3373
|
);
|
|
3374
3374
|
|