claudemesh-cli 0.5.2 → 0.5.3
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/dist/index.js +11 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -48573,6 +48573,10 @@ ${rows.join(`
|
|
|
48573
48573
|
if (messageMode !== "off") {
|
|
48574
48574
|
const pushPollTimer = setInterval(async () => {
|
|
48575
48575
|
const buffered = client.drainPushBuffer();
|
|
48576
|
+
if (buffered.length > 0) {
|
|
48577
|
+
process.stderr.write(`[claudemesh] poll: ${buffered.length} message(s) to push
|
|
48578
|
+
`);
|
|
48579
|
+
}
|
|
48576
48580
|
for (const msg of buffered) {
|
|
48577
48581
|
const fromPubkey = msg.senderPubkey || "";
|
|
48578
48582
|
const fromName = fromPubkey ? await resolvePeerName(client, fromPubkey) : "unknown";
|
|
@@ -48606,7 +48610,12 @@ ${rows.join(`
|
|
|
48606
48610
|
}
|
|
48607
48611
|
}
|
|
48608
48612
|
});
|
|
48609
|
-
|
|
48613
|
+
process.stderr.write(`[claudemesh] pushed: from=${fromName} content=${content.slice(0, 60)}
|
|
48614
|
+
`);
|
|
48615
|
+
} catch (pushErr) {
|
|
48616
|
+
process.stderr.write(`[claudemesh] push FAILED: ${pushErr}
|
|
48617
|
+
`);
|
|
48618
|
+
}
|
|
48610
48619
|
}
|
|
48611
48620
|
}, 1000);
|
|
48612
48621
|
pushPollTimer.unref();
|
|
@@ -49555,7 +49564,7 @@ init_config();
|
|
|
49555
49564
|
// package.json
|
|
49556
49565
|
var package_default = {
|
|
49557
49566
|
name: "claudemesh-cli",
|
|
49558
|
-
version: "0.5.
|
|
49567
|
+
version: "0.5.3",
|
|
49559
49568
|
description: "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
|
|
49560
49569
|
keywords: [
|
|
49561
49570
|
"claude-code",
|