@byollm/conformance 0.1.0-alpha.39 → 0.1.0-alpha.40

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 +15 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  > [!WARNING]
2
- > **Alpha (`0.1.0-alpha.39`) — under active development. Don't use this yet.**
2
+ > **Alpha (`0.1.0-alpha.40`) — under active development. Don't use this yet.**
3
3
  >
4
4
  > Install it deliberately: `npm install @byollm/conformance@alpha`.
5
5
  >
@@ -79,12 +79,25 @@
79
79
  > packages published and `@byollm/server` did not: a Sigstore
80
80
  > transparency-log 409 on its provenance attestation. The workflow's
81
81
  > "already published" guard correctly refuses to resume a partial publish,
82
- > so `0.1.0-alpha.39` is that release, whole.
82
+ > so `0.1.0-alpha.40` is that release, whole.
83
83
  >
84
84
  > If you run the Supabase adapter, `alpha.21` needs
85
85
  > `20260819010000_completed_by_lease_id.sql`: alpha.19 shipped §3.6's
86
86
  > ordering without the column it stores the grant in.
87
87
 
88
+ <!-- release-note 0.1.0-alpha.40 -->
89
+ **`byollm install` — stop keeping a terminal open.** The daemon can now run
90
+ under your machine's own supervisor and restart itself if it stops: a launchd
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
93
+ away. `byollm status` gained a line saying whether it is actually supervised
94
+ right now, including the state that matters most: installed but not running,
95
+ which looks fine from an app's dashboard and serves nothing.
96
+
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
99
+ npm deletes that directory and the service would fail at some later boot.
100
+
88
101
  # `@byollm/conformance`
89
102
 
90
103
  The compatibility contract. **A server is byollm-compatible when this kit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byollm/conformance",
3
- "version": "0.1.0-alpha.39",
3
+ "version": "0.1.0-alpha.40",
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.39",
29
- "byollm": "0.1.0-alpha.39"
28
+ "@byollm/protocol": "0.1.0-alpha.40",
29
+ "byollm": "0.1.0-alpha.40"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@supabase/supabase-js": "^2.112.2",
33
- "@byollm/server": "0.1.0-alpha.39"
33
+ "@byollm/server": "0.1.0-alpha.40"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"