openpalm 0.11.0-beta.9 → 0.11.0-rc.2

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -53,11 +53,11 @@ On first install, the CLI spawns `openpalm` which serves the setup wizard via th
53
53
  | `OP_HOME` | `~/.openpalm` | Root of all OpenPalm state |
54
54
  | `OP_WORK_DIR` | `~/openpalm` | Assistant working directory |
55
55
  | `OP_HOST_UI_PORT` | `3880` | Port for the host admin server (`openpalm`) |
56
- | `OP_UI_TOKEN` | (from `state/admin/token`) | Admin API auth token |
56
+ | `OP_UI_LOGIN_PASSWORD` | (from `knowledge/secrets/op_ui_login_password`) | Admin UI login password (cookie session auth) |
57
57
 
58
58
  ## How It Works
59
59
 
60
- 1. **Bootstrap** (first install) -- creates the `~/.openpalm/` tree, downloads core assets from GitHub, seeds `stash/vaults/user.env` and `config/stack/stack.env`, materializes the runtime registry catalog under `state/registry/`, serves the setup wizard, writes `stack/core.compose.yml`, enables requested addons under `stack/addons/`, and starts core services via `docker compose up`
60
+ 1. **Bootstrap** (first install) -- creates the `~/.openpalm/` tree, downloads core assets from GitHub, seeds `knowledge/env/user.env` and `knowledge/env/stack.env`, serves the setup wizard, writes fixed stack compose files, enables requested addons in `config/stack/stack.yml`, and starts core services via `docker compose up`
61
61
  2. **Running stack** -- commands refresh files in `~/.openpalm/` when needed, then execute Docker Compose directly.
62
62
  3. **Admin absent** -- all commands work identically. Admin is never required for any operation.
63
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openpalm",
3
- "version": "0.11.0-beta.9",
3
+ "version": "0.11.0-rc.2",
4
4
  "type": "module",
5
5
  "license": "MPL-2.0",
6
6
  "description": "OpenPalm CLI — install and manage a self-hosted OpenPalm stack",
@@ -36,7 +36,7 @@
36
36
  "bun": ">=1.0.0"
37
37
  },
38
38
  "dependencies": {
39
- "@openpalm/lib": ">=0.11.0-beta.8 <1.0.0",
39
+ "@openpalm/lib": ">=0.11.0-rc.2 <1.0.0",
40
40
  "citty": "^0.2.1",
41
41
  "yaml": "^2.8.0"
42
42
  }