@skill-map/cli 0.34.0 → 0.34.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/dist/cli.js CHANGED
@@ -3134,7 +3134,7 @@ var UPDATE_CHECK_TEXTS = {
3134
3134
  // package.json
3135
3135
  var package_default = {
3136
3136
  name: "@skill-map/cli",
3137
- version: "0.34.0",
3137
+ version: "0.34.1",
3138
3138
  description: "skill-map reference implementation \u2014 kernel + CLI + adapters.",
3139
3139
  license: "MIT",
3140
3140
  type: "module",
@@ -13583,7 +13583,7 @@ function originatingNodeOf(link2, priorNodePaths) {
13583
13583
  function computeCacheDecision(opts) {
13584
13584
  const applicableExtractors = opts.extractors.filter((ex) => {
13585
13585
  if (!matchesKindPrecondition(ex, opts.kind)) return false;
13586
- if (!matchesProviderPrecondition(ex, opts.provider, opts.activeProvider)) return false;
13586
+ if (!matchesProviderPrecondition(ex, opts.activeProvider)) return false;
13587
13587
  return true;
13588
13588
  });
13589
13589
  const applicableQualifiedIds = new Set(
@@ -13607,10 +13607,9 @@ function matchesKindPrecondition(ex, kind) {
13607
13607
  return kindOnly === kind;
13608
13608
  });
13609
13609
  }
13610
- function matchesProviderPrecondition(ex, nodeProvider, activeProvider) {
13610
+ function matchesProviderPrecondition(ex, activeProvider) {
13611
13611
  const providers = ex.precondition?.provider;
13612
13612
  if (!providers || providers.length === 0) return true;
13613
- if (!providers.includes(nodeProvider)) return false;
13614
13613
  if (activeProvider === null) return false;
13615
13614
  return providers.includes(activeProvider);
13616
13615
  }
@@ -14261,7 +14260,6 @@ async function processRawNode(raw, provider, wctx, accum, claimedPaths, nextInde
14261
14260
  const cacheDecision = computeCacheDecision({
14262
14261
  extractors: wctx.opts.extractors,
14263
14262
  kind,
14264
- provider: provider.id,
14265
14263
  activeProvider: wctx.opts.activeProvider,
14266
14264
  nodePath: raw.path,
14267
14265
  bodyHash,