@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.
- package/dist/cli.js +534 -219
- package/dist/cli.js.map +1 -1
- package/dist/index.js +510 -97
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.d.ts +19 -0
- package/dist/kernel/index.js +510 -97
- package/dist/kernel/index.js.map +1 -1
- package/dist/ui/{chunk-OKFHCQNJ.js → chunk-MHWM2642.js} +4 -4
- package/dist/ui/index.html +1 -1
- package/dist/ui/{main-H7FURBYT.js → main-4X6AAGKZ.js} +1 -1
- package/package.json +2 -2
package/dist/kernel/index.d.ts
CHANGED
|
@@ -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[]`
|