claude-nomad 0.50.3 → 0.51.1

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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.51.1](https://github.com/funkadelic/claude-nomad/compare/v0.51.0...v0.51.1) (2026-06-18)
4
+
5
+
6
+ ### Fixed
7
+
8
+ * **doctor:** handle diverged settings keys honestly instead of advising blind pull ([#315](https://github.com/funkadelic/claude-nomad/issues/315)) ([39f8148](https://github.com/funkadelic/claude-nomad/commit/39f81480285693e08575f5ab4ecbb8b182eeb233))
9
+
10
+ ## [0.51.0](https://github.com/funkadelic/claude-nomad/compare/v0.50.3...v0.51.0) (2026-06-18)
11
+
12
+
13
+ ### Added
14
+
15
+ * **capture-settings:** direction-aware settings drift detection and capture command ([#314](https://github.com/funkadelic/claude-nomad/issues/314)) ([512c1a2](https://github.com/funkadelic/claude-nomad/commit/512c1a27a3a573b3c2684bae21e577a50a58a098))
16
+
17
+
18
+ ### Changed
19
+
20
+ * **deps:** regenerate package-lock.json ([#312](https://github.com/funkadelic/claude-nomad/issues/312)) ([a80a974](https://github.com/funkadelic/claude-nomad/commit/a80a9740be72a1cad6e7865697548274ff0fbe51))
21
+
3
22
  ## [0.50.3](https://github.com/funkadelic/claude-nomad/compare/v0.50.2...v0.50.3) (2026-06-17)
4
23
 
5
24
 
package/README.md CHANGED
@@ -40,9 +40,11 @@ survives different file paths and your secrets never ride along.
40
40
  `--dry-run` on pull and push prints the plan without writing anything.
41
41
  - **One command tells you what is wrong.** `nomad doctor` is a read-only health check: wedged sync
42
42
  repo, broken hook references, hooks that would crash on session start because of a missing
43
- `--preserve-symlinks-main` flag, version drift, oversized backup cache, and settings drift (warns
44
- when `~/.claude/settings.json` no longer matches the base+host merge nomad would write, the
45
- silent-clobber case, with `nomad pull` as the fix), each with a fix hint.
43
+ `--preserve-symlinks-main` flag, version drift, oversized backup cache, and settings drift in both
44
+ directions: keys present in the repo merge but absent from your live `settings.json` (behind; the
45
+ next `nomad pull` will restore them, fix: `nomad pull`) and keys present locally but not yet in
46
+ the repo (ahead; local-only additions, fix: `nomad capture-settings`). Each issue includes a fix
47
+ hint.
46
48
  - **Self-healing sync.** Every overwrite is backed up first, and `nomad pull --force-remote`
47
49
  recovers two kinds of stuck sync repo: a repo stuck mid-rebase or mid-merge (aborts the operation,
48
50
  parks stranded work on a branch, refuses if shared config is at risk), and a repo where the rebase
@@ -123,6 +125,15 @@ surfaces any orphaned autostash entry, then re-pulls). Run `nomad doctor` first
123
125
  which state you are in; the Repository section names the specific problem and points at the right
124
126
  fix.
125
127
 
128
+ If an external tool (such as Claude Code or GSD) wrote new keys into your `~/.claude/settings.json`
129
+ that are not yet in your shared repo, run `nomad capture-settings` to promote them before the next
130
+ `nomad pull` overwrites them. With `--host`, the keys land in `hosts/<NOMAD_HOST>.json` instead of
131
+ `shared/settings.base.json` (useful for machine-specific values such as absolute paths). `--dry-run`
132
+ shows what would be written without touching anything. Before it writes, `capture-settings` shows
133
+ the destination and the keys and asks you to confirm; pass `--yes` (or `-y`) to skip the prompt,
134
+ which is required when running without an interactive terminal. `nomad push` also warns when it
135
+ detects ahead-drift so you have a prompt to act before the push completes.
136
+
126
137
  ## Claude Code plugin
127
138
 
128
139
  An optional companion plugin puts nomad one slash away inside Claude Code and warns you at session