@byollm/relay 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.
- package/README.md +15 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
> [!WARNING]
|
|
2
|
-
> **Alpha (`0.1.0-alpha.
|
|
2
|
+
> **Alpha (`0.1.0-alpha.90`) — under active development. Don't use this yet.**
|
|
3
3
|
>
|
|
4
4
|
> This is a walking skeleton. It routes real jobs between real daemons and real
|
|
5
5
|
> sites, and it is the fixture byollm_009 freezes against — but it keeps its
|
|
@@ -255,3 +255,17 @@ anything about how the system is *reached*, and the ninth finding was in that
|
|
|
255
255
|
gap. Safe to run against production: nothing writes, nothing floods.
|
|
256
256
|
|
|
257
257
|
MIT
|
|
258
|
+
|
|
259
|
+
<!-- family:start -->
|
|
260
|
+
|
|
261
|
+
## The rest of byollm
|
|
262
|
+
|
|
263
|
+
Six packages, and they are only interesting together:
|
|
264
|
+
|
|
265
|
+
- [`byollm`](https://www.npmjs.com/package/byollm) — the daemon — runs models on your own machine and answers for it
|
|
266
|
+
- [`@byollm/protocol`](https://www.npmjs.com/package/@byollm/protocol) — the wire: envelopes, signatures and the closed vocabularies both ends validate against
|
|
267
|
+
- [`@byollm/server`](https://www.npmjs.com/package/@byollm/server) — the SDK a site uses to ask a device for work
|
|
268
|
+
- [`@byollm/control-plane`](https://www.npmjs.com/package/@byollm/control-plane) — who may ask whom, and the policy store behind it
|
|
269
|
+
- [`@byollm/conformance`](https://www.npmjs.com/package/@byollm/conformance) — the kit that proves an implementation is one — including a posture audit that holds nothing but a URL
|
|
270
|
+
|
|
271
|
+
<!-- family:end -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byollm/relay",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.90",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The reference relay: routes sealed byollm jobs between sites and daemons, holding no decryption keys by construction.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"zod": "^4.1.13",
|
|
34
|
-
"@byollm/protocol": "0.1.0-alpha.
|
|
34
|
+
"@byollm/protocol": "0.1.0-alpha.90"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@supabase/supabase-js": "^2.112.2",
|
|
41
41
|
"vitest": "^4.1.10",
|
|
42
|
-
"@byollm/
|
|
43
|
-
"byollm": "0.1.0-alpha.
|
|
44
|
-
"@byollm/
|
|
45
|
-
"
|
|
42
|
+
"@byollm/conformance": "0.1.0-alpha.90",
|
|
43
|
+
"@byollm/control-plane": "0.1.0-alpha.90",
|
|
44
|
+
"@byollm/server": "0.1.0-alpha.90",
|
|
45
|
+
"byollm": "0.1.0-alpha.90"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"vitest": ">=3"
|