@sym-bot/mesh-channel 0.3.1 → 0.3.2

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sym-mesh-channel",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Real-time Claude-to-Claude mesh. Agent-to-agent cognitive signals over Bonjour LAN or WebSocket relay.",
5
5
  "author": {
6
6
  "name": "Hongwei Xu",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Fixed
6
+
7
+ - **Pulls in `@sym-bot/sym` 0.5.1** — fixes Mac↔Windows peer connections
8
+ over LAN. Prior releases shipped a Bonjour advertisement whose SRV
9
+ target was the bare Windows NetBIOS hostname (e.g. `xmesh-hp.`) with
10
+ no `.local` suffix. macOS mDNSResponder only resolves `.local.` mDNS
11
+ names, so Macs could discover Windows peers via bonjour browse but
12
+ failed to open the outbound TCP connection. CMBs targeted at Windows
13
+ nodes never arrived; no replies came back. Full diagnosis in sym
14
+ 0.5.1 CHANGELOG.
15
+
16
+ Upgrade required on both sides to restore Mac↔Windows traffic.
17
+ Existing Windows identities with a bare hostname are auto-migrated
18
+ on next node start; no manual config edit needed.
19
+
3
20
  ## 0.3.1
4
21
 
5
22
  ### Fixed
package/README.md CHANGED
@@ -236,7 +236,7 @@ Clear-eyed about what's not there yet:
236
236
  - **Corporate networks often block mDNS multicast.** If LAN discovery fails on the same wifi, fall back to a relay.
237
237
  - **No offline directory of known groups.** `sym_groups_discover` only shows groups with at least one node currently online. For cross-network relay-backed groups, invite URLs must be shared out of band.
238
238
  - **One mesh identity per process.** Two Claude Code sessions on the same machine with the same `SYM_NODE_NAME` will collide — the second one exits with `EIDENTITYLOCK`. Use distinct `SYM_NODE_NAME`s or install per-project (above).
239
- - **No end-to-end encryption of CMB payloads.** Transport is authenticated (Ed25519, relay tokens) but relay operators can read message bodies. E2E encryption is on the MMP roadmap.
239
+ - **E2E encryption is per-peer-pair, not universal.** CMB field content is encrypted with Curve25519 key agreement + AES-256-GCM between peers that both advertise an E2E public key on handshake. Peers without E2E support fall back to plaintext for backward compatibility. Outer frame metadata (sender ID, timestamp, lineage) stays plaintext — enough for relay forwarding and SVAF evaluation without seeing bodies.
240
240
 
241
241
  ## Troubleshooting
242
242
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sym-bot/mesh-channel",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "MCP server — real-time agent-to-agent cognition for Claude Code remote teams via the SYM mesh.",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -22,7 +22,7 @@
22
22
  ],
23
23
  "dependencies": {
24
24
  "@modelcontextprotocol/sdk": "^1.12.1",
25
- "@sym-bot/sym": "^0.5.0"
25
+ "@sym-bot/sym": "^0.5.1"
26
26
  },
27
27
  "engines": {
28
28
  "node": ">=18"