@byollm/control-plane 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 +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @byollm/control-plane
2
2
 
3
- > **Alpha (`0.1.0-alpha.89`) — under active development. Don't use this yet.**
3
+ > **Alpha (`0.1.0-alpha.90`) — under active development. Don't use this yet.**
4
4
 
5
5
  The reference control plane: it resolves a person's mapping and authors one
6
6
  signed grant per job, against a policy store it does not own and with a key it
@@ -88,3 +88,17 @@ can change, and the job goes back in the queue.
88
88
  ## Licence
89
89
 
90
90
  MIT.
91
+
92
+ <!-- family:start -->
93
+
94
+ ## The rest of byollm
95
+
96
+ Six packages, and they are only interesting together:
97
+
98
+ - [`byollm`](https://www.npmjs.com/package/byollm) — the daemon — runs models on your own machine and answers for it
99
+ - [`@byollm/protocol`](https://www.npmjs.com/package/@byollm/protocol) — the wire: envelopes, signatures and the closed vocabularies both ends validate against
100
+ - [`@byollm/server`](https://www.npmjs.com/package/@byollm/server) — the SDK a site uses to ask a device for work
101
+ - [`@byollm/relay`](https://www.npmjs.com/package/@byollm/relay) — the broker that holds jobs between a site and a device, and can read neither
102
+ - [`@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
103
+
104
+ <!-- family:end -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byollm/control-plane",
3
- "version": "0.1.0-alpha.89",
3
+ "version": "0.1.0-alpha.90",
4
4
  "type": "module",
5
5
  "description": "The reference control plane: resolves a user's mapping and authors one signed grant per job, against a policy store it does not own.",
6
6
  "license": "MIT",
@@ -30,7 +30,7 @@
30
30
  "README.md"
31
31
  ],
32
32
  "dependencies": {
33
- "@byollm/protocol": "0.1.0-alpha.89"
33
+ "@byollm/protocol": "0.1.0-alpha.90"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"