@skill-map/cli 0.47.0 → 0.48.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/README.md +3 -3
- package/dist/cli/tutorial/sm-master/SKILL.md +3 -2
- package/dist/cli/tutorial/sm-tutorial/SKILL.md +2 -2
- package/dist/cli.js +441 -108
- package/dist/index.js +7 -5
- package/dist/kernel/index.d.ts +23 -28
- package/dist/kernel/index.js +7 -5
- package/dist/ui/{chunk-UV3QRBRR.js → chunk-2GTH7ZLV.js} +1 -1
- package/dist/ui/chunk-5K5WASS7.js +315 -0
- package/dist/ui/{chunk-WPUUCIS3.js → chunk-AVGEDQNI.js} +1 -1
- package/dist/ui/chunk-AWNZZYAU.js +1 -0
- package/dist/ui/{chunk-7K36273M.js → chunk-BKU4RCQK.js} +1 -1
- package/dist/ui/{chunk-RT7E4S5B.js → chunk-FSJSSLYD.js} +1 -1
- package/dist/ui/{chunk-CRWK2NFZ.js → chunk-IDZ7ZQXM.js} +1 -1
- package/dist/ui/chunk-K2LHWJKO.js +2190 -0
- package/dist/ui/chunk-L56QU7EF.js +2 -0
- package/dist/ui/chunk-NPK64R5H.js +123 -0
- package/dist/ui/chunk-OBYZDEVO.js +1 -0
- package/dist/ui/{chunk-UIUGLD7F.js → chunk-Q747VBQL.js} +3 -3
- package/dist/ui/{chunk-3HLMBEDX.js → chunk-QNFHGPFR.js} +1 -1
- package/dist/ui/chunk-Y6VK27P4.js +1 -0
- package/dist/ui/{chunk-CO2ZOUSD.js → chunk-YQ7ZKAFY.js} +1 -1
- package/dist/ui/index.html +2 -2
- package/dist/ui/{main-55GYZX6C.js → main-KXXADOQV.js} +3 -3
- package/dist/ui/{styles-HI4A6IWA.css → styles-HWRPHKTJ.css} +1 -1
- package/package.json +5 -3
- package/dist/ui/chunk-3AKR33GE.js +0 -1
- package/dist/ui/chunk-EPBUSS3I.js +0 -2
- package/dist/ui/chunk-K365TVPA.js +0 -1
- package/dist/ui/chunk-PO2VZMOB.js +0 -123
- package/dist/ui/chunk-VNA3TMIO.js +0 -1
- package/dist/ui/chunk-XWU3YFSM.js +0 -315
- package/dist/ui/chunk-YOF6HQCQ.js +0 -2190
- package/dist/ui/chunk-ZZJ7XWDX.js +0 -1
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
|
|
|
@@ -10,8 +10,9 @@ description: |
|
|
|
10
10
|
`sm plugins create` / `sm plugins upgrade`, and (3) settings and
|
|
11
11
|
view-slots at depth. The skill is invoked from an empty directory,
|
|
12
12
|
lays its own fixture, and tracks progress in `master-state.yml` for
|
|
13
|
-
pause/resume. Triggers: "sm-master", "advanced tutorial", "
|
|
14
|
-
tutorial", "tutorial avanzado", "tutorial maestro",
|
|
13
|
+
pause/resume. Triggers: "sm-master", "advanced tutorial", "run the
|
|
14
|
+
master tutorial", "tutorial avanzado", "ejecuta el tutorial maestro",
|
|
15
|
+
"go deeper".
|
|
15
16
|
---
|
|
16
17
|
|
|
17
18
|
# sm-master: advanced walkthrough for skill-map
|
|
@@ -10,8 +10,8 @@ description: |
|
|
|
10
10
|
advanced verbs. The skill is invoked from an empty directory and
|
|
11
11
|
lays the fixture and tutorial files there directly (no wrapper).
|
|
12
12
|
State persists in `tutorial-state.yml` for pause/resume. Triggers:
|
|
13
|
-
"tutorial", "sm-tutorial", "tutorial me", "
|
|
14
|
-
"test skill-map".
|
|
13
|
+
"tutorial", "sm-tutorial", "tutorial me", "run the tutorial",
|
|
14
|
+
"ejecuta el tutorial", "test skill-map".
|
|
15
15
|
---
|
|
16
16
|
|
|
17
17
|
# sm-tutorial: interactive walkthrough for skill-map
|