claudemesh-cli 0.6.2 → 0.6.4
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 +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -48987,7 +48987,9 @@ ${lines.join(`
|
|
|
48987
48987
|
const result = await client.getFile(id);
|
|
48988
48988
|
if (!result)
|
|
48989
48989
|
return text(`get_file: file ${id} not found`, true);
|
|
48990
|
-
if (result.encrypted
|
|
48990
|
+
if (result.encrypted) {
|
|
48991
|
+
if (!result.sealedKey)
|
|
48992
|
+
return text("get_file: encrypted file — no decryption key available for your session", true);
|
|
48991
48993
|
const { openSealedKey: openSealedKey2, decryptFile: decryptFile2 } = await Promise.resolve().then(() => (init_file_crypto(), exports_file_crypto));
|
|
48992
48994
|
const { ensureSodium: ensureSodium2 } = await Promise.resolve().then(() => (init_keypair(), exports_keypair));
|
|
48993
48995
|
const myPubkey = client.getSessionPubkey();
|
|
@@ -50456,7 +50458,7 @@ init_config();
|
|
|
50456
50458
|
// package.json
|
|
50457
50459
|
var package_default = {
|
|
50458
50460
|
name: "claudemesh-cli",
|
|
50459
|
-
version: "0.6.
|
|
50461
|
+
version: "0.6.4",
|
|
50460
50462
|
description: "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
|
|
50461
50463
|
keywords: [
|
|
50462
50464
|
"claude-code",
|