claude-nomad 0.37.0 → 0.38.1

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,31 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.38.1](https://github.com/funkadelic/claude-nomad/compare/v0.38.0...v0.38.1) (2026-06-02)
4
+
5
+
6
+ ### Fixed
7
+
8
+ * **docs:** base-qualify internal links so they resolve under /claude-nomad ([#222](https://github.com/funkadelic/claude-nomad/issues/222)) ([8cff369](https://github.com/funkadelic/claude-nomad/commit/8cff3691687d07eb4c0f54f9f7fdbf680342c2e4))
9
+
10
+
11
+ ### Changed
12
+
13
+ * adopt fallow analyzer config ([#227](https://github.com/funkadelic/claude-nomad/issues/227)) ([ebf7ca0](https://github.com/funkadelic/claude-nomad/commit/ebf7ca0aa05510fa9edde5f408e951b7bfec05ab))
14
+ * break import cycles and trim unused exports ([#225](https://github.com/funkadelic/claude-nomad/issues/225)) ([1808539](https://github.com/funkadelic/claude-nomad/commit/180853964c1d09153b3c9e1272255e2a753bd6d3))
15
+ * **tests:** don't cancel in-progress push:main coverage runs ([#226](https://github.com/funkadelic/claude-nomad/issues/226)) ([3164283](https://github.com/funkadelic/claude-nomad/commit/31642839a5be85e3e9a966411bf5b839226616e8))
16
+
17
+
18
+ ### Documentation
19
+
20
+ * document ALWAYS_NEVER_SYNC credential hard-block in docs-site ([#224](https://github.com/funkadelic/claude-nomad/issues/224)) ([8904a4a](https://github.com/funkadelic/claude-nomad/commit/8904a4a8685f555e399dd394b825018e2055d373))
21
+
22
+ ## [0.38.0](https://github.com/funkadelic/claude-nomad/compare/v0.37.0...v0.38.0) (2026-06-02)
23
+
24
+
25
+ ### Added
26
+
27
+ * non-interactive gitleaks allowlist (nomad allow, push --allow/--allow-all) ([#220](https://github.com/funkadelic/claude-nomad/issues/220)) ([c6cc5eb](https://github.com/funkadelic/claude-nomad/commit/c6cc5ebec5dd15cd1aba74dd3627d18c39c8b8c4))
28
+
3
29
  ## [0.37.0](https://github.com/funkadelic/claude-nomad/compare/v0.36.0...v0.37.0) (2026-06-02)
4
30
 
5
31
 
package/README.md CHANGED
@@ -57,6 +57,21 @@ $ nomad pull # apply config to ~/.claude/
57
57
  $ nomad push # publish local changes (sessions, settings)
58
58
  ```
59
59
 
60
+ When `nomad push` detects a potential secret, it drops into an interactive menu (TTY) or aborts with
61
+ a recovery hint (non-TTY/CI). Three non-interactive recovery paths are available without the menu:
62
+
63
+ - `nomad push --redact-all` -- scrub every finding from the local transcript in place, then push.
64
+ - `nomad push --allow <rule>` -- record findings matching one gitleaks rule id as false positives
65
+ (appends their fingerprints to `.gitleaksignore`), then re-scan and push.
66
+ - `nomad push --allow-all` -- record every current finding as a false positive, then re-scan and
67
+ push.
68
+ - `nomad allow <fingerprint>...` -- pre-record specific fingerprints in `.gitleaksignore` without
69
+ going through a push cycle.
70
+
71
+ All allow paths always re-scan after writing the allowlist; a surviving finding still aborts the
72
+ push. See [Recovery flows](https://funkadelic.github.io/claude-nomad/recovery/) for the full
73
+ decision tree.
74
+
60
75
  ## Requirements
61
76
 
62
77
  - Node.js 22.22.1 or newer (24 LTS recommended)
@@ -75,6 +90,6 @@ version-staleness check and `nomad doctor --check-schema`. The CLI works without
75
90
  walkthrough, migrating an existing `~/.claude/`
76
91
  - [Commands reference](https://funkadelic.github.io/claude-nomad/commands/) -- all CLI flags
77
92
  - [Recovery flows](https://funkadelic.github.io/claude-nomad/recovery/) -- backups, drop-session,
78
- redact, gitleaks allowlist
93
+ redact, gitleaks allowlist, non-interactive allow
79
94
  - [Contributing](https://funkadelic.github.io/claude-nomad/contributing/)
80
95
  - [Security policy](https://funkadelic.github.io/claude-nomad/security/)