claude-nomad 0.53.3 → 0.54.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.54.0](https://github.com/funkadelic/claude-nomad/compare/v0.53.3...v0.54.0) (2026-06-27)
4
+
5
+
6
+ ### Added
7
+
8
+ * **doctor:** add preflight hardening checks ([#344](https://github.com/funkadelic/claude-nomad/issues/344)) ([551ab16](https://github.com/funkadelic/claude-nomad/commit/551ab16a6c0c6bdf88a51c5dbf5a76f3cd4a7f22))
9
+
10
+
11
+ ### Fixed
12
+
13
+ * **update:** silence npm output on successful self-update ([#342](https://github.com/funkadelic/claude-nomad/issues/342)) ([b7171b9](https://github.com/funkadelic/claude-nomad/commit/b7171b933c6bb9b4578b7e109bb334baa0f147b8))
14
+
3
15
  ## [0.53.3](https://github.com/funkadelic/claude-nomad/compare/v0.53.2...v0.53.3) (2026-06-26)
4
16
 
5
17
 
package/README.md CHANGED
@@ -45,13 +45,15 @@ survives different file paths and your secrets never ride along.
45
45
  `--dry-run` on pull and push prints the plan without writing anything.
46
46
  - **One command tells you what is wrong.** `nomad doctor` is a read-only health check: wedged sync
47
47
  repo, broken hook references, hooks that would crash on session start because of a missing
48
- `--preserve-symlinks-main` flag, version drift, oversized backup cache, and settings drift in both
49
- directions: keys present in the repo merge but absent from your live `settings.json` (behind; the
50
- next `nomad pull` will restore them, fix: `nomad pull`) and keys present locally but not yet in
51
- the repo (ahead; local-only additions, fix: `nomad capture-settings`). Each issue includes a fix
52
- hint. By default the report is compact: it shows only checks that need action plus a one-line
53
- verdict. Add `--verbose` (or `--all` / `-v`) to see the full per-check tree, including everything
54
- that passed.
48
+ `--preserve-symlinks-main` flag, version drift, oversized backup cache, missing git committer
49
+ identity in the sync repo (a push fails at commit time without one), path-map entries whose local
50
+ project folder no longer exists on this machine, synced skills with local edits that differ from
51
+ the shared copy, and settings drift in both directions: keys present in the repo merge but absent
52
+ from your live `settings.json` (behind; the next `nomad pull` will restore them, fix:
53
+ `nomad pull`) and keys present locally but not yet in the repo (ahead; local-only additions, fix:
54
+ `nomad capture-settings`). Each issue includes a fix hint. By default the report is compact: it
55
+ shows only checks that need action plus a one-line verdict. Add `--verbose` (or `--all` / `-v`) to
56
+ see the full per-check tree, including everything that passed.
55
57
  - **Self-healing sync.** Every overwrite is backed up first, and `nomad pull --force-remote`
56
58
  recovers two kinds of stuck sync repo: a repo stuck mid-rebase or mid-merge (aborts the operation,
57
59
  parks stranded work on a branch, refuses if shared config is at risk), and a repo where the rebase
@@ -166,7 +168,10 @@ but requires nomad `>= 0.35.0` because it calls recent subcommands (`nomad diff`
166
168
  - `gh` ([GitHub CLI](https://cli.github.com/)), required by `nomad init`
167
169
 
168
170
  **Optional:** [curl](https://curl.se/) or [wget](https://www.gnu.org/software/wget/) for the
169
- version-staleness check and `nomad doctor --check-schema`. The CLI works without them.
171
+ version-staleness check and `nomad doctor --check-schema`. The CLI works without them. The opt-in
172
+ `nomad doctor --check-remote` flag reads the locally-cached `origin/main` remote-tracking ref (no
173
+ curl or wget needed) and verifies that `shared/` and a valid `path-map.json` are present there; it
174
+ skips with a `⚠︎` when the ref is unavailable, and is non-fatal in all cases.
170
175
 
171
176
  ## Learn more
172
177