@skill-map/cli 0.16.6 → 0.18.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/tutorial/sm-tutorial.md +8 -0
- package/dist/cli.js +8324 -5644
- package/dist/cli.js.map +1 -1
- package/dist/conformance/index.js +36 -14
- package/dist/conformance/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +540 -61
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.d.ts +443 -87
- package/dist/kernel/index.js +540 -61
- package/dist/kernel/index.js.map +1 -1
- package/dist/migrations/002_sidecar_columns.sql +53 -0
- package/dist/migrations/003_drop_node_author.sql +20 -0
- package/dist/migrations/004_sidecar_root_json.sql +23 -0
- package/dist/migrations/005_node_favorites.sql +20 -0
- package/dist/ui/chunk-3R7E3HPC.js +7 -0
- package/dist/ui/chunk-JKJGGXCS.js +1025 -0
- package/dist/ui/chunk-SX2A3WBX.js +247 -0
- package/dist/ui/chunk-TWZHUCAT.js +237 -0
- package/dist/ui/chunk-UJOZYR5I.js +1 -0
- package/dist/ui/chunk-WTAL2RK4.js +1 -0
- package/dist/ui/chunk-Z3UJHHTC.js +3091 -0
- package/dist/ui/index.html +2 -2
- package/dist/ui/main-AAYGMON4.js +1 -0
- package/dist/ui/skill-map-mark-dark.svg +8 -0
- package/dist/ui/skill-map-mark-light.svg +8 -0
- package/dist/ui/{styles-TCK5JUQE.css → styles-CBPFNGXA.css} +1 -1
- package/migrations/002_sidecar_columns.sql +53 -0
- package/migrations/003_drop_node_author.sql +20 -0
- package/migrations/004_sidecar_root_json.sql +23 -0
- package/migrations/005_node_favorites.sql +20 -0
- package/package.json +6 -6
- package/dist/ui/chunk-7PFTODKS.js +0 -1031
- package/dist/ui/chunk-A4RBO3TD.js +0 -38
- package/dist/ui/chunk-KPEISNOV.js +0 -819
- package/dist/ui/chunk-NKC42FI7.js +0 -210
- package/dist/ui/chunk-S5C4U3I3.js +0 -2403
- package/dist/ui/chunk-TG6IWVEC.js +0 -54
- package/dist/ui/chunk-TGJQE3TH.js +0 -54
- package/dist/ui/chunk-UGEECDPV.js +0 -1
- package/dist/ui/main-XSGTD7FQ.js +0 -1
|
@@ -863,6 +863,14 @@ Mark `2-ui-live: done`.
|
|
|
863
863
|
> UI sees it instantly. In **~10 minutes** you've already seen the
|
|
864
864
|
> full flow.
|
|
865
865
|
>
|
|
866
|
+
> One thing worth knowing for later: alongside every `.md` skill-map
|
|
867
|
+
> can write a sibling `.sm` file (same basename, different extension)
|
|
868
|
+
> that holds the concrete metadata — version, stability, supersession,
|
|
869
|
+
> tags, audit trail. The `.md` stays vendor-pure; the `.sm` is where
|
|
870
|
+
> skill-map writes. Both travel via git like the rest of your scope.
|
|
871
|
+
> You'll see them appear once you start using `sm bump` or
|
|
872
|
+
> `sm sidecar annotate`.
|
|
873
|
+
>
|
|
866
874
|
> If you want, **we can keep going deeper**: I'll walk you through
|
|
867
875
|
> the CLI verbs and flags (`list`, `graph`, `export`, `orphans`,
|
|
868
876
|
> `plugins`, `db ops`, etc.). About ~20-30 min more, pausable
|