@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 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-MVP / preview release. Steps 0a (spec), 0b (kernel shell), 0c (UI prototype), 1a-1c (kernel + registry + orchestrator), 2 (first extensions), and 3 (UI design refinement) are complete; the CLI currently exposes `sm scan` as a stub (full scan lands at Step 4). See [`ROADMAP.md`](../ROADMAP.md) for the full execution plan and the canonical completeness marker. Subsequent versions follow the standard changeset flow.
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 scan [roots...] [--json] # stub in 0b; full scan in Step 4
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.0",
7031
+ version: "0.11.1",
7032
7032
  description: "skill-map reference implementation \u2014 kernel + CLI + adapters.",
7033
7033
  license: "MIT",
7034
7034
  type: "module",