@skill-map/cli 0.46.0 → 0.47.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/README.md +3 -3
- package/dist/cli.js +397 -162
- package/dist/index.js +26 -8
- package/dist/kernel/index.d.ts +31 -6
- package/dist/kernel/index.js +26 -8
- package/dist/migrations/001_initial.sql +16 -0
- package/dist/ui/{chunk-N3RUQDAR.js → chunk-3AKR33GE.js} +1 -1
- package/dist/ui/{chunk-RXQYLVSJ.js → chunk-3HLMBEDX.js} +1 -1
- package/dist/ui/{chunk-SF4FUT4U.js → chunk-7K36273M.js} +1 -1
- package/dist/ui/{chunk-S32E6ZCZ.js → chunk-CO2ZOUSD.js} +1 -1
- package/dist/ui/{chunk-F4RIBZ4P.js → chunk-CRWK2NFZ.js} +1 -1
- package/dist/ui/chunk-QCMLB44L.js +123 -0
- package/dist/ui/{chunk-EYBKZOMF.js → chunk-UIUGLD7F.js} +1 -1
- package/dist/ui/{chunk-ERUALZOV.js → chunk-UV3QRBRR.js} +1 -1
- package/dist/ui/{chunk-P4E74ZOS.js → chunk-WPUUCIS3.js} +11 -11
- package/dist/ui/{chunk-6AP364TB.js → chunk-XWU3YFSM.js} +1 -1
- package/dist/ui/{chunk-3YSNJXGB.js → chunk-YOF6HQCQ.js} +1 -1
- package/dist/ui/index.html +1 -1
- package/dist/ui/main-M4W7H6RY.js +4 -0
- package/migrations/001_initial.sql +16 -0
- package/package.json +2 -2
- package/dist/ui/chunk-L3JYFPSZ.js +0 -123
- package/dist/ui/main-NF5GO3JR.js +0 -4
package/README.md
CHANGED
|
@@ -31,15 +31,15 @@ If you use [Claude Code](https://claude.ai/code), `sm tutorial` is the fastest w
|
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
33
|
mkdir try-skill-map && cd try-skill-map
|
|
34
|
-
sm tutorial #
|
|
34
|
+
sm tutorial # installs the sm-tutorial skill
|
|
35
35
|
claude # open Claude Code in the same dir
|
|
36
36
|
# Inside Claude:
|
|
37
|
-
|
|
37
|
+
run the tutorial
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
Claude loads the SKILL.md and runs the demo (~10 min): fixture, `sm init`, live UI, five sub-steps that show the watcher in action, plus the `.skillmapignore` hide-a-file flow. An optional deep-dive (~20-30 min) covers the rest of the CLI surface (`list`, `graph`, `export`, `check`, `plugins`).
|
|
41
41
|
|
|
42
|
-
The verb `sm tutorial`
|
|
42
|
+
The verb `sm tutorial` installs the skill directory under your agent's skill folder (`.claude/skills/sm-tutorial/`); the SKILL.md ships inside this package, so no extra install needed.
|
|
43
43
|
|
|
44
44
|
## Usage
|
|
45
45
|
|