claude-nomad 0.41.0 → 0.42.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 +18 -0
- package/README.md +8 -0
- package/dist/nomad.mjs +451 -254
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.42.0](https://github.com/funkadelic/claude-nomad/compare/v0.41.0...v0.42.0) (2026-06-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Added
|
|
7
|
+
|
|
8
|
+
* **pull:** add --force-remote recovery for wedged repos ([#241](https://github.com/funkadelic/claude-nomad/issues/241)) ([3425bc4](https://github.com/funkadelic/claude-nomad/commit/3425bc44e7a0c83335f5c170401619ff07ef0592))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
* **preview:** drop /dev/null lines and key-order diff noise ([#237](https://github.com/funkadelic/claude-nomad/issues/237)) ([2a3271c](https://github.com/funkadelic/claude-nomad/commit/2a3271c637f467a07c64c4fd8c381dd042c10e9c))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Documentation
|
|
17
|
+
|
|
18
|
+
* **faq:** add FAQ ([#240](https://github.com/funkadelic/claude-nomad/issues/240)) ([9150c97](https://github.com/funkadelic/claude-nomad/commit/9150c97a4f760dbb7ca3fd5a59657a3f34838aac))
|
|
19
|
+
* **faq:** add FAQ page with push-then-pull order of operations ([#239](https://github.com/funkadelic/claude-nomad/issues/239)) ([a0198ac](https://github.com/funkadelic/claude-nomad/commit/a0198ac1b77b87bbeef4f2dd3d11678ed58cb376))
|
|
20
|
+
|
|
3
21
|
## [0.41.0](https://github.com/funkadelic/claude-nomad/compare/v0.40.0...v0.41.0) (2026-06-03)
|
|
4
22
|
|
|
5
23
|
|
package/README.md
CHANGED
|
@@ -77,6 +77,12 @@ All allow paths always re-scan after writing the allowlist; a surviving finding
|
|
|
77
77
|
push. See [Recovery flows](https://funkadelic.github.io/claude-nomad/recovery/) for the full
|
|
78
78
|
decision tree.
|
|
79
79
|
|
|
80
|
+
If a previous `nomad pull` left the sync repo stuck mid-rebase or mid-merge, run
|
|
81
|
+
`nomad pull --force-remote` to auto-recover. It aborts the in-progress operation, parks stranded
|
|
82
|
+
commits on a `nomad/stranded-<ts>` branch, and resets to `origin/main`, then re-pulls. It refuses if
|
|
83
|
+
any stranded or dirty tracked changes touch synced config (shared/, hosts/, path-map.json), so
|
|
84
|
+
config you care about is never silently discarded.
|
|
85
|
+
|
|
80
86
|
## Requirements
|
|
81
87
|
|
|
82
88
|
- Node.js 22.22.1 or newer (24 LTS recommended)
|
|
@@ -96,5 +102,7 @@ version-staleness check and `nomad doctor --check-schema`. The CLI works without
|
|
|
96
102
|
- [Commands reference](https://funkadelic.github.io/claude-nomad/commands/) -- all CLI flags
|
|
97
103
|
- [Recovery flows](https://funkadelic.github.io/claude-nomad/recovery/) -- backups, drop-session,
|
|
98
104
|
redact, gitleaks allowlist, non-interactive allow
|
|
105
|
+
- [FAQ](https://funkadelic.github.io/claude-nomad/faq/) -- common questions, like the right
|
|
106
|
+
push/pull order when both sides have changes
|
|
99
107
|
- [Contributing](https://funkadelic.github.io/claude-nomad/contributing/)
|
|
100
108
|
- [Security policy](https://funkadelic.github.io/claude-nomad/security/)
|