@skill-map/cli 0.40.1 → 0.42.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/SKILL.md +10 -1
- package/dist/cli.js +429 -95
- package/dist/cli.js.map +1 -1
- package/dist/index.js +39 -29
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.d.ts +101 -0
- package/dist/kernel/index.js +39 -29
- package/dist/kernel/index.js.map +1 -1
- package/dist/migrations/001_initial.sql +8 -0
- package/dist/ui/chunk-5GD2GBPS.js +2190 -0
- package/dist/ui/{chunk-4HTOYDCM.js → chunk-5WJRN3LD.js} +1 -1
- package/dist/ui/{chunk-3SI3TVER.js → chunk-C2YUQODZ.js} +2 -2
- package/dist/ui/{chunk-NGIFGXW7.js → chunk-CFJBTDAA.js} +1 -1
- package/dist/ui/{chunk-YWWD62BR.js → chunk-HEJCH7BA.js} +1 -1
- package/dist/ui/chunk-HFPA56IM.js +1 -0
- package/dist/ui/chunk-HHPSCDLM.js +315 -0
- package/dist/ui/chunk-HP375T2O.js +2 -0
- package/dist/ui/chunk-HWP3HM55.js +123 -0
- package/dist/ui/{chunk-ZAEGBMF7.js → chunk-IUDL3NDH.js} +1 -1
- package/dist/ui/{chunk-Z3C2OSRL.js → chunk-JPYAASHN.js} +1 -1
- package/dist/ui/chunk-PZ6Q5AOT.js +1 -0
- package/dist/ui/chunk-XJL4DZ4M.js +1 -0
- package/dist/ui/{chunk-W2JMLJCF.js → chunk-XOHD5XWA.js} +1 -1
- package/dist/ui/chunk-YL6SWAFJ.js +1024 -0
- package/dist/ui/index.html +2 -2
- package/dist/ui/main-7VYTTJP7.js +3 -0
- package/dist/ui/{styles-6H4GSOHY.css → styles-HI4A6IWA.css} +1 -1
- package/migrations/001_initial.sql +8 -0
- package/package.json +2 -2
- package/dist/ui/chunk-4X4GYACU.js +0 -123
- package/dist/ui/chunk-7Q3IO77R.js +0 -317
- package/dist/ui/chunk-FL6RV2IG.js +0 -2
- package/dist/ui/chunk-HGNE4UVQ.js +0 -1
- package/dist/ui/chunk-IS5ULQSF.js +0 -1
- package/dist/ui/chunk-KVWYVO6I.js +0 -1
- package/dist/ui/chunk-N4XX4WPE.js +0 -2190
- package/dist/ui/chunk-P7TXZKUX.js +0 -2
- package/dist/ui/chunk-UVVXMEZT.js +0 -1025
- package/dist/ui/main-F7N5RV4Y.js +0 -3
|
@@ -919,6 +919,11 @@ Tell the tester:
|
|
|
919
919
|
> the field you'll edit next, so leave the card open and the
|
|
920
920
|
> change will be obvious.
|
|
921
921
|
>
|
|
922
|
+
> ⚠ Heads-up: the inspector header shows a few action buttons
|
|
923
|
+
> (Bump, Close, etc). **Don't click any of them yet** , some of
|
|
924
|
+
> them write files to your project and we cover that flow
|
|
925
|
+
> deliberately in step 13. For now, just look.
|
|
926
|
+
>
|
|
922
927
|
> Now open `.claude/agents/demo-agent.md` in your editor of
|
|
923
928
|
> choice. In the **frontmatter** at the top of the file, change
|
|
924
929
|
> the `description:` field to any text you want, the actual
|
|
@@ -1409,9 +1414,13 @@ permission. After you say yes, the choice persists per-checkout
|
|
|
1409
1414
|
(gitignored) and the prompt never appears again.
|
|
1410
1415
|
|
|
1411
1416
|
We'll demonstrate by creating an empty annotation scaffold for
|
|
1412
|
-
`notes/todo.md`.
|
|
1417
|
+
`notes/todo.md`. **Reset any prior consent state first** so the
|
|
1418
|
+
prompt actually appears (an earlier step may have flipped the flag
|
|
1419
|
+
without you noticing, in which case `sm sidecar annotate` would
|
|
1420
|
+
skip straight past the prompt and the lesson would not land):
|
|
1413
1421
|
|
|
1414
1422
|
```bash
|
|
1423
|
+
rm -f notes/todo.sm .skill-map/settings.local.json
|
|
1415
1424
|
sm sidecar annotate notes/todo.md
|
|
1416
1425
|
```
|
|
1417
1426
|
|