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 +26 -6
- package/dist/{chunk-3ZTRVFOG.js → chunk-EKMHE52D.js} +3434 -782
- package/dist/chunk-IWKP55ZB.js +205 -0
- package/dist/cli-DJQVrG6j.d.ts +2735 -0
- package/dist/cli.d.ts +1 -12
- package/dist/cli.js +12 -1
- package/dist/index.d.ts +215 -2571
- package/dist/index.js +8 -1
- package/dist/remoteAccessCrypto.d.ts +41 -0
- package/dist/remoteAccessCrypto.js +14 -0
- package/package.json +7 -5
- package/templates/core/docker-compose.selfhost.yml +32 -2
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
|
|
148
|
-
openmates remote-access
|
|
149
|
-
openmates remote-access
|
|
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
|
-
|
|
153
|
-
|
|
154
|
-
|
|
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
|
|