@sym-bot/mesh-channel 0.1.21 → 0.1.22

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.
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "sym-mesh-channel",
3
+ "owner": {
4
+ "name": "SYM.BOT Ltd",
5
+ "email": "info@sym.bot"
6
+ },
7
+ "metadata": {
8
+ "description": "Real-time Claude-to-Claude mesh. Peer-to-peer cognitive signals over Bonjour LAN or WebSocket relay.",
9
+ "version": "0.1.22"
10
+ },
11
+ "plugins": [
12
+ {
13
+ "name": "sym-mesh-channel",
14
+ "source": "./",
15
+ "description": "Real-time Claude-to-Claude mesh. Peer-to-peer 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.1.22",
17
+ "author": {
18
+ "name": "Hongwei Xu",
19
+ "email": "hongwei@sym.bot"
20
+ },
21
+ "homepage": "https://sym.bot/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,33 +1,39 @@
1
- {
2
- "name": "sym-mesh-channel",
3
- "version": "0.1.21",
4
- "description": "Real-time Claude-to-Claude mesh. Peer-to-peer 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://sym.bot/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
- "description": "SYM relay WebSocket URL for cross-network mesh (leave empty for LAN-only via Bonjour)",
20
- "sensitive": false
21
- },
22
- "relay_token": {
23
- "description": "Relay authentication token (leave empty for LAN-only)",
24
- "sensitive": true
25
- },
26
- "allowed_peers": {
27
- "description": "Comma-separated peer node names to accept (leave empty to accept all authenticated peers)",
28
- "sensitive": false
29
- }
30
- }
31
- }
32
- ]
33
- }
1
+ {
2
+ "name": "sym-mesh-channel",
3
+ "version": "0.1.22",
4
+ "description": "Real-time Claude-to-Claude mesh. Peer-to-peer 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://sym.bot/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
+ }