@skill-map/cli 0.42.0 → 0.43.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
@@ -101,11 +101,11 @@ import cl100k_base from "js-tiktoken/ranks/cl100k_base";
101
101
  // package.json
102
102
  var package_default = {
103
103
  name: "@skill-map/cli",
104
- version: "0.42.0",
104
+ version: "0.43.0",
105
105
  description: "skill-map reference implementation \u2014 kernel + CLI + adapters.",
106
106
  license: "MIT",
107
107
  type: "module",
108
- homepage: "https://skill-map.dev",
108
+ homepage: "https://skill-map.ai",
109
109
  repository: {
110
110
  type: "git",
111
111
  url: "git+https://github.com/crystian/skill-map.git",
@@ -454,10 +454,10 @@ function buildSchemaValidators() {
454
454
  hook: "extension-hook"
455
455
  };
456
456
  const pluginManifestValidator = ajv.compile({
457
- $ref: "https://skill-map.dev/spec/v0/plugins-registry.schema.json#/$defs/PluginManifest"
457
+ $ref: "https://skill-map.ai/spec/v0/plugins-registry.schema.json#/$defs/PluginManifest"
458
458
  });
459
459
  const contributionValidators = /* @__PURE__ */ new Map();
460
- const VIEW_SLOTS_ID = "https://skill-map.dev/spec/v0/view-slots.schema.json";
460
+ const VIEW_SLOTS_ID = "https://skill-map.ai/spec/v0/view-slots.schema.json";
461
461
  function getContributionValidator(slot) {
462
462
  if (!KNOWN_SLOT_NAMES.has(slot)) return null;
463
463
  const existing = contributionValidators.get(slot);