claude-nomad 0.44.0 → 0.45.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/.gitleaks.toml CHANGED
@@ -39,6 +39,27 @@ paths = [
39
39
  ]
40
40
  condition = "AND"
41
41
 
42
+ # Path-scoped: SSH public-key fingerprints in git signature-verification
43
+ # output (`git log --show-signature`, `git verify-commit`) land in session
44
+ # transcripts as `Good "git" signature for <signer> with ED25519 key
45
+ # SHA256:<43-char base64>`. The fingerprint is a hash of a PUBLIC key, not a
46
+ # credential, but its 43-char base64 body trips generic-api-key. Anchoring on
47
+ # the surrounding `with <keytype> key SHA256:` structure (via
48
+ # regexTarget = "line") keeps this from whitelisting a bare token: a real
49
+ # secret is never preceded by an SSH key-type label and the SHA256: scheme
50
+ # prefix. `condition = "AND"` plus the session-jsonl path scope double-locks
51
+ # it to synced transcripts.
52
+ [[allowlists]]
53
+ description = "claude-nomad: SSH public-key fingerprints (with <keytype> key SHA256:<b64>) in git signature output in synced session transcripts"
54
+ regexTarget = "line"
55
+ regexes = [
56
+ '''with (?:ED25519|ED25519-SK|ECDSA|ECDSA-SK|RSA|DSA) key SHA256:[A-Za-z0-9+/]{43}''',
57
+ ]
58
+ paths = [
59
+ '''^shared/projects/[^/]+/.*\.jsonl$''',
60
+ ]
61
+ condition = "AND"
62
+
42
63
  # Path-scoped: SonarCloud issue-listing tool output (`gh`/sonar API dumps of
43
64
  # the form `key: <20-char id>` immediately followed by `rule: <lang>:S<n>`)
44
65
  # lands in session transcripts during PR reviews. The issue key is an opaque
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.45.0](https://github.com/funkadelic/claude-nomad/compare/v0.44.1...v0.45.0) (2026-06-07)
4
+
5
+
6
+ ### Added
7
+
8
+ * **doctor:** warn when settings.json drifts from the base+host merge ([#259](https://github.com/funkadelic/claude-nomad/issues/259)) ([6401732](https://github.com/funkadelic/claude-nomad/commit/6401732199aa9f883de78b15b323ec4dfecf8d3f))
9
+
10
+
11
+ ### Changed
12
+
13
+ * **gitleaks:** allowlist SSH key fingerprints in signature output ([#257](https://github.com/funkadelic/claude-nomad/issues/257)) ([ca310aa](https://github.com/funkadelic/claude-nomad/commit/ca310aa7f3a23b152ed149224400d60332ada037))
14
+
15
+
16
+ ### Testing
17
+
18
+ * kill mutation survivors from the full Stryker sweep ([#260](https://github.com/funkadelic/claude-nomad/issues/260)) ([314e315](https://github.com/funkadelic/claude-nomad/commit/314e31587cb97e0fdf5b410587bb0ca64a2e46d5))
19
+
20
+ ## [0.44.1](https://github.com/funkadelic/claude-nomad/compare/v0.44.0...v0.44.1) (2026-06-06)
21
+
22
+
23
+ ### Fixed
24
+
25
+ * **config:** read HOME from process.env before os.homedir() ([#255](https://github.com/funkadelic/claude-nomad/issues/255)) ([2d5d679](https://github.com/funkadelic/claude-nomad/commit/2d5d67930196bd33f68de608385d4254f203f758))
26
+ * **output:** list per-item lines without info glyph ([#251](https://github.com/funkadelic/claude-nomad/issues/251)) ([bdbebee](https://github.com/funkadelic/claude-nomad/commit/bdbebee506d69eeffc91d609c44110f5d4f38e25))
27
+
28
+
29
+ ### Changed
30
+
31
+ * **config:** resolve HOME-derived paths at call time ([#254](https://github.com/funkadelic/claude-nomad/issues/254)) ([db007fc](https://github.com/funkadelic/claude-nomad/commit/db007fceb92c435ad8c0149119691fdbdb6d9aaa))
32
+
33
+
34
+ ### Documentation
35
+
36
+ * mark the HOME-isolation mutation-testing limitation resolved ([#256](https://github.com/funkadelic/claude-nomad/issues/256)) ([83f462d](https://github.com/funkadelic/claude-nomad/commit/83f462d51b991f3ecc7ce853c4694163fbb0b859))
37
+
38
+
39
+ ### Testing
40
+
41
+ * add Stryker mutation-testing toolchain and prune zero-kill test ([#253](https://github.com/funkadelic/claude-nomad/issues/253)) ([c7339f1](https://github.com/funkadelic/claude-nomad/commit/c7339f11dd1dc28fa8fa73f744805dc0ca005855))
42
+
3
43
  ## [0.44.0](https://github.com/funkadelic/claude-nomad/compare/v0.43.0...v0.44.0) (2026-06-05)
4
44
 
5
45
 
package/README.md CHANGED
@@ -37,7 +37,9 @@ survives different file paths and your secrets never ride along.
37
37
  `--dry-run` on pull and push prints the plan without writing anything.
38
38
  - **One command tells you what is wrong.** `nomad doctor` is a read-only health check: wedged sync
39
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.
40
+ `--preserve-symlinks-main` flag, version drift, oversized backup cache, and settings drift (warns
41
+ when `~/.claude/settings.json` no longer matches the base+host merge nomad would write, the
42
+ silent-clobber case, with `nomad pull` as the fix), each with a fix hint.
41
43
  - **Self-healing sync.** Every overwrite is backed up first, and `nomad pull --force-remote`
42
44
  recovers a sync repo stuck mid-rebase while parking your stranded work on a branch, refusing
43
45
  entirely if shared config is at risk.