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.
- package/bin/dotmd.mjs +8 -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:
|
|
270
|
-
|
|
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