dotmd-cli 0.50.1 → 0.50.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotmd-cli",
3
- "version": "0.50.1",
3
+ "version": "0.50.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",
@@ -41,7 +41,7 @@
41
41
  "test": "node --test test/*.test.mjs",
42
42
  "preversion": "npm test",
43
43
  "version": "node bin/dotmd.mjs hud >/dev/null 2>&1; git add .claude/commands docs/docs.md 2>/dev/null; true",
44
- "postversion": "git push origin main --tags && gh release create v$npm_package_version --generate-notes --title v$npm_package_version && sleep 5 && gh run watch $(gh run list --workflow=publish.yml --limit 1 --json databaseId --jq '.[0].databaseId') --exit-status && sleep 10 && npm cache clean --force && npm install -g dotmd-cli@$npm_package_version"
44
+ "postversion": "bash scripts/postversion.sh"
45
45
  },
46
46
  "engines": {
47
47
  "node": ">=20"
@@ -100,7 +100,7 @@ function generateBatonCommand(config, version) {
100
100
  const lines = [...frontmatterFor('baton', config), markerFor(version), ''];
101
101
  lines.push('Wrap this session. Two commands:');
102
102
  lines.push('');
103
- lines.push('1. **Save the resume prompt.** `dotmd new prompt resume-<plan-slug>` — pipe stdin or pass `@path`. 10-20 line body: the next concrete decision plus any gotchas. NOT a recap of the plan body. The saved prompt IS the handoff — never print it into chat for copy-paste.');
103
+ lines.push('1. **Save the resume prompt.** `dotmd new prompt resume-<plan-slug>` — pipe stdin or pass `@path`. 10-20 line body: the next concrete decision plus any gotchas. NOT a recap of the plan body. The saved prompt IS the handoff — never print it into chat for copy-paste. Treat `docs/prompts/` as local session state: it is often gitignored and should not be committed just because you created a handoff prompt.');
104
104
  lines.push('');
105
105
  lines.push('2. **Close out via `dotmd set <status>`.** Pick the status that matches reality:');
106
106
  lines.push(' - `dotmd set active <file>` — work continues, return the plan to the active queue');