claude-nomad 0.44.1 → 0.46.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.46.0](https://github.com/funkadelic/claude-nomad/compare/v0.45.0...v0.46.0) (2026-06-08)
4
+
5
+
6
+ ### Added
7
+
8
+ * **doctor:** show a progress spinner while checks run ([#266](https://github.com/funkadelic/claude-nomad/issues/266)) ([148ee4d](https://github.com/funkadelic/claude-nomad/commit/148ee4dba75224a3d98059f48130c0bc4daab55f))
9
+ * **recovery:** show masked secret context in push recovery prompts ([#263](https://github.com/funkadelic/claude-nomad/issues/263)) ([d1de449](https://github.com/funkadelic/claude-nomad/commit/d1de449c183943a9e8efbadc354f20b7a6408c57))
10
+
11
+
12
+ ### Fixed
13
+
14
+ * **links:** skip dry-run create event for already-correct symlinks ([#261](https://github.com/funkadelic/claude-nomad/issues/261)) ([4e32146](https://github.com/funkadelic/claude-nomad/commit/4e321463254d336786d4d7397ae0a0fdeb3274ae))
15
+
16
+
17
+ ### Changed
18
+
19
+ * **summary:** drop glyph and "summary:" prefix from grouped-tree row ([#265](https://github.com/funkadelic/claude-nomad/issues/265)) ([5e87a18](https://github.com/funkadelic/claude-nomad/commit/5e87a183272ca3de27a80c0fd9e66089b11a4c64))
20
+
21
+
22
+ ### Testing
23
+
24
+ * **recovery:** correct two inaccurate comments in recovery context tests ([#264](https://github.com/funkadelic/claude-nomad/issues/264)) ([371c43d](https://github.com/funkadelic/claude-nomad/commit/371c43dc6873b9c1d81ef477f535c47f47826e97))
25
+
26
+ ## [0.45.0](https://github.com/funkadelic/claude-nomad/compare/v0.44.1...v0.45.0) (2026-06-07)
27
+
28
+
29
+ ### Added
30
+
31
+ * **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))
32
+
33
+
34
+ ### Changed
35
+
36
+ * **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))
37
+
38
+
39
+ ### Testing
40
+
41
+ * 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))
42
+
3
43
  ## [0.44.1](https://github.com/funkadelic/claude-nomad/compare/v0.44.0...v0.44.1) (2026-06-06)
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.