dotmd-cli 0.8.3 → 0.8.4

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 +8 -2
  2. package/package.json +1 -1
package/bin/dotmd.mjs CHANGED
@@ -266,8 +266,14 @@ Options:
266
266
 
267
267
  lint: `dotmd lint [--fix] — check and auto-fix frontmatter issues
268
268
 
269
- Scans all docs for fixable problems: missing updated dates, status casing,
270
- camelCase key names, trailing whitespace in values, missing EOF newline.
269
+ Scans all docs for fixable problems:
270
+ - Missing status (inferred via local AI model when available)
271
+ - Missing updated date (set to today)
272
+ - Status casing (e.g. Active → active)
273
+ - camelCase key names (e.g. nextStep → next_step)
274
+ - Comma-separated surface values (converted to surfaces: array)
275
+ - Trailing whitespace in frontmatter values
276
+ - Missing newline at end of file
271
277
 
272
278
  Without --fix, reports all issues. With --fix, applies fixes in place.
273
279
  Use --dry-run (-n) with --fix to preview without writing anything.`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotmd-cli",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
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",