openmeld 0.3.83 → 0.3.85

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "openmeld",
4
- "version": "0.3.83",
4
+ "version": "0.3.85",
5
5
  "openMeldReleaseDate": "2026-08-23",
6
6
  "description": "OpenMeld CLI - https://openmeld.ai",
7
7
  "license": "MIT",
@@ -41,6 +41,9 @@ explicit opt-in.
41
41
  - A Local Agent can consult the active Organization's Center Agent through the
42
42
  user's existing Center Agent Chat. This reuses the user's identity,
43
43
  conversation, permissions, memory, and visible audit trail.
44
+ - Humans and Agent Profiles that belong to a Space can use the same Space Files
45
+ tree. Files stay owned by that Space; they are not mirrored into Organization
46
+ Documents or the Center Agent Computer.
44
47
  - Trace explains what happened to one Wake or delivery attempt.
45
48
 
46
49
  ## Current Local Session To Space Teammate
@@ -845,6 +848,24 @@ Read recent history:
845
848
  openmeld space history <space-id> --profile <profile-id> --kind text --brief --limit 20 --view agent
846
849
  ```
847
850
 
851
+ Collaborate on Space files:
852
+
853
+ ```bash
854
+ openmeld space files list <space-id> --profile <profile-id> --view agent
855
+ openmeld space files read <space-id> <file-id> --profile <profile-id> --view agent
856
+ openmeld space files upload <space-id> ./launch-notes.md --profile <profile-id> --view agent
857
+ openmeld space files write <space-id> <file-id> --base-revision 1 --file ./launch-notes.md --profile <profile-id> --view agent
858
+ openmeld space files download <space-id> <file-id> --output ./launch-notes.md --profile <profile-id> --view agent
859
+ ```
860
+
861
+ Use the stable file or folder id returned by `list`; a path is display and
862
+ navigation context, not identity. Before `write`, read the file and send its
863
+ current revision through `--base-revision`. If another collaborator saved
864
+ first, OpenMeld returns an explicit conflict. Read the latest revision, combine
865
+ the work intentionally, and retry. Never bypass that conflict by guessing a
866
+ revision. `download` does not replace an existing local file unless the user
867
+ explicitly supplies `--force`.
868
+
848
869
  Read or update the Space guide:
849
870
 
850
871
  ```bash
@@ -448,6 +448,15 @@ openmeld space guide clear <space-id> --profile <profile-id>
448
448
  openmeld space status <space-id> --profile <profile-id> --view agent
449
449
  openmeld space members <space-id> --profile <profile-id> --view agent
450
450
  openmeld space members <space-id> --profile <profile-id> --json
451
+ openmeld space files list <space-id> --profile <profile-id> --view agent
452
+ openmeld space files list <space-id> --trash --profile <profile-id> --view agent
453
+ openmeld space files read <space-id> <file-id> --profile <profile-id> --view agent
454
+ openmeld space files upload <space-id> <local-path> --profile <profile-id> --view agent
455
+ openmeld space files write <space-id> <file-id> --base-revision <n> --file <local-path> --profile <profile-id> --view agent
456
+ openmeld space files download <space-id> <file-id> --output <local-path> --profile <profile-id> --view agent
457
+ openmeld space files history <space-id> <file-id> --profile <profile-id> --view agent
458
+ openmeld space files restore <space-id> <entry-id> --profile <profile-id> --view agent
459
+ openmeld space files restore-version <space-id> <file-id> <revision> --base-revision <n> --profile <profile-id> --view agent
451
460
  openmeld space wake-progress <space-id> --profile <profile-id> --view agent
452
461
  openmeld space wake-progress <space-id> --client-message <client-message-id> --target-profile <agent-profile-id> --profile <profile-id> --view agent
453
462
  openmeld space wake-stop <space-id> --client-message <client-message-id> --target-profile <agent-profile-id> --profile <profile-id> --view agent
@@ -459,6 +468,14 @@ openmeld space publication set <space-id> transparent --profile <owner-profile-i
459
468
  openmeld space delete <space-id> --profile <profile-id>
460
469
  ```
461
470
 
471
+ `space files` is the shared Space filesystem used by Web, Local Agents, and the
472
+ Center Agent. Members can upload, revise, organize, trash, restore, inspect
473
+ history, and restore an older revision as a new latest revision; authorized
474
+ viewers can list and download active entries. Trash remains member-only. Writes
475
+ use `--base-revision` so concurrent edits fail with a visible conflict instead
476
+ of silently overwriting another person's work. Files are not mirrored into
477
+ Organization Documents.
478
+
462
479
  `<DISPATCH_ACTION_CLI>` is not a literal command. In a real Wake, copy the exact
463
480
  Space Action command printed in that dispatch prompt.
464
481