skillrepo 4.11.0 → 4.11.1
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/package.json
CHANGED
package/src/lib/errors.mjs
CHANGED
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
* available). Fail-closed: nothing was written or removed. This
|
|
17
17
|
* one code covers the WHOLE D9 fail-closed class, locally AND —
|
|
18
18
|
* once H8 (#2365) wires the server — the server's typed 422
|
|
19
|
-
* `
|
|
19
|
+
* `skillset_unresolvable` response (H6 #2363; renamed from the
|
|
20
|
+
* never-emitted `harness_unresolvable` per the D19 extension,
|
|
21
|
+
* owner decision 2026-08-11), so CI scripts get one stable
|
|
20
22
|
* "declaration cannot be honored" signal.
|
|
21
23
|
*
|
|
22
24
|
* These mirror the documented behavior in #683 and are the contract
|
|
@@ -272,8 +272,9 @@ export function resolveDeclaration({ cwd = process.cwd() } = {}) {
|
|
|
272
272
|
* does not exist yet — server feature (H6) and client wiring (H8) are
|
|
273
273
|
* both unshipped. The copy therefore says "not yet available" and
|
|
274
274
|
* must NEVER imply the user's file is wrong. H8 replaces the call
|
|
275
|
-
* site with real resolution; a server-side `
|
|
276
|
-
* 422
|
|
275
|
+
* site with real resolution; a server-side `skillset_unresolvable`
|
|
276
|
+
* 422 (H6 #2363 — the emitter shipped under the D19-extension name,
|
|
277
|
+
* never as `harness_unresolvable`) then maps onto this same exit code.
|
|
277
278
|
*
|
|
278
279
|
* @param {DeclarationResolution} resolution - A "declared" resolution.
|
|
279
280
|
* @returns {import("./errors.mjs").CliError}
|