openmates 0.15.0-alpha.98 → 0.15.0

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/README.md CHANGED
@@ -144,14 +144,34 @@ review the spend confirmation before live runs.
144
144
  ### Local source bridge
145
145
 
146
146
  ```bash
147
- openmates remote-access start --path ./my-repo --source-id repo-1 --local-only
148
- openmates remote-access status --json
149
- openmates remote-access search --source repo-1 "TODO" --limit 20
147
+ openmates remote-access --personal
148
+ openmates remote-access --team <team> --path ./my-repo --path ../shared
149
+ openmates remote-access --personal --path ./my-repo --json
150
+ openmates projects files list <project> --personal --json
151
+ openmates projects files search <project> <query> --team <team> --source <source-id> --json
152
+ openmates projects files read <project> <relative-path> --team <team> --source <source-id> --json
150
153
  ```
151
154
 
152
- `openmates remote-access` stores source metadata under
153
- `~/.openmates/remote-sources.json`, searches with `rg` inside the approved root,
154
- and does not upload repository files by default.
155
+ The command discovers Git repositories below the current folder by default;
156
+ explicit `--path` values replace that scope. It remains in the foreground,
157
+ reconnects after temporary network loss, and marks sources offline when it
158
+ stops. OpenMates can request bounded directory listings, text search, and
159
+ selected text previews. The bridge is read-only, excludes ignored, protected,
160
+ binary, and out-of-root files, and never uploads a preview unless you explicitly
161
+ choose to upload it.
162
+
163
+ Interactive hosting confirms Personal or Team context before discovery.
164
+ Non-interactive/JSON hosting and live file requests require `--personal` or
165
+ `--team <team>`. Team permissions are enforced by the API; live filesystem
166
+ methods remain CLI-only and are not exposed by the npm SDK.
167
+ Project deletion requires the exact Project ID, and source removal requires the
168
+ exact source ID, both in the CLI prompt and in the server request. Generic
169
+ boolean confirmation is not supported.
170
+
171
+ Project keys authenticate end-to-end encryption between trusted clients. The
172
+ backend receives routing metadata and opaque ciphertext, not filesystem paths,
173
+ queries, snippets, file contents, or encryption keys. Local source associations
174
+ are stored with owner-only permissions under `~/.openmates/remote-sources.json`.
155
175
 
156
176
  ## Self-Host Server Management
157
177