@sym-bot/mesh-channel 0.3.17 → 0.3.18
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/.mcp.json +1 -1
- package/CHANGELOG.md +6 -0
- package/package.json +2 -2
- package/server.js +8 -1
package/.mcp.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.18
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- **Directed-delivery indicators in the channel header (MMP §9.2.2).** Pins `@sym-bot/sym` to `^0.7.9`, which adds an ingestion flag to surfaced CMBs. A CMB sent directly to this node now reads as `[peer →you]`; if SVAF delivered it but did not store it (`remixed:false`), the header adds `·not-stored` so the agent knows the directed request is transient, not recallable from mesh memory later. Broadcast CMBs are unaffected.
|
|
8
|
+
|
|
3
9
|
## 0.3.17
|
|
4
10
|
|
|
5
11
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sym-bot/mesh-channel",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.18",
|
|
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.7.
|
|
25
|
+
"@sym-bot/sym": "^0.7.9",
|
|
26
26
|
"bonjour-service": "^1.3.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
package/server.js
CHANGED
|
@@ -317,8 +317,15 @@ function registerNodeHandlers(n) {
|
|
|
317
317
|
body = `${body}\n\n---PAYLOAD---\n${serialized}`;
|
|
318
318
|
payloadSuffix = ` [+payload ${serialized.length}b]`;
|
|
319
319
|
}
|
|
320
|
+
// Directed (peer-bound) delivery indicator (MMP §9.2.2). A directed CMB was
|
|
321
|
+
// addressed to THIS node — surface it as sent-to-you so the agent knows to
|
|
322
|
+
// respond. `remixed:false` means SVAF delivered it but did not ingest it
|
|
323
|
+
// into memory (transient request, not stored) — flag it so the agent does
|
|
324
|
+
// not assume it is recallable later.
|
|
325
|
+
const dirTag = entry.directed ? ' →you' : '';
|
|
326
|
+
const memTag = entry.directed && entry.remixed === false ? ' ·not-stored' : '';
|
|
320
327
|
const msgId = storeMessage(source, body);
|
|
321
|
-
pushChannel('cmb', `[${source}] ${focus}${moodSuffix}${payloadSuffix} [${msgId}]`);
|
|
328
|
+
pushChannel('cmb', `[${source}${dirTag}] ${focus}${moodSuffix}${memTag}${payloadSuffix} [${msgId}]`);
|
|
322
329
|
});
|
|
323
330
|
|
|
324
331
|
n.on('message', (from, content) => {
|