@skill-map/cli 0.33.0 → 0.34.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.
@@ -2969,6 +2969,25 @@ interface RunScanOptions {
2969
2969
  * concept (out-of-band tests, embedders).
2970
2970
  */
2971
2971
  cwd?: string;
2972
+ /**
2973
+ * Active provider lens for this scan, gating provider-specific
2974
+ * extractors against both the node's provider AND the lens (per
2975
+ * `spec/architecture.md` §Universal extractors and per-provider
2976
+ * extractors). Three interpretations:
2977
+ *
2978
+ * - `string`: explicit lens. Provider-specific extractors run only
2979
+ * when their declared `precondition.provider` includes BOTH this
2980
+ * value AND the node's provider.
2981
+ * - `null`: explicit "no lens". Provider-specific extractors are
2982
+ * unconditionally skipped (spec-strict).
2983
+ * - `undefined`: kernel auto-detects from `options.roots[0]` using
2984
+ * filesystem markers (`.claude/`, `.gemini/`, `.codex/`,
2985
+ * `AGENTS.md`). Convenient default for out-of-band callers
2986
+ * (integration tests, embedders) that don't thread a settings
2987
+ * reader. Production callers (scan-runner) resolve upstream and
2988
+ * pass `string | null` explicitly, never `undefined`.
2989
+ */
2990
+ activeProvider?: string | null;
2972
2991
  }
2973
2992
  /**
2974
2993
  * Same as `runScan` but also returns the rename heuristic's `RenameOp[]`