@skill-map/cli 0.19.0 → 0.20.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/tutorial/sm-tutorial.md +3 -3
- package/dist/cli.js +7476 -6447
- package/dist/cli.js.map +1 -1
- package/dist/conformance/index.js +1 -1
- package/dist/conformance/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +182 -141
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.d.ts +268 -109
- package/dist/kernel/index.js +182 -141
- package/dist/kernel/index.js.map +1 -1
- package/dist/migrations/001_initial.sql +17 -17
- package/dist/ui/chunk-4NLC7QD2.js +124 -0
- package/dist/ui/{chunk-VWAUXWQX.js → chunk-6BZZQV42.js} +1 -1
- package/dist/ui/chunk-6GUHSAP5.js +5 -0
- package/dist/ui/chunk-E4ALROJS.js +450 -0
- package/dist/ui/{chunk-7CAK6MVK.js → chunk-EZZF5RL5.js} +10 -10
- package/dist/ui/chunk-FWX4RRDF.js +125 -0
- package/dist/ui/chunk-GGMXMGRJ.js +1 -0
- package/dist/ui/chunk-K5PULFK7.js +1 -0
- package/dist/ui/chunk-OJ6W6OIB.js +61 -0
- package/dist/ui/{chunk-BORRASJB.js → chunk-PTCD42GB.js} +6 -6
- package/dist/ui/{chunk-LFIE4SCX.js → chunk-ZSRIBCAW.js} +13 -13
- package/dist/ui/index.html +2 -2
- package/dist/ui/main-5FJWWH5I.js +1 -0
- package/dist/ui/{styles-UAABA7VK.css → styles-VJ5Q6D2X.css} +1 -1
- package/migrations/001_initial.sql +17 -17
- package/package.json +2 -2
- package/dist/ui/chunk-CZSS4D6J.js +0 -454
- package/dist/ui/chunk-EQD7AYYJ.js +0 -227
- package/dist/ui/chunk-ETTRVTFV.js +0 -1
- package/dist/ui/chunk-OKO3QOH6.js +0 -1
- package/dist/ui/chunk-PMIMYHBM.js +0 -61
- package/dist/ui/chunk-UHFGCO24.js +0 -1
- package/dist/ui/chunk-VHIPW3TH.js +0 -1
- package/dist/ui/main-BSYMJKTL.js +0 -1
|
@@ -405,7 +405,7 @@ long_steps:
|
|
|
405
405
|
- id: "7-issues"
|
|
406
406
|
title: "Issues: broken refs"
|
|
407
407
|
status: "pending"
|
|
408
|
-
verbs: ["sm check", "sm check --
|
|
408
|
+
verbs: ["sm check", "sm check --analyzers broken-ref",
|
|
409
409
|
"sm check --json"]
|
|
410
410
|
- id: "8-plugins"
|
|
411
411
|
title: "Plugins"
|
|
@@ -982,13 +982,13 @@ Ask the tester to **append one bullet** to `notes/todo.md`:
|
|
|
982
982
|
|
|
983
983
|
```bash
|
|
984
984
|
sm check
|
|
985
|
-
sm check --
|
|
985
|
+
sm check --analyzers broken-ref
|
|
986
986
|
sm check --json
|
|
987
987
|
```
|
|
988
988
|
|
|
989
989
|
Expected: the warning surfaces the dangling link from
|
|
990
990
|
`notes/todo.md` to the non-existent `missing-page.md`. The
|
|
991
|
-
`--
|
|
991
|
+
`--analyzers` filter lets you focus on a single issue type; `--json`
|
|
992
992
|
emits the structured payload (useful for CI / scripting). When
|
|
993
993
|
done, the tester can leave the bullet in place or delete it — the
|
|
994
994
|
rest of the deep-dive doesn't depend on it.
|