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.
@@ -3003,7 +3003,7 @@ __export(exports_urls, {
3003
3003
  VERSION: () => VERSION,
3004
3004
  URLS: () => URLS
3005
3005
  });
3006
- var URLS, VERSION = "1.18.0", env;
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/my/meshes/${slug}`,
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
- | share_file(path, name?, tags?) | Share a persistent file with the mesh. |
3999
- | get_file(id, save_to) | Download a shared file to a local path. |
4000
- | list_files(query?, from?) | Find files shared in the mesh. |
4001
- | file_status(id) | Check who has accessed a file. |
4002
- | delete_file(id) | Remove a shared file from the mesh. |
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=2941BC66A127EECB64756E2164756E21
4561
+ //# debugId=121356BB9596F4EE64756E2164756E21