@skill-map/cli 0.14.1 → 0.16.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 +16 -0
- package/dist/cli/tutorial/sm-tutorial.md +944 -0
- package/dist/cli.js +463 -366
- package/dist/cli.js.map +1 -1
- package/dist/index.js +8 -5
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.d.ts +23 -7
- package/dist/kernel/index.js +8 -5
- package/dist/kernel/index.js.map +1 -1
- package/dist/ui/chunk-7PFTODKS.js +1031 -0
- package/dist/ui/{chunk-WFJRSBK6.js → chunk-A4RBO3TD.js} +1 -1
- package/dist/ui/{chunk-TEPC3SFH.js → chunk-KPEISNOV.js} +1 -1
- package/dist/ui/{chunk-T5SUVDLE.js → chunk-S5C4U3I3.js} +1 -1
- package/dist/ui/chunk-TG6IWVEC.js +54 -0
- package/dist/ui/{chunk-DOJURY6T.js → chunk-TGJQE3TH.js} +1 -1
- package/dist/ui/{chunk-G6SL4UFD.js → chunk-UGEECDPV.js} +1 -1
- package/dist/ui/{chunk-VJAWM5V3.js → chunk-UTJNQ3I2.js} +3 -3
- package/dist/ui/index.html +1 -1
- package/dist/ui/main-Z2AVUR5B.js +1 -0
- package/package.json +2 -2
- package/dist/cli/guide/sm-guide.md +0 -798
- package/dist/ui/chunk-AVRC55YV.js +0 -971
- package/dist/ui/chunk-ZF7H74JY.js +0 -114
- package/dist/ui/main-TG4BEOVI.js +0 -1
- /package/dist/config/defaults/{skill-mapignore → skillmapignore} +0 -0
package/README.md
CHANGED
|
@@ -25,6 +25,22 @@ npx @skill-map/cli --version
|
|
|
25
25
|
|
|
26
26
|
Both `sm` (short, daily use) and `skill-map` (full name, scripts) are registered as binaries after install. The package name is scoped (`@skill-map/cli`) to sit alongside `@skill-map/spec` under the same npm org; the binaries keep the unprefixed names for ergonomics.
|
|
27
27
|
|
|
28
|
+
## Interactive tutorial (recommended starting point)
|
|
29
|
+
|
|
30
|
+
If you use [Claude Code](https://claude.ai/code), `sm tutorial` is the fastest way to learn the CLI and the live UI without committing your real project to anything:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
mkdir try-skill-map && cd try-skill-map
|
|
34
|
+
sm tutorial # writes sm-tutorial.md into the empty dir
|
|
35
|
+
claude # open Claude Code in the same dir
|
|
36
|
+
# Inside Claude:
|
|
37
|
+
ejecutá @sm-tutorial.md
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Claude loads the SKILL.md and runs the demo (~7 min): fixture, `sm init`, live UI, four "reveals" that show the watcher in action, plus the `.skillmapignore` hide-a-file flow. An optional deep-dive (~30-40 min) covers the rest of the CLI surface (`list`, `graph`, `export`, `orphans`, `plugins`, `db ops`).
|
|
41
|
+
|
|
42
|
+
The verb `sm tutorial` writes a single self-contained file; the SKILL.md ships inside this package, so no extra install needed.
|
|
43
|
+
|
|
28
44
|
## Usage
|
|
29
45
|
|
|
30
46
|
```bash
|