claude-nomad 0.53.2 → 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 +19 -0
- package/README.md +14 -9
- package/dist/nomad.mjs +550 -367
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
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
|
+
|
|
15
|
+
## [0.53.3](https://github.com/funkadelic/claude-nomad/compare/v0.53.2...v0.53.3) (2026-06-26)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
* **docs-site:** upgrade to Astro 7 and Starlight 0.41 ([#340](https://github.com/funkadelic/claude-nomad/issues/340)) ([d0ab419](https://github.com/funkadelic/claude-nomad/commit/d0ab4196af16871c1c38f5ce27a5cc6c6f751576))
|
|
21
|
+
|
|
3
22
|
## [0.53.2](https://github.com/funkadelic/claude-nomad/compare/v0.53.1...v0.53.2) (2026-06-26)
|
|
4
23
|
|
|
5
24
|
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
**Your entire Claude Code setup, on every machine. History included, every push secret-scanned.**
|
|
13
13
|
|
|
14
|
-
Open Claude Code on a second machine and it is a blank slate: none of your custom
|
|
14
|
+
Open Claude Code on a second machine and it is a blank slate: none of your custom skills, slash
|
|
15
15
|
commands, tuned settings, or past conversations. **claude-nomad** keeps all of it in sync through a
|
|
16
16
|
private Git repo you control. `nomad push` on one machine, `nomad pull` on the next, and everything
|
|
17
17
|
is there, conversations included.
|
|
@@ -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,
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
the
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
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
|
|