claude-nomad 0.41.0 → 0.43.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,37 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.43.0](https://github.com/funkadelic/claude-nomad/compare/v0.42.0...v0.43.0) (2026-06-05)
4
+
5
+
6
+ ### Added
7
+
8
+ * **doctor:** summary verdict and output UX improvements ([#244](https://github.com/funkadelic/claude-nomad/issues/244)) ([46a8339](https://github.com/funkadelic/claude-nomad/commit/46a83394d1ff503db8dccb5a8b0ad59190da44cb))
9
+ * **doctor:** warn on hooks that break under symlinked dirs without --preserve-symlinks-main ([#246](https://github.com/funkadelic/claude-nomad/issues/246)) ([d9a4d20](https://github.com/funkadelic/claude-nomad/commit/d9a4d20b034920fe6fa4b1432d81fef361e6fbd2))
10
+
11
+
12
+ ### Documentation
13
+
14
+ * add features overview to README and feature tour page to docs site ([#242](https://github.com/funkadelic/claude-nomad/issues/242)) ([e45d63f](https://github.com/funkadelic/claude-nomad/commit/e45d63f9d78aef5fa9a7a2b243584e96e1e17aaf))
15
+ * **faq:** add entry for symlink-broken relative requires in hooks ([#245](https://github.com/funkadelic/claude-nomad/issues/245)) ([fa994fb](https://github.com/funkadelic/claude-nomad/commit/fa994fb9ded981f419623dba3f50cc0cd812f986))
16
+
17
+ ## [0.42.0](https://github.com/funkadelic/claude-nomad/compare/v0.41.0...v0.42.0) (2026-06-04)
18
+
19
+
20
+ ### Added
21
+
22
+ * **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))
23
+
24
+
25
+ ### Fixed
26
+
27
+ * **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))
28
+
29
+
30
+ ### Documentation
31
+
32
+ * **faq:** add FAQ ([#240](https://github.com/funkadelic/claude-nomad/issues/240)) ([9150c97](https://github.com/funkadelic/claude-nomad/commit/9150c97a4f760dbb7ca3fd5a59657a3f34838aac))
33
+ * **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))
34
+
3
35
  ## [0.41.0](https://github.com/funkadelic/claude-nomad/compare/v0.40.0...v0.41.0) (2026-06-03)
4
36
 
5
37
 
package/README.md CHANGED
@@ -21,6 +21,30 @@ survives different file paths and your secrets never ride along.
21
21
 
22
22
  **Full documentation: <https://funkadelic.github.io/claude-nomad/>**
23
23
 
24
+ ## Features
25
+
26
+ - **Sessions follow you across machines.** Start a conversation on your desktop, run
27
+ `claude --resume` on your laptop, and it is there. claude-nomad rewrites the machine-specific file
28
+ paths Claude Code embeds in every transcript, so history survives projects living at different
29
+ paths on different hosts.
30
+ - **One shared setup, per-machine exceptions.** Agents, skills, slash commands, rules, hooks, and
31
+ your `CLAUDE.md` live in one place and follow you everywhere. Settings merge a shared base with a
32
+ per-host override, so one machine can run a different model or MCP URL without forking the rest.
33
+ - **Every push is secret-scanned.** Only an explicit allow-list of paths ever leaves the machine,
34
+ credentials never sync, and gitleaks scans the exact files about to be published. The push aborts
35
+ on any hit, with an interactive menu to redact, allow, or drop the finding.
36
+ - **Preview before you trust it.** `nomad diff` shows offline what a pull would change, and
37
+ `--dry-run` on pull and push prints the plan without writing anything.
38
+ - **One command tells you what is wrong.** `nomad doctor` is a read-only health check: wedged sync
39
+ repo, broken hook references, hooks that would crash on session start because of a missing
40
+ `--preserve-symlinks-main` flag, version drift, oversized backup cache, each with a fix hint.
41
+ - **Self-healing sync.** Every overwrite is backed up first, and `nomad pull --force-remote`
42
+ recovers a sync repo stuck mid-rebase while parking your stranded work on a branch, refusing
43
+ entirely if shared config is at risk.
44
+
45
+ See the [full feature tour](https://funkadelic.github.io/claude-nomad/features/) for the rest:
46
+ opt-in per-project sync, transcript redaction, backup pruning, and more.
47
+
24
48
  ## Quickstart
25
49
 
26
50
  **First host** (once, ever):
@@ -77,6 +101,12 @@ All allow paths always re-scan after writing the allowlist; a surviving finding
77
101
  push. See [Recovery flows](https://funkadelic.github.io/claude-nomad/recovery/) for the full
78
102
  decision tree.
79
103
 
104
+ If a previous `nomad pull` left the sync repo stuck mid-rebase or mid-merge, run
105
+ `nomad pull --force-remote` to auto-recover. It aborts the in-progress operation, parks stranded
106
+ commits on a `nomad/stranded-<ts>` branch, and resets to `origin/main`, then re-pulls. It refuses if
107
+ any stranded or dirty tracked changes touch synced config (shared/, hosts/, path-map.json), so
108
+ config you care about is never silently discarded.
109
+
80
110
  ## Requirements
81
111
 
82
112
  - Node.js 22.22.1 or newer (24 LTS recommended)
@@ -96,5 +126,7 @@ version-staleness check and `nomad doctor --check-schema`. The CLI works without
96
126
  - [Commands reference](https://funkadelic.github.io/claude-nomad/commands/) -- all CLI flags
97
127
  - [Recovery flows](https://funkadelic.github.io/claude-nomad/recovery/) -- backups, drop-session,
98
128
  redact, gitleaks allowlist, non-interactive allow
129
+ - [FAQ](https://funkadelic.github.io/claude-nomad/faq/) -- common questions, like the right
130
+ push/pull order when both sides have changes
99
131
  - [Contributing](https://funkadelic.github.io/claude-nomad/contributing/)
100
132
  - [Security policy](https://funkadelic.github.io/claude-nomad/security/)