openmates 0.14.2-alpha.0 → 0.14.3

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
@@ -162,16 +162,23 @@ runtime.
162
162
  ### Install a server
163
163
 
164
164
  ```bash
165
- openmates server install --path ~/openmates
166
- openmates server install --role core --profile production --path ~/openmates
167
- openmates server start --path ~/openmates
168
- openmates server status --path ~/openmates
165
+ openmates server install
166
+ openmates server start
167
+ openmates server status
169
168
  ```
170
169
 
171
- Default installs use prebuilt GHCR images and do not require Git or a source
172
- checkout. The installer writes a runtime directory, creates `.env`, generates
173
- local secrets, saves the self-host API target in `~/.openmates/server.json`, and
174
- prints the first invite code.
170
+ The default install path is `~/openmates`. Use `--path <folder>` only when you
171
+ want to install somewhere else:
172
+
173
+ ```bash
174
+ openmates server install --path /opt/openmates
175
+ openmates server start --path /opt/openmates
176
+ ```
177
+
178
+ Default installs use prebuilt GHCR images and do not require Git, a source
179
+ checkout, or cloud-only deployment flags. The installer writes a runtime
180
+ directory, creates `.env`, generates local secrets, saves the self-host API
181
+ target in `~/.openmates/server.json`, and prints the first invite code.
175
182
 
176
183
  After startup, open:
177
184
 
@@ -183,7 +190,7 @@ After startup, open:
183
190
  The first invite creates a normal user. Promote your account separately:
184
191
 
185
192
  ```bash
186
- openmates server make-admin your@email.com --path ~/openmates
193
+ openmates server make-admin your@email.com
187
194
  ```
188
195
 
189
196
  ### Add AI providers or local models
@@ -200,7 +207,7 @@ SECRET__GOOGLE_AI_STUDIO__API_KEY=...
200
207
  ```
201
208
 
202
209
  ```bash
203
- openmates server restart --path ~/openmates
210
+ openmates server restart
204
211
  ```
205
212
 
206
213
  Or add a local OpenAI-compatible model served by Ollama, LM Studio, or another
@@ -215,33 +222,20 @@ openmates server ai models test alibaba/qwen3-8b-local
215
222
  ### Operate and update a server
216
223
 
217
224
  ```bash
218
- openmates server logs --path ~/openmates --tail 200
219
- openmates server logs --path ~/openmates --container api --follow
220
- openmates server preflight --path ~/openmates --role core
221
- openmates server backup --path ~/openmates --role core
222
- openmates server backup list --path ~/openmates --role core
223
- openmates server update --path ~/openmates --dry-run
224
- openmates server update --path ~/openmates
225
- openmates server update --path ~/openmates --image-tag v0.14.0
226
- openmates server update --path ~/openmates --channel dev
227
- openmates server stop --path ~/openmates
228
- openmates server uninstall --path ~/openmates --yes
225
+ openmates server logs --tail 200
226
+ openmates server logs --container api --follow
227
+ openmates server update --dry-run
228
+ openmates server update
229
+ openmates server backup
230
+ openmates server stop
229
231
  ```
230
232
 
231
- Image-mode updates refresh the packaged runtime template, update
232
- `OPENMATES_IMAGE_TAG`, pull prebuilt images, restart containers, and wait for
233
- health checks. Before replacing data-bearing roles, the CLI creates a rotating
234
- latest pre-update backup unless explicitly skipped by the update path.
235
-
236
- For source-mode contributor installs:
237
-
238
- ```bash
239
- openmates server install --from-source --path ~/openmates-source
240
- openmates server install --source-path /path/to/OpenMates --path /tmp/openmates-selfhost
241
- openmates server restart --path ~/openmates-source --rebuild
242
- ```
233
+ Updates pull the matching prebuilt images, restart containers, and wait for
234
+ health checks. Before replacing data-bearing services, the CLI creates a
235
+ rotating pre-update backup.
243
236
 
244
- Source mode uses Git and rebuilds Docker images locally.
237
+ Run `openmates server --help` or read the self-hosting docs for advanced server
238
+ operations beyond the default install/start/update flow.
245
239
 
246
240
  ## Targets and Environment Variables
247
241
 
@@ -42085,6 +42085,12 @@ As of mid-2026, the severe supply shocks from the 2024\u20132025 avian flu have
42085
42085
  github: {
42086
42086
  text: "GitHub"
42087
42087
  },
42088
+ npm_package: {
42089
+ text: "npm"
42090
+ },
42091
+ pypi_package: {
42092
+ text: "PyPI"
42093
+ },
42088
42094
  instagram: {
42089
42095
  text: "Instagram"
42090
42096
  },
package/dist/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  getExtForLang,
4
4
  serializeToYaml
5
- } from "./chunk-FKDDUBTS.js";
5
+ } from "./chunk-CTMZND4H.js";
6
6
  import "./chunk-AXNRPVLE.js";
7
7
  export {
8
8
  getExtForLang,
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ import {
23
23
  normalizeInterestTagIds,
24
24
  serializeToYaml,
25
25
  unwrapApiKeyMasterKey
26
- } from "./chunk-FKDDUBTS.js";
26
+ } from "./chunk-CTMZND4H.js";
27
27
  import "./chunk-AXNRPVLE.js";
28
28
 
29
29
  // src/generated/appSkills.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmates",
3
- "version": "0.14.2-alpha.0",
3
+ "version": "0.14.3",
4
4
  "description": "OpenMates CLI and SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",