@byollm/protocol 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 +1 -1
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/protocol@alpha`.
5
5
  >
@@ -83,12 +83,25 @@
83
83
  > packages published and `@byollm/server` did not: a Sigstore
84
84
  > transparency-log 409 on its provenance attestation. The workflow's
85
85
  > "already published" guard correctly refuses to resume a partial publish,
86
- > so `0.1.0-alpha.39` is that release, whole.
86
+ > so `0.1.0-alpha.40` is that release, whole.
87
87
  >
88
88
  > If you run the Supabase adapter, `alpha.21` needs
89
89
  > `20260819010000_completed_by_lease_id.sql`: alpha.19 shipped §3.6's
90
90
  > ordering without the column it stores the grant in.
91
91
 
92
+ <!-- release-note 0.1.0-alpha.40 -->
93
+ **`byollm install` — stop keeping a terminal open.** The daemon can now run
94
+ under your machine's own supervisor and restart itself if it stops: a launchd
95
+ agent on macOS, a `systemd --user` unit on Linux, a logon task on Windows. All
96
+ user-level — no root, no system directories, and `byollm uninstall` takes it
97
+ away. `byollm status` gained a line saying whether it is actually supervised
98
+ right now, including the state that matters most: installed but not running,
99
+ which looks fine from an app's dashboard and serves nothing.
100
+
101
+ If you are running via `npx`, install properly first (`npm install -g
102
+ byollm@alpha`) — `install` refuses to supervise a copy in npx's cache, because
103
+ npm deletes that directory and the service would fail at some later boot.
104
+
92
105
  # `@byollm/protocol`
93
106
 
94
107
  The BYOLLM wire contract: TypeScript types, zod schemas, and the pure rules
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byollm/protocol",
3
- "version": "0.1.0-alpha.39",
3
+ "version": "0.1.0-alpha.40",
4
4
  "description": "The BYOLLM wire contract — types, zod schemas, and the audience rules both the daemon and server enforce. ALPHA: under active development.",
5
5
  "license": "MIT",
6
6
  "type": "module",