@worker-protocol/conformance 0.1.1 → 0.1.2

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 +10 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -113,6 +113,16 @@ that observed something the specification does not require would be this package
113
113
  standard. When this tool and the specification disagree, the specification is right and this is the
114
114
  bug.
115
115
 
116
+ ## Fixing what it reports, with a coding agent
117
+
118
+ ```
119
+ npx skills add rowing-tech/worker-protocol --skill worker-protocol
120
+ ```
121
+
122
+ An [Agent Skill](https://agentskills.io) carrying the protocol in any language: what each rule id
123
+ means, where its file is, the surface an implementer without an SDK writes by hand, and the gotchas
124
+ behind the failures this tool reports most. `--all` adds a second one for TypeScript on Hono.
125
+
116
126
  ## Related packages
117
127
 
118
128
  - `@worker-protocol/schemas` — the Zod objects that generate the normative JSON Schemas.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worker-protocol/conformance",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "workerProtocolEdition": "0.1",
5
5
  "description": "Point it at a Worker's base URL, get a report of what it complies with",
6
6
  "license": "Apache-2.0",
@@ -33,12 +33,12 @@
33
33
  "NOTICE"
34
34
  ],
35
35
  "dependencies": {
36
- "@worker-protocol/schemas": "0.1.1",
36
+ "@worker-protocol/schemas": "0.1.2",
37
37
  "zod": "^4.5.4"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/node": "26.5.1",
41
- "@worker-protocol/client": "0.1.1",
41
+ "@worker-protocol/client": "0.1.2",
42
42
  "typescript": "7.0.2",
43
43
  "vitest": "5.0.0",
44
44
  "wrangler": "4.131.1"