@plurnk/plurnk-schemes 1.0.8 → 1.0.9
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/SPEC.md +6 -4
- package/package.json +4 -4
package/SPEC.md
CHANGED
|
@@ -186,15 +186,17 @@ A scheme handler is discovered and registered with **zero first-party involvemen
|
|
|
186
186
|
|
|
187
187
|
## §7 Standards divergences register (#491, parent #408)
|
|
188
188
|
|
|
189
|
-
Doctrine: every plurnkism carries a DGR (documented good reason) or converges. Verified against RFC 3986 §3.2/§3.2.2, RFC 8089, RFC 7595, RFC 9110 + WHATWG Fetch, WHATWG EventSource (HTML §9.2), RFC 6455. This register is standing SPEC and grows with the lane; audit landed 2026-07-16.
|
|
189
|
+
Doctrine: every plurnkism carries a DGR (documented good reason) or converges. Verified against RFC 3986 §2.3/§3.2/§3.2.2, RFC 8089, RFC 7595, RFC 9110 + WHATWG Fetch, WHATWG EventSource (HTML §9.2), RFC 6455. This register is standing SPEC and grows with the lane; audit landed 2026-07-16, updated for the #527 actor-addressing retirements.
|
|
190
190
|
|
|
191
191
|
### §7.1 URI shape of the invented schemes
|
|
192
192
|
|
|
193
|
+
`known`/`unknown`/`plurnk`/`exec` retired under #527 (the worker-as-host addressing model); the live internals are `worker`/`prompt`/`log`, plus the open-ended capability schemes (`mcp`, `jq`, `sh`, …). The `worker://` authority carving (empty = commons, `~` = self, `<name>` = ancestry-gated, `plurnk` = kernel) is core SPEC §worker-authority-carving; this register judges only the URI *shape* against the RFCs.
|
|
194
|
+
|
|
193
195
|
| surface | standard neighbor | disposition |
|
|
194
196
|
|---|---|---|
|
|
195
|
-
| Unregistered schemes (`
|
|
196
|
-
| `scheme:///path` (empty authority: `
|
|
197
|
-
| `scheme://name/path` (reg-name authority: `worker://
|
|
197
|
+
| Unregistered schemes (`worker`/`prompt`/`log`/`mcp`, + capability schemes) | IANA URI scheme registry; RFC 7595 asks registration for web-facing schemes | **Convergent** — an internal, model-facing address space never emitted on the open web; RFC 7595's registration concern doesn't attach. Provisional registration becomes due only if one is ever exposed externally. |
|
|
198
|
+
| `scheme:///path` (empty authority: `log:///`, `prompt:///` self-only; `worker:///` = the commons) | RFC 3986 §3.2 / RFC 8089 — `file:///path` is the canonical empty-authority form; terser `scheme:path` (mailto/urn) also legal | **Convergent with the `file://` precedent.** DGR for choosing `///` over the terser form: the `//` marks URL-shaped hierarchical addressing for a floor-grade model — one URI shape everywhere. (Empty `worker://` authority is the commons *principal*, not absence.) |
|
|
199
|
+
| `scheme://name/path` (reg-name authority: `worker://~/…` self, `worker://<name>/…`, `worker://plurnk/…`, `mcp://<server>/…`) | RFC 3986 §3.2.2 — authority admits a registered name, not required DNS-resolvable; §2.3 — `~` is unreserved (a legal authority character) | **Convergent by construction** — the worker/server name governing its path namespace is the RFC's stated intent; `~` as the self-token is unreserved-legal; mirrors `docker://`, `git://`. |
|
|
198
200
|
|
|
199
201
|
### §7.2 Protocol handling (the http/wss package)
|
|
200
202
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurnk/plurnk-schemes",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Framework + contract for the @plurnk/plurnk-schemes-* URI handler family.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurnk",
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"prepack": "npm run build"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@plurnk/plurnk-grammar": "1.0.
|
|
50
|
-
"@plurnk/plurnk-mimetypes": "1.0.
|
|
49
|
+
"@plurnk/plurnk-grammar": "1.0.9",
|
|
50
|
+
"@plurnk/plurnk-mimetypes": "1.0.9"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@plurnk/plurnk-meta": "1.0.
|
|
53
|
+
"@plurnk/plurnk-meta": "1.0.9"
|
|
54
54
|
}
|
|
55
55
|
}
|