claude-nomad 0.50.3 → 0.51.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 +12 -0
- package/README.md +14 -3
- package/dist/nomad.mjs +876 -655
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.51.0](https://github.com/funkadelic/claude-nomad/compare/v0.50.3...v0.51.0) (2026-06-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Added
|
|
7
|
+
|
|
8
|
+
* **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))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
* **deps:** regenerate package-lock.json ([#312](https://github.com/funkadelic/claude-nomad/issues/312)) ([a80a974](https://github.com/funkadelic/claude-nomad/commit/a80a9740be72a1cad6e7865697548274ff0fbe51))
|
|
14
|
+
|
|
3
15
|
## [0.50.3](https://github.com/funkadelic/claude-nomad/compare/v0.50.2...v0.50.3) (2026-06-17)
|
|
4
16
|
|
|
5
17
|
|
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
|
|
44
|
-
|
|
45
|
-
|
|
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
|