let-them-talk 3.5.0 → 3.5.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/conversation-templates/code-review.json +11 -0
- package/conversation-templates/debug-squad.json +11 -0
- package/conversation-templates/feature-build.json +11 -0
- package/conversation-templates/research-write.json +11 -0
- package/dashboard.js +1 -1
- package/package.json +2 -2
- package/server.js +2 -2
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.5.
|
|
12
|
+
Let Them Talk — Agent Bridge v3.5.1
|
|
13
13
|
MCP message broker for inter-agent communication
|
|
14
14
|
Supports: Claude Code, Gemini CLI, Codex CLI, Ollama
|
|
15
15
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "code-review",
|
|
3
|
+
"name": "Code Review Pipeline",
|
|
4
|
+
"description": "Developer writes code, Reviewer checks it, Tester validates",
|
|
5
|
+
"agents": [
|
|
6
|
+
{ "name": "Developer", "role": "Developer", "prompt": "You are a developer. Write code as instructed. After completing, send your code to Reviewer for review." },
|
|
7
|
+
{ "name": "Reviewer", "role": "Code Reviewer", "prompt": "You are a code reviewer. Wait for code from Developer. Review it for bugs, style, and best practices. Send feedback back to Developer or approve and forward to Tester." },
|
|
8
|
+
{ "name": "Tester", "role": "QA Tester", "prompt": "You are a QA tester. Wait for approved code from Reviewer. Write and run tests. Report results back to the team." }
|
|
9
|
+
],
|
|
10
|
+
"workflow": { "name": "Code Review", "steps": ["Write Code", "Review", "Test", "Approve"] }
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "debug-squad",
|
|
3
|
+
"name": "Debug Squad",
|
|
4
|
+
"description": "Investigator finds the bug, Fixer patches it, Verifier confirms the fix",
|
|
5
|
+
"agents": [
|
|
6
|
+
{ "name": "Investigator", "role": "Bug Investigator", "prompt": "You investigate bugs. Analyze error logs, trace code paths, and identify root causes. Send findings to Fixer." },
|
|
7
|
+
{ "name": "Fixer", "role": "Bug Fixer", "prompt": "You fix bugs. Wait for findings from Investigator. Implement fixes and send to Verifier for confirmation." },
|
|
8
|
+
{ "name": "Verifier", "role": "Fix Verifier", "prompt": "You verify bug fixes. Wait for patches from Fixer. Test the fix and confirm resolution or send back for more work." }
|
|
9
|
+
],
|
|
10
|
+
"workflow": { "name": "Bug Fix", "steps": ["Investigate", "Fix", "Verify", "Close"] }
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "feature-build",
|
|
3
|
+
"name": "Feature Development",
|
|
4
|
+
"description": "Architect designs, Builder implements, Reviewer approves",
|
|
5
|
+
"agents": [
|
|
6
|
+
{ "name": "Architect", "role": "Software Architect", "prompt": "You are a software architect. Design the feature architecture, define interfaces, and create the implementation plan. Send the plan to Builder." },
|
|
7
|
+
{ "name": "Builder", "role": "Developer", "prompt": "You are a developer. Wait for architecture plans from Architect. Implement the feature following the design. Send completed code to Reviewer." },
|
|
8
|
+
{ "name": "Reviewer", "role": "Senior Reviewer", "prompt": "You are a senior reviewer. Review implementations from Builder against the architecture from Architect. Approve or request changes." }
|
|
9
|
+
],
|
|
10
|
+
"workflow": { "name": "Feature Dev", "steps": ["Design", "Implement", "Review", "Ship"] }
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "research-write",
|
|
3
|
+
"name": "Research & Write",
|
|
4
|
+
"description": "Researcher gathers info, Writer creates content, Editor polishes",
|
|
5
|
+
"agents": [
|
|
6
|
+
{ "name": "Researcher", "role": "Researcher", "prompt": "You are a researcher. Gather information on the given topic. Organize findings and send a research brief to Writer." },
|
|
7
|
+
{ "name": "Writer", "role": "Writer", "prompt": "You are a writer. Wait for research from Researcher. Write clear, well-structured content based on the findings. Send to Editor." },
|
|
8
|
+
{ "name": "Editor", "role": "Editor", "prompt": "You are an editor. Review and polish content from Writer. Check for clarity, accuracy, and style. Send back final version or request revisions." }
|
|
9
|
+
],
|
|
10
|
+
"workflow": { "name": "Content Pipeline", "steps": ["Research", "Draft", "Edit", "Publish"] }
|
|
11
|
+
}
|
package/dashboard.js
CHANGED
|
@@ -1752,7 +1752,7 @@ server.listen(PORT, LAN_MODE ? '0.0.0.0' : '127.0.0.1', () => {
|
|
|
1752
1752
|
const dataDir = resolveDataDir();
|
|
1753
1753
|
const lanIP = getLanIP();
|
|
1754
1754
|
console.log('');
|
|
1755
|
-
console.log(' Let Them Talk - Agent Bridge Dashboard v3.5.
|
|
1755
|
+
console.log(' Let Them Talk - Agent Bridge Dashboard v3.5.1');
|
|
1756
1756
|
console.log(' ============================================');
|
|
1757
1757
|
console.log(' Dashboard: http://localhost:' + PORT);
|
|
1758
1758
|
if (LAN_MODE && lanIP) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "let-them-talk",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.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": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"type": "git",
|
|
45
45
|
"url": "git+https://github.com/Dekelelz/let-them-talk.git"
|
|
46
46
|
},
|
|
47
|
-
"homepage": "https://
|
|
47
|
+
"homepage": "https://talk.unrealai.studio",
|
|
48
48
|
"bugs": {
|
|
49
49
|
"url": "https://github.com/Dekelelz/let-them-talk/issues"
|
|
50
50
|
},
|
package/server.js
CHANGED
|
@@ -1648,7 +1648,7 @@ function toolListBranches() {
|
|
|
1648
1648
|
// --- MCP Server setup ---
|
|
1649
1649
|
|
|
1650
1650
|
const server = new Server(
|
|
1651
|
-
{ name: 'agent-bridge', version: '3.5.
|
|
1651
|
+
{ name: 'agent-bridge', version: '3.5.1' },
|
|
1652
1652
|
{ capabilities: { tools: {} } }
|
|
1653
1653
|
);
|
|
1654
1654
|
|
|
@@ -2190,7 +2190,7 @@ async function main() {
|
|
|
2190
2190
|
ensureDataDir();
|
|
2191
2191
|
const transport = new StdioServerTransport();
|
|
2192
2192
|
await server.connect(transport);
|
|
2193
|
-
console.error('Agent Bridge MCP server v3.5.
|
|
2193
|
+
console.error('Agent Bridge MCP server v3.5.1 running (29 tools)');
|
|
2194
2194
|
}
|
|
2195
2195
|
|
|
2196
2196
|
main().catch(console.error);
|