claude-nomad 0.55.1 → 0.56.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,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.56.0](https://github.com/funkadelic/claude-nomad/compare/v0.55.1...v0.56.0) (2026-06-30)
4
+
5
+
6
+ ### Added
7
+
8
+ * **push:** incremental leak scan (scan only new or changed transcripts) ([#368](https://github.com/funkadelic/claude-nomad/issues/368)) ([02c771a](https://github.com/funkadelic/claude-nomad/commit/02c771a680642ca3248a2f0d8e4196f6421dd967))
9
+
10
+
11
+ ### Changed
12
+
13
+ * **push:** extract manifest selection into its own module ([#370](https://github.com/funkadelic/claude-nomad/issues/370)) ([a6960dc](https://github.com/funkadelic/claude-nomad/commit/a6960dcf1d9489791a6810d083021e74a48eec79))
14
+ * **push:** split commands.push.ts settings, guards, and steps into modules ([#371](https://github.com/funkadelic/claude-nomad/issues/371)) ([2b5a0a9](https://github.com/funkadelic/claude-nomad/commit/2b5a0a9f53d7af460bd74166018f3011f7b67392))
15
+
16
+
17
+ ### Testing
18
+
19
+ * raise vitest timeouts and cap worker oversubscription to reduce flake ([#372](https://github.com/funkadelic/claude-nomad/issues/372)) ([51083d7](https://github.com/funkadelic/claude-nomad/commit/51083d73c3e581a61a17b0eea6f00f22eb2c176b))
20
+
3
21
  ## [0.55.1](https://github.com/funkadelic/claude-nomad/compare/v0.55.0...v0.55.1) (2026-06-29)
4
22
 
5
23
 
package/README.md CHANGED
@@ -41,7 +41,9 @@ survives different file paths and your secrets never ride along.
41
41
  credentials never sync, and gitleaks scans the exact files about to be published. The push aborts
42
42
  on any hit, with an interactive menu to redact, allow, or drop the finding. Always publish through
43
43
  `nomad push`: the sync repo is an ordinary Git repo, so a manual `git push` from it skips the scan
44
- entirely and can leak a secret that `nomad push` would have caught.
44
+ entirely and can leak a secret that `nomad push` would have caught. Steady-state pushes scan only
45
+ the transcripts that changed since the last successful push (incremental); a cold start, a
46
+ gitleaks version change, a config file change, or `--full-scan` forces a full rescan.
45
47
  - **Preview before you trust it.** `nomad diff` shows offline what a pull would change (gsd-owned
46
48
  hook churn is filtered the same as on pull, so the preview matches what a real pull writes), and
47
49
  `--dry-run` on pull and push prints the plan without writing anything.
@@ -166,6 +168,10 @@ log output remains grep-stable.
166
168
  When `nomad push` detects a potential secret, it drops into an interactive menu (TTY) or aborts with
167
169
  a recovery hint (non-TTY/CI). Three non-interactive recovery paths are available without the menu:
168
170
 
171
+ - `nomad push --full-scan` -- ignore the per-host push manifest and rescan all transcripts, then
172
+ rewrite the manifest on success. Use this after upgrading gitleaks, after editing a gitleaks
173
+ config file, or whenever you want to be certain nothing slipped through an incremental scan.
174
+ Composes freely with `--dry-run` and all resolution modes.
169
175
  - `nomad push --redact-all` -- scrub every finding from the local transcript in place, then push.
170
176
  All-or-nothing: if any finding cannot be redacted (an active session, or one that does not map to
171
177
  a synced transcript), nothing is changed and the push stops so you can handle those sessions.