@sym-bot/mesh-channel 0.3.4 → 0.3.5
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/.claude-plugin/marketplace.json +40 -40
- package/.claude-plugin/plugin.json +39 -39
- package/.mcp.json +14 -14
- package/CHANGELOG.md +574 -546
- package/LICENSE +201 -201
- package/README.md +361 -361
- package/SECURITY.md +89 -89
- package/bin/install.js +603 -603
- package/package.json +49 -49
- package/server.js +916 -886
package/package.json
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@sym-bot/mesh-channel",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "MCP server — real-time agent-to-agent cognition for Claude Code remote teams via the SYM mesh.",
|
|
5
|
-
"main": "server.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"sym-mesh-channel": "server.js"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"test": "node test/plugin.test.js",
|
|
11
|
-
"postinstall": "node bin/install.js init --postinstall"
|
|
12
|
-
},
|
|
13
|
-
"files": [
|
|
14
|
-
"server.js",
|
|
15
|
-
"bin/",
|
|
16
|
-
".claude-plugin/",
|
|
17
|
-
".mcp.json",
|
|
18
|
-
"SECURITY.md",
|
|
19
|
-
"README.md",
|
|
20
|
-
"CHANGELOG.md",
|
|
21
|
-
"LICENSE"
|
|
22
|
-
],
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
25
|
-
"@sym-bot/sym": "^0.5.
|
|
26
|
-
},
|
|
27
|
-
"engines": {
|
|
28
|
-
"node": ">=18"
|
|
29
|
-
},
|
|
30
|
-
"keywords": [
|
|
31
|
-
"claude-code",
|
|
32
|
-
"claude-plugin",
|
|
33
|
-
"mcp",
|
|
34
|
-
"model-context-protocol",
|
|
35
|
-
"mesh-memory-protocol",
|
|
36
|
-
"mmp",
|
|
37
|
-
"cat7",
|
|
38
|
-
"svaf",
|
|
39
|
-
"collective-intelligence",
|
|
40
|
-
"agent-to-agent",
|
|
41
|
-
"multi-agent",
|
|
42
|
-
"cognitive-coupling",
|
|
43
|
-
"sym",
|
|
44
|
-
"sym-bot",
|
|
45
|
-
"mesh"
|
|
46
|
-
],
|
|
47
|
-
"author": "Hongwei Xu <hongwei@sym.bot> (https://sym.bot)",
|
|
48
|
-
"license": "Apache-2.0"
|
|
49
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@sym-bot/mesh-channel",
|
|
3
|
+
"version": "0.3.5",
|
|
4
|
+
"description": "MCP server — real-time agent-to-agent cognition for Claude Code remote teams via the SYM mesh.",
|
|
5
|
+
"main": "server.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"sym-mesh-channel": "server.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "node test/plugin.test.js",
|
|
11
|
+
"postinstall": "node bin/install.js init --postinstall"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"server.js",
|
|
15
|
+
"bin/",
|
|
16
|
+
".claude-plugin/",
|
|
17
|
+
".mcp.json",
|
|
18
|
+
"SECURITY.md",
|
|
19
|
+
"README.md",
|
|
20
|
+
"CHANGELOG.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
25
|
+
"@sym-bot/sym": "^0.5.8"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"claude-code",
|
|
32
|
+
"claude-plugin",
|
|
33
|
+
"mcp",
|
|
34
|
+
"model-context-protocol",
|
|
35
|
+
"mesh-memory-protocol",
|
|
36
|
+
"mmp",
|
|
37
|
+
"cat7",
|
|
38
|
+
"svaf",
|
|
39
|
+
"collective-intelligence",
|
|
40
|
+
"agent-to-agent",
|
|
41
|
+
"multi-agent",
|
|
42
|
+
"cognitive-coupling",
|
|
43
|
+
"sym",
|
|
44
|
+
"sym-bot",
|
|
45
|
+
"mesh"
|
|
46
|
+
],
|
|
47
|
+
"author": "Hongwei Xu <hongwei@sym.bot> (https://sym.bot)",
|
|
48
|
+
"license": "Apache-2.0"
|
|
49
|
+
}
|