@skill-map/cli 0.11.0 → 0.11.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 +19 -2
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.js +1 -1
- package/dist/kernel/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Map, inspect, and manage collections of interrelated Markdown files — skills, agents, commands, hooks, and notes that compose AI-agent ecosystems (Claude Code, Codex, Gemini, Copilot, Obsidian vaults, docs sites).
|
|
4
4
|
|
|
5
|
-
**Status**: pre-
|
|
5
|
+
**Status**: pre-1.0, active development. Steps 0a–9 are complete (spec, kernel, plugin loader, full CLI surface, plugin author UX). Step 14 (Full Web UI) is in progress with sub-steps 14.1–14.4 closed (Hono BFF + REST + WebSocket broadcaster + reactive UI); 14.5–14.7 (polish + bundle budgets + responsive scope) still pending. The full deterministic scan, check, history, orphans, plugin authoring, and `sm serve` are live; the optional LLM layer (Phase B / `v0.8.0`) lands after Step 14 closes. See [`ROADMAP.md`](../ROADMAP.md) for the canonical completeness marker and full execution plan. Releases follow the standard changeset flow.
|
|
6
6
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
@@ -31,7 +31,24 @@ Both `sm` (short, daily use) and `skill-map` (full name, scripts) are registered
|
|
|
31
31
|
sm --version # single-line version
|
|
32
32
|
sm version # multi-line matrix (sm / kernel / spec / runtime / db-schema)
|
|
33
33
|
sm --help # top-level help
|
|
34
|
-
sm
|
|
34
|
+
sm init # scaffold .skill-map/ in the current scope, run first scan
|
|
35
|
+
sm scan [roots...] [--json] # walk roots, persist scan_* tables; pretty or JSON
|
|
36
|
+
sm list / sm show / sm check # read-side reporters over the persisted scan
|
|
37
|
+
sm graph [--format <name>] # render the graph (ascii / mermaid / dot when shipped)
|
|
38
|
+
sm export <query> --format ... # filtered subgraph export (json / md)
|
|
39
|
+
sm watch [roots...] # incremental scans on file change (chokidar)
|
|
40
|
+
sm serve [--port N] # boot the bundled Web UI + Hono BFF (loopback-only)
|
|
41
|
+
sm plugins list / doctor / ... # plugin discovery + diagnostics
|
|
42
|
+
sm db migrate / backup / ... # DB management
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
For development inside the monorepo, two extra scripts are wired:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npm test # full Node test suite (kernel + CLI + adapters + integration)
|
|
49
|
+
npm run lint # ESLint flat config across every workspace that opts in
|
|
50
|
+
npm run build # tsup → dist/ (bundles + types)
|
|
51
|
+
npm run validate # alias for "all static checks"; CI runs this
|
|
35
52
|
```
|
|
36
53
|
|
|
37
54
|
Exit codes follow [`spec/cli-contract.md`](../spec/cli-contract.md):
|
package/dist/cli.js
CHANGED
|
@@ -7028,7 +7028,7 @@ import { Command as Command8, Option as Option8 } from "clipanion";
|
|
|
7028
7028
|
// package.json
|
|
7029
7029
|
var package_default = {
|
|
7030
7030
|
name: "@skill-map/cli",
|
|
7031
|
-
version: "0.11.
|
|
7031
|
+
version: "0.11.1",
|
|
7032
7032
|
description: "skill-map reference implementation \u2014 kernel + CLI + adapters.",
|
|
7033
7033
|
license: "MIT",
|
|
7034
7034
|
type: "module",
|