dotmd-cli 0.13.1 → 0.13.2

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.
Files changed (2) hide show
  1. package/bin/dotmd.mjs +9 -8
  2. package/package.json +1 -1
package/bin/dotmd.mjs CHANGED
@@ -15,23 +15,24 @@ const HELP = {
15
15
 
16
16
  View & Query:
17
17
  list [--verbose] [--json] List docs grouped by status (default command)
18
- json Full index as JSON
19
- briefing [--json] Compact summary for session start (5-10 lines)
18
+ briefing [--json] Compact summary for session start
20
19
  context [--summarize] [--json] Full briefing (LLM-oriented)
21
20
  focus [status] [--json] Detailed view for one status group
22
21
  query [filters] [--json] Filtered search (--status, --keyword, --stale, etc.)
23
- coverage [--json] Metadata coverage report
22
+ plans All plans (preset)
23
+ stale Stale docs (preset)
24
+ actionable Docs with next steps (preset)
25
+
26
+ Analyze:
24
27
  stats [--json] Doc health dashboard
28
+ health [--json] Plan velocity, aging, and pipeline health
29
+ coverage [--json] Metadata coverage report
25
30
  graph [--dot] [--json] Visualize document relationships
26
31
  deps [file] [--json] Dependency tree or overview
27
32
  unblocks <file> [--json] Show what completes when this doc ships
28
- health [--json] Plan velocity, aging, and pipeline health
29
- glossary <term> [--list] [--json] Look up domain terms + related docs
30
33
  diff [file] [--summarize] Show changes since last updated date
31
- plans List all plans (shortcut for query --type plan)
32
- stale List stale docs across all statuses
33
- actionable List docs with a next step ready to act on
34
34
  summary <file> [--json] AI summary of a document
35
+ glossary <term> [--list] [--json] Look up domain terms + related docs
35
36
 
36
37
  Validate & Fix:
37
38
  check [--fix] [--errors-only] [--json] Validate frontmatter and references
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotmd-cli",
3
- "version": "0.13.1",
3
+ "version": "0.13.2",
4
4
  "description": "CLI for managing markdown documents with YAML frontmatter — index, query, validate, graph, export, Notion sync, AI summaries.",
5
5
  "type": "module",
6
6
  "license": "MIT",