claude-nomad 0.56.1 → 0.57.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 +35 -0
- package/README.md +18 -12
- package/dist/nomad.mjs +844 -511
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.57.0](https://github.com/funkadelic/claude-nomad/compare/v0.56.2...v0.57.0) (2026-07-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Added
|
|
7
|
+
|
|
8
|
+
* **docs-site:** add starlight-llms-txt plugin ([#378](https://github.com/funkadelic/claude-nomad/issues/378)) ([0604327](https://github.com/funkadelic/claude-nomad/commit/0604327ffa69abbee0b70183a49416ec14a3306c))
|
|
9
|
+
* **sync:** add unified nomad sync command ([#380](https://github.com/funkadelic/claude-nomad/issues/380)) ([e60a05e](https://github.com/funkadelic/claude-nomad/commit/e60a05e62179751652d70e54ba3deb8b6b7c4859))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
* **plugin:** tolerate a user-supplied --dry-run in push and sync wrappers ([#381](https://github.com/funkadelic/claude-nomad/issues/381)) ([7ce0a99](https://github.com/funkadelic/claude-nomad/commit/7ce0a99ae53cd8737b5e03bb0f5f730447b1108d))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
* remove vestigial private-repo guards from workflows ([#383](https://github.com/funkadelic/claude-nomad/issues/383)) ([31e52b8](https://github.com/funkadelic/claude-nomad/commit/31e52b834ca55204dac29fcec6ceee35605f818b))
|
|
20
|
+
* scrub internal planning IDs from source and test comments ([#382](https://github.com/funkadelic/claude-nomad/issues/382)) ([b024b7b](https://github.com/funkadelic/claude-nomad/commit/b024b7b1b877af347db7ca1754751ede73b5879f))
|
|
21
|
+
|
|
22
|
+
## [0.56.2](https://github.com/funkadelic/claude-nomad/compare/v0.56.1...v0.56.2) (2026-07-01)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
* **pull:** retain unpushed local work and surface it in the preview ([#376](https://github.com/funkadelic/claude-nomad/issues/376)) ([3f70019](https://github.com/funkadelic/claude-nomad/commit/3f70019c89ccd77726e6330d9623e106bb9ff69c))
|
|
28
|
+
|
|
29
|
+
What this means: `nomad pull` no longer discards work you have not pushed
|
|
30
|
+
yet. Chat sessions, subagent history, and memory files that exist only on
|
|
31
|
+
this machine now survive a pull, and a synced file you have edited locally
|
|
32
|
+
(a project's `.planning` notes or its `CLAUDE.md`) is kept instead of being
|
|
33
|
+
overwritten when it differs from the incoming copy, with a note to push and
|
|
34
|
+
reconcile. `nomad diff` and `pull --dry-run` now show the count of retained
|
|
35
|
+
local-only items and the keep-local warning, where before they reported
|
|
36
|
+
`clean` / `0 collisions`.
|
|
37
|
+
|
|
3
38
|
## [0.56.1](https://github.com/funkadelic/claude-nomad/compare/v0.56.0...v0.56.1) (2026-06-30)
|
|
4
39
|
|
|
5
40
|
|
package/README.md
CHANGED
|
@@ -13,8 +13,9 @@
|
|
|
13
13
|
|
|
14
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
|
-
private Git repo you control. `nomad
|
|
17
|
-
|
|
16
|
+
private Git repo you control. Run `nomad sync` on any machine and everything is there, conversations
|
|
17
|
+
included; it pulls in your latest config first, then publishes your local changes, so you never have
|
|
18
|
+
to remember which one to run first.
|
|
18
19
|
|
|
19
20
|
Not dotfiles, not rsync. **claude-nomad** understands Claude Code's state, so your session history
|
|
20
21
|
survives different file paths and your secrets never ride along.
|
|
@@ -117,14 +118,19 @@ Everyday loop on any host:
|
|
|
117
118
|
|
|
118
119
|
```bash
|
|
119
120
|
$ nomad doctor # confirm setup
|
|
120
|
-
$ nomad
|
|
121
|
-
$ nomad push # publish local changes (sessions, settings)
|
|
121
|
+
$ nomad sync # pull config, then publish local changes, in one step
|
|
122
122
|
```
|
|
123
123
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
124
|
+
`nomad sync` is the command to reach for day to day: it always pulls first (so changes from your
|
|
125
|
+
other machines land before anything is pushed, and work that exists only on this machine is kept,
|
|
126
|
+
not deleted) and then pushes, under one lock, so there is no ordering to remember. `nomad pull` and
|
|
127
|
+
`nomad push` are still available as lower-level commands for cases `sync` does not cover: recovering
|
|
128
|
+
a wedged repo with `nomad pull --force-remote`, or resolving a detected secret without the
|
|
129
|
+
interactive menu via `nomad push --redact-all` / `--allow` / `--allow-all` (see
|
|
130
|
+
[Changing settings](#changing-settings) and
|
|
131
|
+
[Recovery flows](https://funkadelic.github.io/claude-nomad/recovery/)). The
|
|
132
|
+
[FAQ](https://funkadelic.github.io/claude-nomad/faq/) covers what `sync` does under the hood and the
|
|
133
|
+
push/pull order it enforces.
|
|
128
134
|
|
|
129
135
|
### Make your sessions follow you
|
|
130
136
|
|
|
@@ -216,10 +222,10 @@ first (minimum version `>= 0.35.0`), then add the plugin.
|
|
|
216
222
|
/plugin install nomad@claude-nomad
|
|
217
223
|
```
|
|
218
224
|
|
|
219
|
-
It adds `/nomad:pull`, `/nomad:diff`, `/nomad:push` (preview only),
|
|
220
|
-
`/nomad:clean`, plus a session-start drift check. The plugin versions
|
|
221
|
-
but requires nomad `>= 0.35.0` because it calls recent subcommands
|
|
222
|
-
`nomad clean --backups`) and reads the doctor command's status output. See the
|
|
225
|
+
It adds `/nomad:sync` (preview only), `/nomad:pull`, `/nomad:diff`, `/nomad:push` (preview only),
|
|
226
|
+
`/nomad:doctor`, and `/nomad:clean`, plus a session-start drift check. The plugin versions
|
|
227
|
+
independently from the CLI, but requires nomad `>= 0.35.0` because it calls recent subcommands
|
|
228
|
+
(`nomad diff`, `nomad clean --backups`) and reads the doctor command's status output. See the
|
|
223
229
|
[plugin guide](https://funkadelic.github.io/claude-nomad/plugin/) for details.
|
|
224
230
|
|
|
225
231
|
## Requirements
|