claudemesh-cli 1.18.0 → 1.19.1
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/entrypoints/mcp.js
CHANGED
|
@@ -3003,7 +3003,7 @@ __export(exports_urls, {
|
|
|
3003
3003
|
VERSION: () => VERSION,
|
|
3004
3004
|
URLS: () => URLS
|
|
3005
3005
|
});
|
|
3006
|
-
var URLS, VERSION = "1.
|
|
3006
|
+
var URLS, VERSION = "1.19.1", env;
|
|
3007
3007
|
var init_urls = __esm(() => {
|
|
3008
3008
|
URLS = {
|
|
3009
3009
|
BROKER: process.env.CLAUDEMESH_BROKER_URL ?? "wss://ic.claudemesh.com/ws",
|
|
@@ -3159,7 +3159,7 @@ async function createMesh(token, body) {
|
|
|
3159
3159
|
}
|
|
3160
3160
|
async function renameMesh(token, slug, newName) {
|
|
3161
3161
|
return request({
|
|
3162
|
-
path: `/api/
|
|
3162
|
+
path: `/api/cli/meshes/${slug}`,
|
|
3163
3163
|
method: "PATCH",
|
|
3164
3164
|
body: { name: newName },
|
|
3165
3165
|
token
|
|
@@ -3995,11 +3995,11 @@ If the channel meta contains \`subtype: reminder\`, this is a scheduled reminder
|
|
|
3995
3995
|
| remember(content, tags?) | Store persistent knowledge with optional tags. |
|
|
3996
3996
|
| recall(query) | Full-text search over mesh memory. |
|
|
3997
3997
|
| forget(id) | Soft-delete a memory entry. |
|
|
3998
|
-
|
|
|
3999
|
-
|
|
|
4000
|
-
|
|
|
4001
|
-
|
|
|
4002
|
-
|
|
|
3998
|
+
| claudemesh file share <path> [--to peer] [--tags a,b] | Share a file with the mesh, or DM it to a specific peer. Same-host fast path: when --to matches a peer on this machine, sends an absolute filepath instead of uploading (no MinIO round-trip). |
|
|
3999
|
+
| claudemesh file get <id> [--out path] | Download a shared file by id. |
|
|
4000
|
+
| claudemesh file list [query] | Find files shared in the mesh. |
|
|
4001
|
+
| claudemesh file status <id> | Check who has accessed a file. |
|
|
4002
|
+
| claudemesh file delete <id> | Remove a shared file from the mesh. |
|
|
4003
4003
|
| vector_store(collection, text, metadata?) | Store embedding in per-mesh Qdrant collection. |
|
|
4004
4004
|
| vector_search(collection, query, limit?) | Semantic search over stored embeddings. |
|
|
4005
4005
|
| vector_delete(collection, id) | Remove an embedding. |
|
|
@@ -4558,4 +4558,4 @@ startMcpServer().catch((err) => {
|
|
|
4558
4558
|
process.exit(1);
|
|
4559
4559
|
});
|
|
4560
4560
|
|
|
4561
|
-
//# debugId=
|
|
4561
|
+
//# debugId=121356BB9596F4EE64756E2164756E21
|