@worker-protocol/hono 0.1.1 → 0.1.3
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 +11 -0
- package/package.json +14 -2
package/README.md
CHANGED
|
@@ -139,6 +139,17 @@ carries. If `mount()` does something no rule requires, that is the bug.
|
|
|
139
139
|
What vouches for it is not this README: it is `@worker-protocol/conformance` run against a Worker
|
|
140
140
|
built on it.
|
|
141
141
|
|
|
142
|
+
## Writing one with a coding agent
|
|
143
|
+
|
|
144
|
+
```
|
|
145
|
+
npx skills add rowing-tech/worker-protocol --all
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
Two [Agent Skills](https://agentskills.io): `worker-protocol` carries the rules and their ids, and
|
|
149
|
+
`worker-protocol-hono` carries this package — what `mount()` writes, what you still owe, and the
|
|
150
|
+
mistakes that cost a conformance failure. Every rule id they cite is checked against the verifier's
|
|
151
|
+
own universe in CI, so neither teaches a rule the specification has withdrawn.
|
|
152
|
+
|
|
142
153
|
## Related packages
|
|
143
154
|
|
|
144
155
|
- `@worker-protocol/schemas` — the Zod objects that generate the normative JSON Schemas.
|
package/package.json
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@worker-protocol/hono",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"workerProtocolEdition": "0.1",
|
|
5
5
|
"description": "The protocol's surface as Hono routes, and mount(): a Worker author implements an interface and gets every address, header and refusal this protocol fixes",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"worker-protocol",
|
|
8
|
+
"worker",
|
|
9
|
+
"hono",
|
|
10
|
+
"openapi",
|
|
11
|
+
"json-schema",
|
|
12
|
+
"descriptor",
|
|
13
|
+
"zod",
|
|
14
|
+
"interoperability",
|
|
15
|
+
"rowing-tech"
|
|
16
|
+
],
|
|
6
17
|
"license": "Apache-2.0",
|
|
18
|
+
"author": "Rowing Tech, S.A. (https://rowing.tech)",
|
|
7
19
|
"repository": {
|
|
8
20
|
"type": "git",
|
|
9
21
|
"url": "git+https://github.com/rowing-tech/worker-protocol.git",
|
|
@@ -30,7 +42,7 @@
|
|
|
30
42
|
],
|
|
31
43
|
"dependencies": {
|
|
32
44
|
"@hono/zod-openapi": "1.6.3",
|
|
33
|
-
"@worker-protocol/schemas": "0.1.
|
|
45
|
+
"@worker-protocol/schemas": "0.1.3"
|
|
34
46
|
},
|
|
35
47
|
"peerDependencies": {
|
|
36
48
|
"hono": "^4.13.7",
|