@byollm/conformance 0.1.0-alpha.82 → 0.1.0-alpha.84

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 +4 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  > [!WARNING]
2
- > **Alpha (`0.1.0-alpha.82`) — under active development. Don't use this yet.**
2
+ > **Alpha (`0.1.0-alpha.84`) — under active development. Don't use this yet.**
3
3
  >
4
4
  > Install it deliberately: `npm install @byollm/conformance@alpha`.
5
5
  >
@@ -86,16 +86,16 @@
86
86
  > ordering without the column it stores the grant in.
87
87
 
88
88
  <!-- release-note 0.1.0-alpha.40 -->
89
- **`byollm install` — stop keeping a terminal open.** The daemon can now run
89
+ **`byollm start` — stop keeping a terminal open.** The daemon can now run
90
90
  under your computer's own supervisor and restart itself if it stops: a launchd
91
91
  agent on macOS, a `systemd --user` unit on Linux, a logon task on Windows. All
92
- user-level — no root, no system directories, and `byollm uninstall` takes it
92
+ user-level — no root, no system directories, and `byollm stop` takes it
93
93
  away. `byollm status` gained a line saying whether it is actually supervised
94
94
  right now, including the state that matters most: installed but not running,
95
95
  which looks fine from an app's dashboard and serves nothing.
96
96
 
97
97
  If you are running via `npx`, install properly first (`npm install -g
98
- byollm@alpha`) — `install` refuses to supervise a copy in npx's cache, because
98
+ byollm@latest`) — `install` refuses to supervise a copy in npx's cache, because
99
99
  npm deletes that directory and the service would fail at some later boot.
100
100
 
101
101
  <!-- release-note 0.1.0-alpha.41 -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byollm/conformance",
3
- "version": "0.1.0-alpha.82",
3
+ "version": "0.1.0-alpha.84",
4
4
  "description": "The BYOLLM compatibility contract — drive a real daemon against any server and assert every protocol MUST.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -25,12 +25,12 @@
25
25
  "node": ">=22.14"
26
26
  },
27
27
  "dependencies": {
28
- "@byollm/protocol": "0.1.0-alpha.82",
29
- "byollm": "0.1.0-alpha.82"
28
+ "@byollm/protocol": "0.1.0-alpha.84",
29
+ "byollm": "0.1.0-alpha.84"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@supabase/supabase-js": "^2.112.2",
33
- "@byollm/server": "0.1.0-alpha.82"
33
+ "@byollm/server": "0.1.0-alpha.84"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"