@byollm/conformance 0.1.0-alpha.89 → 0.1.0-alpha.90

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 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  > [!WARNING]
2
- > **Alpha (`0.1.0-alpha.89`) — under active development. Don't use this yet.**
2
+ > **Alpha (`0.1.0-alpha.90`) — under active development. Don't use this yet.**
3
3
  >
4
4
  > Install it deliberately: `npm install @byollm/conformance@alpha`.
5
5
  >
@@ -217,3 +217,17 @@ the gap is **visible in the output** rather than implied away, and a newly
217
217
  added MUST shows up there until someone writes its check.
218
218
 
219
219
  MIT
220
+
221
+ <!-- family:start -->
222
+
223
+ ## The rest of byollm
224
+
225
+ Six packages, and they are only interesting together:
226
+
227
+ - [`byollm`](https://www.npmjs.com/package/byollm) — the daemon — runs models on your own machine and answers for it
228
+ - [`@byollm/protocol`](https://www.npmjs.com/package/@byollm/protocol) — the wire: envelopes, signatures and the closed vocabularies both ends validate against
229
+ - [`@byollm/server`](https://www.npmjs.com/package/@byollm/server) — the SDK a site uses to ask a device for work
230
+ - [`@byollm/relay`](https://www.npmjs.com/package/@byollm/relay) — the broker that holds jobs between a site and a device, and can read neither
231
+ - [`@byollm/control-plane`](https://www.npmjs.com/package/@byollm/control-plane) — who may ask whom, and the policy store behind it
232
+
233
+ <!-- family:end -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byollm/conformance",
3
- "version": "0.1.0-alpha.89",
3
+ "version": "0.1.0-alpha.90",
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.89",
29
- "byollm": "0.1.0-alpha.89"
28
+ "@byollm/protocol": "0.1.0-alpha.90",
29
+ "byollm": "0.1.0-alpha.90"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@supabase/supabase-js": "^2.112.2",
33
- "@byollm/server": "0.1.0-alpha.89"
33
+ "@byollm/server": "0.1.0-alpha.90"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"