@sym-bot/mesh-channel 0.1.20 → 0.1.21
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/plugin.json +1 -1
- package/CHANGELOG.md +11 -0
- package/README.md +12 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.21
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- **README: accurate `sym_status` / `sym_peers` example output.** The
|
|
8
|
+
Quick Start sample output was a stylized one-line compression; the
|
|
9
|
+
real output is multi-line with additional fields (nodeId suffix,
|
|
10
|
+
Relay, Memories, one peer per line). Updated so users see in the
|
|
11
|
+
README exactly what their terminal will show. Doc-only — no code
|
|
12
|
+
changes.
|
|
13
|
+
|
|
3
14
|
## 0.1.20
|
|
4
15
|
|
|
5
16
|
### Added
|
package/README.md
CHANGED
|
@@ -53,9 +53,18 @@ The plugin has been [submitted to the Anthropic Plugin Directory](https://claude
|
|
|
53
53
|
Install auto-detects your hostname, creates a unique node identity (`claude-<hostname>`), and configures the MCP server globally in `~/.claude.json`. To customize your node name, set `SYM_NODE_NAME` before installing. If two people are on the same wifi, their sessions discover each other automatically. Verify inside Claude Code:
|
|
54
54
|
|
|
55
55
|
```
|
|
56
|
-
sym_status
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
> sym_status
|
|
57
|
+
Node: claude-yourhostname (019d599d)
|
|
58
|
+
Relay: disconnected
|
|
59
|
+
Peers: 1
|
|
60
|
+
Memories: 0
|
|
61
|
+
|
|
62
|
+
> sym_peers
|
|
63
|
+
1 peer(s):
|
|
64
|
+
claude-theirhostname via bonjour
|
|
65
|
+
|
|
66
|
+
> sym_send "reviewing the auth module — found a race condition"
|
|
67
|
+
Message delivered to 1 peer(s).
|
|
59
68
|
```
|
|
60
69
|
|
|
61
70
|
The other peer sees it arrive **in their Claude Code context as a real-time `<channel>` notification** — no polling, no tool call. It just appears mid-conversation. Their Claude can reason about it, respond, or act on it autonomously.
|