@byollm/relay 0.1.0-alpha.101 → 0.1.0-alpha.103
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 +9 -2
- package/package.json +10 -7
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
> [!WARNING]
|
|
2
|
-
> **Alpha (`0.1.0-alpha.
|
|
2
|
+
> **Alpha (`0.1.0-alpha.103`) — 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
|
|
@@ -245,7 +245,7 @@ authenticated channel instead.
|
|
|
245
245
|
which is what an attacker has:
|
|
246
246
|
|
|
247
247
|
```bash
|
|
248
|
-
npx byollm-audit-deployment https://your-relay.example
|
|
248
|
+
npx --package @byollm/conformance byollm-audit-deployment https://your-relay.example
|
|
249
249
|
```
|
|
250
250
|
|
|
251
251
|
It exists because eight of byollm_009's findings came from a suite in which
|
|
@@ -268,4 +268,11 @@ Six packages, and they are only interesting together:
|
|
|
268
268
|
- [`@byollm/control-plane`](https://www.npmjs.com/package/@byollm/control-plane) — who may ask whom, and the policy store behind it
|
|
269
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
270
|
|
|
271
|
+
### Where the rest lives
|
|
272
|
+
|
|
273
|
+
- [GitHub](https://github.com/oftomorrowinc/byollm) — the source, and where issues go
|
|
274
|
+
- [byo-llm.com](https://byo-llm.com) — what this is, and why
|
|
275
|
+
- [byollm.cloud](https://byollm.cloud) — the hosted relay — devices, consent and billing
|
|
276
|
+
- [docs.byollm.cloud](https://docs.byollm.cloud) — integrating a site, end to end
|
|
277
|
+
|
|
271
278
|
<!-- 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.103",
|
|
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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "git+https://github.com/oftomorrowinc/byollm.git",
|
|
10
10
|
"directory": "packages/relay"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://
|
|
12
|
+
"homepage": "https://byo-llm.com",
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/oftomorrowinc/byollm/issues"
|
|
15
15
|
},
|
|
@@ -29,9 +29,12 @@
|
|
|
29
29
|
"dist",
|
|
30
30
|
"README.md"
|
|
31
31
|
],
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=22.14"
|
|
34
|
+
},
|
|
32
35
|
"dependencies": {
|
|
33
36
|
"zod": "^4.1.13",
|
|
34
|
-
"@byollm/protocol": "0.1.0-alpha.
|
|
37
|
+
"@byollm/protocol": "0.1.0-alpha.103"
|
|
35
38
|
},
|
|
36
39
|
"publishConfig": {
|
|
37
40
|
"access": "public"
|
|
@@ -39,10 +42,10 @@
|
|
|
39
42
|
"devDependencies": {
|
|
40
43
|
"@supabase/supabase-js": "^2.112.2",
|
|
41
44
|
"vitest": "^4.1.10",
|
|
42
|
-
"@byollm/
|
|
43
|
-
"
|
|
44
|
-
"byollm": "0.1.0-alpha.
|
|
45
|
-
"@byollm/
|
|
45
|
+
"@byollm/server": "0.1.0-alpha.103",
|
|
46
|
+
"byollm": "0.1.0-alpha.103",
|
|
47
|
+
"@byollm/conformance": "0.1.0-alpha.103",
|
|
48
|
+
"@byollm/control-plane": "0.1.0-alpha.103"
|
|
46
49
|
},
|
|
47
50
|
"peerDependencies": {
|
|
48
51
|
"vitest": ">=3"
|