@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
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "sym-mesh-channel",
|
|
3
|
-
"owner": {
|
|
4
|
-
"name": "SYM.BOT",
|
|
5
|
-
"email": "info@sym.bot"
|
|
6
|
-
},
|
|
7
|
-
"metadata": {
|
|
8
|
-
"description": "Real-time Claude-to-Claude mesh. Agent-to-agent cognitive signals over Bonjour LAN or WebSocket relay.",
|
|
9
|
-
"version": "0.2.0"
|
|
10
|
-
},
|
|
11
|
-
"plugins": [
|
|
12
|
-
{
|
|
13
|
-
"name": "sym-mesh-channel",
|
|
14
|
-
"source": "./",
|
|
15
|
-
"description": "Real-time Claude-to-Claude mesh. Agent-to-agent cognitive signals over Bonjour LAN or WebSocket relay. Implements the Mesh Memory Protocol (MMP) for structured cognitive state exchange between Claude Code sessions.",
|
|
16
|
-
"version": "0.2.0",
|
|
17
|
-
"author": {
|
|
18
|
-
"name": "Hongwei Xu",
|
|
19
|
-
"email": "hongwei@sym.bot"
|
|
20
|
-
},
|
|
21
|
-
"homepage": "https://meshcognition.org/spec/mmp",
|
|
22
|
-
"repository": "https://github.com/sym-bot/sym-mesh-channel",
|
|
23
|
-
"license": "Apache-2.0",
|
|
24
|
-
"keywords": [
|
|
25
|
-
"mesh",
|
|
26
|
-
"p2p",
|
|
27
|
-
"mcp",
|
|
28
|
-
"channel",
|
|
29
|
-
"agents",
|
|
30
|
-
"multi-agent",
|
|
31
|
-
"bonjour",
|
|
32
|
-
"cognitive",
|
|
33
|
-
"svaf",
|
|
34
|
-
"mmp"
|
|
35
|
-
],
|
|
36
|
-
"category": "agents",
|
|
37
|
-
"tags": ["mesh", "cognitive", "channel", "mcp", "multi-agent"]
|
|
38
|
-
}
|
|
39
|
-
]
|
|
40
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "sym-mesh-channel",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "SYM.BOT",
|
|
5
|
+
"email": "info@sym.bot"
|
|
6
|
+
},
|
|
7
|
+
"metadata": {
|
|
8
|
+
"description": "Real-time Claude-to-Claude mesh. Agent-to-agent cognitive signals over Bonjour LAN or WebSocket relay.",
|
|
9
|
+
"version": "0.2.0"
|
|
10
|
+
},
|
|
11
|
+
"plugins": [
|
|
12
|
+
{
|
|
13
|
+
"name": "sym-mesh-channel",
|
|
14
|
+
"source": "./",
|
|
15
|
+
"description": "Real-time Claude-to-Claude mesh. Agent-to-agent cognitive signals over Bonjour LAN or WebSocket relay. Implements the Mesh Memory Protocol (MMP) for structured cognitive state exchange between Claude Code sessions.",
|
|
16
|
+
"version": "0.2.0",
|
|
17
|
+
"author": {
|
|
18
|
+
"name": "Hongwei Xu",
|
|
19
|
+
"email": "hongwei@sym.bot"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://meshcognition.org/spec/mmp",
|
|
22
|
+
"repository": "https://github.com/sym-bot/sym-mesh-channel",
|
|
23
|
+
"license": "Apache-2.0",
|
|
24
|
+
"keywords": [
|
|
25
|
+
"mesh",
|
|
26
|
+
"p2p",
|
|
27
|
+
"mcp",
|
|
28
|
+
"channel",
|
|
29
|
+
"agents",
|
|
30
|
+
"multi-agent",
|
|
31
|
+
"bonjour",
|
|
32
|
+
"cognitive",
|
|
33
|
+
"svaf",
|
|
34
|
+
"mmp"
|
|
35
|
+
],
|
|
36
|
+
"category": "agents",
|
|
37
|
+
"tags": ["mesh", "cognitive", "channel", "mcp", "multi-agent"]
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "sym-mesh-channel",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "Real-time Claude-to-Claude mesh. Agent-to-agent cognitive signals over Bonjour LAN or WebSocket relay.",
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "Hongwei Xu",
|
|
7
|
-
"email": "hongwei@sym.bot",
|
|
8
|
-
"url": "https://sym.bot"
|
|
9
|
-
},
|
|
10
|
-
"homepage": "https://meshcognition.org/spec/mmp",
|
|
11
|
-
"repository": "https://github.com/sym-bot/sym-mesh-channel",
|
|
12
|
-
"license": "Apache-2.0",
|
|
13
|
-
"keywords": ["mesh", "p2p", "mcp", "channel", "agents", "multi-agent", "bonjour", "cognitive", "svaf", "mmp"],
|
|
14
|
-
"channels": [
|
|
15
|
-
{
|
|
16
|
-
"server": "claude-sym-mesh",
|
|
17
|
-
"userConfig": {
|
|
18
|
-
"relay_url": {
|
|
19
|
-
"type": "string",
|
|
20
|
-
"title": "Relay URL",
|
|
21
|
-
"description": "SYM relay WebSocket URL for cross-network mesh (leave empty for LAN-only via Bonjour)",
|
|
22
|
-
"sensitive": false
|
|
23
|
-
},
|
|
24
|
-
"relay_token": {
|
|
25
|
-
"type": "string",
|
|
26
|
-
"title": "Relay Token",
|
|
27
|
-
"description": "Relay authentication token (leave empty for LAN-only)",
|
|
28
|
-
"sensitive": true
|
|
29
|
-
},
|
|
30
|
-
"allowed_peers": {
|
|
31
|
-
"type": "string",
|
|
32
|
-
"title": "Allowed Peers",
|
|
33
|
-
"description": "Comma-separated peer node names to accept (leave empty to accept all authenticated peers)",
|
|
34
|
-
"sensitive": false
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
]
|
|
39
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "sym-mesh-channel",
|
|
3
|
+
"version": "0.3.5",
|
|
4
|
+
"description": "Real-time Claude-to-Claude mesh. Agent-to-agent cognitive signals over Bonjour LAN or WebSocket relay.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Hongwei Xu",
|
|
7
|
+
"email": "hongwei@sym.bot",
|
|
8
|
+
"url": "https://sym.bot"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://meshcognition.org/spec/mmp",
|
|
11
|
+
"repository": "https://github.com/sym-bot/sym-mesh-channel",
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"keywords": ["mesh", "p2p", "mcp", "channel", "agents", "multi-agent", "bonjour", "cognitive", "svaf", "mmp"],
|
|
14
|
+
"channels": [
|
|
15
|
+
{
|
|
16
|
+
"server": "claude-sym-mesh",
|
|
17
|
+
"userConfig": {
|
|
18
|
+
"relay_url": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"title": "Relay URL",
|
|
21
|
+
"description": "SYM relay WebSocket URL for cross-network mesh (leave empty for LAN-only via Bonjour)",
|
|
22
|
+
"sensitive": false
|
|
23
|
+
},
|
|
24
|
+
"relay_token": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"title": "Relay Token",
|
|
27
|
+
"description": "Relay authentication token (leave empty for LAN-only)",
|
|
28
|
+
"sensitive": true
|
|
29
|
+
},
|
|
30
|
+
"allowed_peers": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"title": "Allowed Peers",
|
|
33
|
+
"description": "Comma-separated peer node names to accept (leave empty to accept all authenticated peers)",
|
|
34
|
+
"sensitive": false
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|
package/.mcp.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
{
|
|
2
|
-
"mcpServers": {
|
|
3
|
-
"claude-sym-mesh": {
|
|
4
|
-
"command": "node",
|
|
5
|
-
"args": ["./server.js"],
|
|
6
|
-
"cwd": "${CLAUDE_PLUGIN_ROOT}",
|
|
7
|
-
"env": {
|
|
8
|
-
"SYM_RELAY_URL": "${user_config.relay_url}",
|
|
9
|
-
"SYM_RELAY_TOKEN": "${user_config.relay_token}",
|
|
10
|
-
"SYM_ALLOWED_PEERS": "${user_config.allowed_peers}"
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"claude-sym-mesh": {
|
|
4
|
+
"command": "node",
|
|
5
|
+
"args": ["./server.js"],
|
|
6
|
+
"cwd": "${CLAUDE_PLUGIN_ROOT}",
|
|
7
|
+
"env": {
|
|
8
|
+
"SYM_RELAY_URL": "${user_config.relay_url}",
|
|
9
|
+
"SYM_RELAY_TOKEN": "${user_config.relay_token}",
|
|
10
|
+
"SYM_ALLOWED_PEERS": "${user_config.allowed_peers}"
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|