let-them-talk 3.6.0 → 3.6.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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.6.1] - 2026-03-16
4
+
5
+ ### Fixed
6
+ - **3D Hub black screen on page load** — the office module loads asynchronously, but the initial `switchView('office')` fired before `office3dStart` was defined. Added auto-start at end of module so the 3D Hub loads immediately on refresh.
7
+
3
8
  ## [3.6.0] - 2026-03-16
4
9
 
5
10
  ### Added — Managed Conversation Mode
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.6.0
12
+ Let Them Talk — Agent Bridge v3.6.1
13
13
  MCP message broker for inter-agent communication
14
14
  Supports: Claude Code, Gemini CLI, Codex CLI, Ollama
15
15
 
package/office/index.js CHANGED
@@ -335,3 +335,9 @@ document.addEventListener('visibilitychange', function() {
335
335
  window.office3dStart();
336
336
  }
337
337
  });
338
+
339
+ // Auto-start if 3D Hub is already the active view when this module finishes loading
340
+ // (module loads async, so switchView('office') may have already fired before we defined office3dStart)
341
+ if (window.activeView === 'office') {
342
+ window.office3dStart();
343
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "let-them-talk",
3
- "version": "3.6.0",
3
+ "version": "3.6.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
@@ -2094,7 +2094,7 @@ function toolListBranches() {
2094
2094
  // --- MCP Server setup ---
2095
2095
 
2096
2096
  const server = new Server(
2097
- { name: 'agent-bridge', version: '3.6.0' },
2097
+ { name: 'agent-bridge', version: '3.6.1' },
2098
2098
  { capabilities: { tools: {} } }
2099
2099
  );
2100
2100
 
@@ -2698,7 +2698,7 @@ async function main() {
2698
2698
  ensureDataDir();
2699
2699
  const transport = new StdioServerTransport();
2700
2700
  await server.connect(transport);
2701
- console.error('Agent Bridge MCP server v3.6.0 running (32 tools)');
2701
+ console.error('Agent Bridge MCP server v3.6.1 running (32 tools)');
2702
2702
  }
2703
2703
 
2704
2704
  main().catch(console.error);