claude-nomad 0.65.0 → 0.66.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,82 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.66.0](https://github.com/funkadelic/claude-nomad/compare/v0.65.0...v0.66.0) (2026-08-17)
4
+
5
+ ### What's new
6
+
7
+ **On all supported platforms, i.e. \*nix, Mac, WSL2, and native Windows.**
8
+
9
+ - **A folder you share now carries everything inside it.** If you share a folder through
10
+ `sharedDirs`, its subfolders travel with it, including ones with everyday names like `sessions`,
11
+ `plans`, `tasks`, and `cache`. Those names used to be refused wherever they appeared, so a push
12
+ could fail, or `nomad adopt` could turn you away, over a folder holding nothing sensitive. Your
13
+ Claude login, your credential files, your per-host settings, and your local history still never
14
+ leave the machine, in either direction.
15
+ - **`nomad adopt` checks the whole folder before it moves anything.** It used to copy everything,
16
+ so a file that never syncs between machines could land in your repo and fail your next push, on
17
+ content you never chose to add. Adopt now stops before touching anything and names every path it
18
+ objected to and why: a name that collides with the never-sync list, which renaming clears, or a
19
+ name that looks like a credential file, where renaming only helps if the new name looks different
20
+ too. `--dry-run` gives exactly the same answer as the real run, so you can check a folder before
21
+ committing to it.
22
+ - **An interrupted `nomad adopt` now explains itself instead of writing a crash report.** If
23
+ another program has the directory open, or its permissions block the move partway through, the
24
+ command says what happened, where your content ended up, and what to run next. Your content is
25
+ safe in every one of these cases: either it was never touched on this machine, or it is already
26
+ in the repo.
27
+
28
+ **On native Windows (PowerShell or cmd).** Note: WSL2 behaves like Linux and none of these apply to
29
+ it.
30
+
31
+ - **A push no longer publishes a folder you never asked to share.** Windows keeps your shared
32
+ config as real file copies rather than symlinks, and a push used to pick up any folder sitting in
33
+ your Claude directory and publish it to your other machines. Sharing is now the same deliberate
34
+ step it has always been on macOS and Linux: run `nomad adopt <name>` once, then push. Your
35
+ existing shared folders keep syncing exactly as before.
36
+ - **`nomad doctor --verbose` names a folder your repo does not carry yet.** It lists the local
37
+ copies that are still private to this machine, and the command that shares one.
38
+ - **One unreadable file no longer ends your pull.** A single config file that another program has
39
+ open, or that your account cannot read, used to stop the whole pull with a crash report. Nomad
40
+ now names the file and the reason, then carries on: your settings, your skills, and your session
41
+ history all still sync, and the command finishes normally. The warning also says whether the file
42
+ is still there or has been removed, and points at the backup copy when there is one.
43
+ - **`nomad adopt` recovers cleanly when it cannot restore your local copy.** Adopt finishes by
44
+ copying the folder back out of the sync repo so this machine keeps a usable copy. If that copy
45
+ was blocked, the command used to end in a crash report, with the folder gone from your Claude
46
+ directory and nothing staged for publishing. It now stops with a plain message naming the folder
47
+ and the reason, stages the adopted content either way, and tells you to run `nomad pull` before
48
+ your next push and why that order matters. A half written folder left behind by the interrupted
49
+ copy is removed, so a later push cannot replace your adopted folder with the partial one.
50
+ - **A refused `nomad pull --force-remote` now tells you what actually clears it.** The old advice
51
+ did not work, and would land you back on the same refusal. The message now gives the steps that
52
+ finish the job and names the one that clears the check, and it says that the stuck rebase has
53
+ already been undone by that point, so retrying is now just an ordinary pull. It no longer calls
54
+ every listed file at risk, since the list can include files where the shared repo is simply ahead
55
+ of yours. The quickstart says the same thing and links to the matching recovery steps in the FAQ.
56
+
57
+
58
+ ### Added
59
+
60
+ * carry your own subfolders inside a shared directory ([#522](https://github.com/funkadelic/claude-nomad/issues/522)) ([791eef9](https://github.com/funkadelic/claude-nomad/commit/791eef9685672eb16113f79b7160c3988fae8ebc))
61
+
62
+
63
+ ### Fixed
64
+
65
+ * **adopt:** say what happened when a move cannot finish ([#516](https://github.com/funkadelic/claude-nomad/issues/516)) ([d5e8add](https://github.com/funkadelic/claude-nomad/commit/d5e8addac0ba769f340b776ffeb5e96a95877eea))
66
+ * **adopt:** stop a native Windows adopt from ending in a crash report ([#514](https://github.com/funkadelic/claude-nomad/issues/514)) ([0e9bee9](https://github.com/funkadelic/claude-nomad/commit/0e9bee9cc6d32ce71db2f290897de9a256b3a10c))
67
+ * **adopt:** stop adopt from copying host-only files into your synced config ([#517](https://github.com/funkadelic/claude-nomad/issues/517)) ([9f92706](https://github.com/funkadelic/claude-nomad/commit/9f92706fa6ce06635b8c3fef0e76d34484a40696))
68
+ * **ci:** keep the drift PR updatable on a second push ([#523](https://github.com/funkadelic/claude-nomad/issues/523)) ([ff6cdc6](https://github.com/funkadelic/claude-nomad/commit/ff6cdc631002bdbabb5948b7d5c41634adc5a771))
69
+ * **pull:** keep a native Windows pull going when one shared file cannot be read ([#512](https://github.com/funkadelic/claude-nomad/issues/512)) ([32ea631](https://github.com/funkadelic/claude-nomad/commit/32ea63195f260556ebd246ca03d63f7ee1758753))
70
+ * **pull:** say what actually clears a refused recovery ([#515](https://github.com/funkadelic/claude-nomad/issues/515)) ([a97fed2](https://github.com/funkadelic/claude-nomad/commit/a97fed27a0c0439631594fe6c7213e6e6df45062))
71
+
72
+
73
+ ### Dependencies
74
+
75
+ * bump astro from 7.2.0 to 7.2.2 in /docs-site in the prod-dependencies group across 1 directory ([#521](https://github.com/funkadelic/claude-nomad/issues/521)) ([4e5e4ca](https://github.com/funkadelic/claude-nomad/commit/4e5e4ca0d0a8d551f3fa743818bb3a196325254d))
76
+ * bump starlight-links-validator from 0.25.2 to 0.25.3 in /docs-site in the dev-dependencies group across 1 directory ([#520](https://github.com/funkadelic/claude-nomad/issues/520)) ([77d1a24](https://github.com/funkadelic/claude-nomad/commit/77d1a24303a14c8d8556d9d69ece4990572797f4))
77
+ * bump the codeql-action group with 2 updates ([#519](https://github.com/funkadelic/claude-nomad/issues/519)) ([9e45462](https://github.com/funkadelic/claude-nomad/commit/9e45462797059f52efbfbaec8d2a65d52455b3a9))
78
+ * bump the dev-dependencies group across 1 directory with 5 updates ([#518](https://github.com/funkadelic/claude-nomad/issues/518)) ([2feb689](https://github.com/funkadelic/claude-nomad/commit/2feb6893c61e815940fd182995b01c3be93be728))
79
+
3
80
  ## [0.65.0](https://github.com/funkadelic/claude-nomad/compare/v0.64.1...v0.65.0) (2026-08-13)
4
81
 
5
82
  ### What's new
package/README.md CHANGED
@@ -146,8 +146,9 @@ the same either way; the difference is under the hood.
146
146
  Native Windows cannot use symlinks, so claude-nomad keeps a real copy of your shared config in
147
147
  `~/.claude/` instead of a symlink. `nomad pull` and `nomad sync` both mirror your local copies into
148
148
  the repo before they fetch, so an edit you have not published yet is captured rather than
149
- overwritten. If a file cannot be read, the pull leaves it out and warns naming the file: fix that
150
- and run again before you rely on the result.
149
+ overwritten. If a file cannot be read, because another program is holding it open or its permissions
150
+ changed, the pull warns naming the file and the reason, skips that one file, and finishes everything
151
+ else normally. Close whatever is holding it, or fix its permissions, and run again to pick it up.
151
152
 
152
153
  ```powershell
153
154
  # 1. Install prerequisites and the CLI. (Using Scoop instead? scoop install gh gitleaks.)