let-them-talk 3.3.0 → 3.3.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 +122 -0
- package/README.md +1 -0
- package/SECURITY.md +58 -0
- package/cli.js +1 -1
- package/dashboard.html +1 -1
- package/package.json +4 -2
- package/server.js +1 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [3.0.0] - 2026-03-14
|
|
4
|
+
|
|
5
|
+
### Added — Agent Profiles
|
|
6
|
+
- New tool: `update_profile` (display_name, avatar, bio, role)
|
|
7
|
+
- 12 built-in SVG robot avatar icons with hash-based defaults
|
|
8
|
+
- Profiles auto-created on register, persist across restarts
|
|
9
|
+
- Profile data shown in dashboard (avatars, role badges, profile popup)
|
|
10
|
+
|
|
11
|
+
### Added — Agent Workspaces
|
|
12
|
+
- 3 new tools: `workspace_write`, `workspace_read`, `workspace_list`
|
|
13
|
+
- Per-agent key-value storage (50 keys max, 100KB per value)
|
|
14
|
+
- Agents can read anyone's workspace, write only their own
|
|
15
|
+
- Dashboard "Workspaces" tab with collapsible accordion UI
|
|
16
|
+
|
|
17
|
+
### Added — Workflow Automation
|
|
18
|
+
- 3 new tools: `create_workflow`, `advance_workflow`, `workflow_status`
|
|
19
|
+
- Multi-step pipelines with auto-handoff to step assignees
|
|
20
|
+
- Dashboard "Workflows" tab with horizontal pipeline visualization
|
|
21
|
+
- Dashboard can advance/skip workflow steps
|
|
22
|
+
|
|
23
|
+
### Added — Conversation Branching
|
|
24
|
+
- 3 new tools: `fork_conversation`, `switch_branch`, `list_branches`
|
|
25
|
+
- Fork at any message point with isolated branch history
|
|
26
|
+
- All message tools branch-aware (backward compatible — main branch uses existing files)
|
|
27
|
+
- Branch tabs in dashboard
|
|
28
|
+
|
|
29
|
+
### Added — Plugin System
|
|
30
|
+
- Dynamic tool loading from `plugins/*.js` files
|
|
31
|
+
- Sandboxed execution with 30s timeout
|
|
32
|
+
- CLI: `npx let-them-talk plugin add/list/remove/enable/disable`
|
|
33
|
+
- Dashboard plugin cards with enable/disable toggles
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
- MCP tools: 17 → 27 + dynamic plugins
|
|
37
|
+
- Dashboard tabs: 2 → 4 (Messages, Tasks, Workspaces, Workflows)
|
|
38
|
+
- Branch-aware history API (`?branch=` query param)
|
|
39
|
+
- Version bump across all files (server, dashboard, CLI, package.json)
|
|
40
|
+
|
|
41
|
+
## [2.5.0] - 2026-03-14
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
- Task management system: `create_task`, `update_task`, `list_tasks` tools
|
|
45
|
+
- Kanban board in dashboard (Messages/Tasks toggle)
|
|
46
|
+
- Agent stats panel (sent/received/avg response time per agent)
|
|
47
|
+
- Shareable HTML export (/api/export endpoint)
|
|
48
|
+
- Export dropdown (HTML + Markdown formats)
|
|
49
|
+
- Conversation bookmarks (star messages, localStorage)
|
|
50
|
+
- Sound notification toggle (Web Audio API)
|
|
51
|
+
- Typing indicator for processing agents
|
|
52
|
+
- Connection quality display (SSE latency)
|
|
53
|
+
- Date separators between message groups
|
|
54
|
+
- Message grouping for consecutive same-sender messages
|
|
55
|
+
- Project auto-discover (scan nearby folders)
|
|
56
|
+
- Copy-to-clipboard prompts in onboarding
|
|
57
|
+
- Dynamic tab title with message count
|
|
58
|
+
- Dashboard footer with version
|
|
59
|
+
|
|
60
|
+
### Security
|
|
61
|
+
- Path traversal fix in `share_file` (restricted to project dir)
|
|
62
|
+
- Path traversal fix in `?project=` param (validate against registered projects)
|
|
63
|
+
- 1MB message size limit on send/broadcast/handoff
|
|
64
|
+
- 1MB request body limit on dashboard POST endpoints
|
|
65
|
+
- XSS fix in HTML export (escape agent names)
|
|
66
|
+
- CORS restricted to localhost only (was wildcard)
|
|
67
|
+
- Dashboard binds to 127.0.0.1 only (was 0.0.0.0)
|
|
68
|
+
- Registration guard on `reset` tool
|
|
69
|
+
- Removed absolute file paths from share_file responses
|
|
70
|
+
|
|
71
|
+
## [2.3.0] - 2026-03-14
|
|
72
|
+
|
|
73
|
+
### Added
|
|
74
|
+
- `handoff` tool for structured work delegation
|
|
75
|
+
- `share_file` tool for sending file contents between agents
|
|
76
|
+
- `broadcast` tool for messaging all agents at once
|
|
77
|
+
- `get_summary` tool for conversation recaps
|
|
78
|
+
- Server-Sent Events for real-time dashboard updates
|
|
79
|
+
- `fs.watch()` on data directory with debounced SSE push
|
|
80
|
+
- Graceful SSE fallback to polling
|
|
81
|
+
- Handoff message rendering (purple banner)
|
|
82
|
+
- File share message rendering (file icon + size)
|
|
83
|
+
|
|
84
|
+
## [2.1.0] - 2026-03-14
|
|
85
|
+
|
|
86
|
+
### Added
|
|
87
|
+
- Multi-agent support (any name, not just A/B)
|
|
88
|
+
- `list_agents` tool with alive/dead status
|
|
89
|
+
- `listen` tool (blocks indefinitely, never times out)
|
|
90
|
+
- Conversation threading (`reply_to` + auto `thread_id`)
|
|
91
|
+
- Message acknowledgments (`ack_message` tool)
|
|
92
|
+
- Heartbeat system (10s interval, `last_activity` tracking)
|
|
93
|
+
- Agent status: active/sleeping/dead with idle time
|
|
94
|
+
- Listening status tracking (`listening_since`)
|
|
95
|
+
- Auto-compact messages.jsonl when >500 lines
|
|
96
|
+
- Auto-archive conversations before reset
|
|
97
|
+
- Context hints when conversation exceeds 50 messages
|
|
98
|
+
- Dead recipient warnings in `send_message`
|
|
99
|
+
- Message sequence numbers for ordering
|
|
100
|
+
- `pending_count` and `agents_online` in delivery responses
|
|
101
|
+
- 4 agent templates: pair, team, review, debate
|
|
102
|
+
- CLI: `npx let-them-talk templates` command
|
|
103
|
+
- CLI: `--template` flag for guided setup
|
|
104
|
+
- Multi-CLI support: Claude Code, Gemini CLI, Codex CLI
|
|
105
|
+
- `AGENT_BRIDGE_DATA_DIR` env var in MCP config
|
|
106
|
+
|
|
107
|
+
### Fixed
|
|
108
|
+
- Heartbeat timer `.unref()` to prevent zombie processes
|
|
109
|
+
- Process exit cleanup (deregister agent on exit)
|
|
110
|
+
- Re-registration cleanup (old name removed)
|
|
111
|
+
- Stale byte offset recovery on file truncation
|
|
112
|
+
|
|
113
|
+
## [2.0.0] - 2026-03-14
|
|
114
|
+
|
|
115
|
+
### Added
|
|
116
|
+
- Initial release
|
|
117
|
+
- MCP server with stdio transport
|
|
118
|
+
- 6 tools: register, send_message, wait_for_reply, check_messages, get_history, reset
|
|
119
|
+
- Web dashboard with real-time monitoring
|
|
120
|
+
- Message injection from dashboard
|
|
121
|
+
- Dark theme UI with markdown rendering
|
|
122
|
+
- `.mcp.json` project-level configuration
|
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/let-them-talk)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://discord.gg/6Y9YgkFNJP)
|
|
5
6
|
|
|
6
7
|
**MCP server + web dashboard that lets AI CLI agents talk to each other.**
|
|
7
8
|
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
| Version | Supported |
|
|
6
|
+
| ------- | ------------------ |
|
|
7
|
+
| 3.x.x | Yes |
|
|
8
|
+
| 2.x.x | No |
|
|
9
|
+
| < 2.0 | No |
|
|
10
|
+
|
|
11
|
+
## Reporting a Vulnerability
|
|
12
|
+
|
|
13
|
+
If you discover a security vulnerability in Let Them Talk, please report it responsibly.
|
|
14
|
+
|
|
15
|
+
**Do NOT open a public GitHub issue for security vulnerabilities.**
|
|
16
|
+
|
|
17
|
+
Instead, please email **security@dos-technology.com** or use [GitHub's private vulnerability reporting](https://github.com/Dekelelz/let-them-talk/security/advisories/new).
|
|
18
|
+
|
|
19
|
+
### What to include
|
|
20
|
+
|
|
21
|
+
- Description of the vulnerability
|
|
22
|
+
- Steps to reproduce
|
|
23
|
+
- Potential impact
|
|
24
|
+
- Suggested fix (if any)
|
|
25
|
+
|
|
26
|
+
### Response timeline
|
|
27
|
+
|
|
28
|
+
- **Acknowledgment**: Within 48 hours
|
|
29
|
+
- **Initial assessment**: Within 1 week
|
|
30
|
+
- **Fix release**: As soon as possible, typically within 2 weeks
|
|
31
|
+
|
|
32
|
+
## Security Model
|
|
33
|
+
|
|
34
|
+
Let Them Talk is a **local message broker** — it passes text messages between CLI terminals via shared files on your local machine.
|
|
35
|
+
|
|
36
|
+
### What it does NOT do
|
|
37
|
+
|
|
38
|
+
- Does not give agents filesystem access (they already have it via their CLI)
|
|
39
|
+
- Does not expose anything to the internet (dashboard binds to `127.0.0.1` only)
|
|
40
|
+
- Does not store or transmit API keys
|
|
41
|
+
- Does not run any cloud services
|
|
42
|
+
- Does not execute remote code
|
|
43
|
+
|
|
44
|
+
### Built-in protections
|
|
45
|
+
|
|
46
|
+
- **CORS restriction** — dashboard only accepts requests from localhost
|
|
47
|
+
- **XSS prevention** — all user inputs are escaped before rendering
|
|
48
|
+
- **Path traversal protection** — agents cannot read files outside the project directory
|
|
49
|
+
- **Symlink protection** — follows symlinks and validates the real path
|
|
50
|
+
- **Origin enforcement** — POST/DELETE requests require valid localhost origin
|
|
51
|
+
- **SSE connection limits** — prevents connection exhaustion
|
|
52
|
+
- **Input validation** — agent names, branch names, and file paths are validated
|
|
53
|
+
- **Message size limits** — 1MB max per message
|
|
54
|
+
- **Plugin sandboxing** — plugins run with a 30-second timeout
|
|
55
|
+
|
|
56
|
+
### LAN mode
|
|
57
|
+
|
|
58
|
+
When using `--lan` mode, the dashboard is exposed to your local network only. It is never accessible from the internet.
|
package/cli.js
CHANGED
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.3.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "let-them-talk",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.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": {
|
|
@@ -22,7 +22,9 @@
|
|
|
22
22
|
"cli.js",
|
|
23
23
|
"templates/",
|
|
24
24
|
"logo.png",
|
|
25
|
-
"LICENSE"
|
|
25
|
+
"LICENSE",
|
|
26
|
+
"SECURITY.md",
|
|
27
|
+
"CHANGELOG.md"
|
|
26
28
|
],
|
|
27
29
|
"keywords": [
|
|
28
30
|
"mcp",
|
package/server.js
CHANGED
|
@@ -2021,7 +2021,7 @@ async function main() {
|
|
|
2021
2021
|
loadPlugins();
|
|
2022
2022
|
const transport = new StdioServerTransport();
|
|
2023
2023
|
await server.connect(transport);
|
|
2024
|
-
console.error('Agent Bridge MCP server v3.
|
|
2024
|
+
console.error('Agent Bridge MCP server v3.3.1 running (' + (27 + loadedPlugins.length) + ' tools)');
|
|
2025
2025
|
}
|
|
2026
2026
|
|
|
2027
2027
|
main().catch(console.error);
|