@skill-map/cli 0.16.6 → 0.17.0

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/dist/index.js CHANGED
@@ -102,7 +102,7 @@ import yaml from "js-yaml";
102
102
  // package.json
103
103
  var package_default = {
104
104
  name: "@skill-map/cli",
105
- version: "0.16.6",
105
+ version: "0.17.0",
106
106
  description: "skill-map reference implementation \u2014 kernel + CLI + adapters.",
107
107
  license: "MIT",
108
108
  type: "module",
@@ -168,7 +168,7 @@ var package_default = {
168
168
  },
169
169
  dependencies: {
170
170
  "@hono/node-server": "2.0.1",
171
- "@skill-map/spec": "0.16.0",
171
+ "@skill-map/spec": "0.17.0",
172
172
  ajv: "8.18.0",
173
173
  "ajv-formats": "3.0.1",
174
174
  chokidar: "5.0.0",
@@ -384,6 +384,7 @@ function buildProviderFrontmatterValidator(providers) {
384
384
  const baseFile = resolve2(specRoot, "schemas/frontmatter/base.schema.json");
385
385
  const baseSchema = JSON.parse(readFileSync2(baseFile, "utf8"));
386
386
  ajv.addSchema(baseSchema);
387
+ registerProviderAuxiliarySchemas(ajv, providers);
387
388
  const compiled = /* @__PURE__ */ new Map();
388
389
  for (const provider of providers) {
389
390
  for (const [kind, entry] of Object.entries(provider.kinds)) {
@@ -408,6 +409,16 @@ function formatError(err) {
408
409
  const path = err.instancePath || "(root)";
409
410
  return `${path} ${err.message ?? err.keyword}`;
410
411
  }
412
+ function registerProviderAuxiliarySchemas(ajv, providers) {
413
+ for (const provider of providers) {
414
+ if (!provider.schemas) continue;
415
+ for (const aux of provider.schemas) {
416
+ const auxJson = aux;
417
+ if (typeof auxJson.$id === "string" && ajv.getSchema(auxJson.$id)) continue;
418
+ ajv.addSchema(aux);
419
+ }
420
+ }
421
+ }
411
422
  function resolveSpecRoot() {
412
423
  const require2 = createRequire2(import.meta.url);
413
424
  try {