claude-nomad 0.62.4 → 0.62.6

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,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.62.6](https://github.com/funkadelic/claude-nomad/compare/v0.62.5...v0.62.6) (2026-07-25)
4
+
5
+
6
+ ### Fixed
7
+
8
+ * **nomad:** treat a Ctrl+C prompt abort as a user cancel ([#466](https://github.com/funkadelic/claude-nomad/issues/466)) ([6250627](https://github.com/funkadelic/claude-nomad/commit/62506279155fe02c067675271fa9bc02f341a14b))
9
+
10
+ ## [0.62.5](https://github.com/funkadelic/claude-nomad/compare/v0.62.4...v0.62.5) (2026-07-24)
11
+
12
+
13
+ ### Fixed
14
+
15
+ * close secret-scan parity and safety gaps ([#460](https://github.com/funkadelic/claude-nomad/issues/460)) ([02b8b3b](https://github.com/funkadelic/claude-nomad/commit/02b8b3bc91a4bf2a3cbbd483836ddede7c8bcc7e))
16
+ * close skill/memory redaction and dry-run scan parity gaps ([#462](https://github.com/funkadelic/claude-nomad/issues/462)) ([ae281de](https://github.com/funkadelic/claude-nomad/commit/ae281def35618bde81adecd9ab39f2ed16f19b42))
17
+ * harden crash-report redactor against best-effort-scan gaps ([#463](https://github.com/funkadelic/claude-nomad/issues/463)) ([703c538](https://github.com/funkadelic/claude-nomad/commit/703c538a6b9c64e941ec70f4281d83c3f5d65ab2))
18
+ * **pull:** fail closed when the autostash guard cannot probe the index ([#461](https://github.com/funkadelic/claude-nomad/issues/461)) ([224e10d](https://github.com/funkadelic/claude-nomad/commit/224e10d1e688d47f6ae105fc3ceeb83782445b40))
19
+ * **push:** reconcile dry-run leak exit code and recovery-menu UX ([#464](https://github.com/funkadelic/claude-nomad/issues/464)) ([a9fcf8b](https://github.com/funkadelic/claude-nomad/commit/a9fcf8badbcf7358a9fe2a3be32449243ad048f3))
20
+ * **update:** report a no-op when already on the latest version ([#465](https://github.com/funkadelic/claude-nomad/issues/465)) ([6066124](https://github.com/funkadelic/claude-nomad/commit/60661244f875699dc75a5bb5357979336032b1b0))
21
+
22
+
23
+ ### Changed
24
+
25
+ * add staged gate runner and local dev-loop caches ([#458](https://github.com/funkadelic/claude-nomad/issues/458)) ([81da5e7](https://github.com/funkadelic/claude-nomad/commit/81da5e7db0db90e7b66d053383daf8d033a5869d))
26
+
3
27
  ## [0.62.4](https://github.com/funkadelic/claude-nomad/compare/v0.62.3...v0.62.4) (2026-07-21)
4
28
 
5
29
 
package/README.md CHANGED
@@ -313,6 +313,7 @@ branch on `$?` without parsing stderr text.
313
313
  | 2 | Usage | Bad argv: an unknown subcommand, an unknown flag, or a malformed flag value. |
314
314
  | 4 | Conflict | The sync repo is wedged (e.g. an unresolved rebase) and needs manual git resolution. |
315
315
  | 5 | Leak blocked | gitleaks confirmed a secret in the staged tree and the push was aborted. |
316
+ | 130 | Interrupted | You pressed Ctrl+C at an interactive prompt, so nomad stopped without finishing. |
316
317
 
317
318
  A run skipped because another nomad process already holds the lock also exits 0: this is an
318
319
  intentional no-op skip, not a failure, so a backgrounded shell-rc or cron invocation never raises a
@@ -323,7 +324,8 @@ false alarm from a concurrent run. Value `3` is reserved for future use.
323
324
  If `nomad` ever hits an unexpected bug, it no longer dumps a raw stack trace at you. Instead it
324
325
  prints a short "this looks like a bug" banner (with a link to the issue tracker) and writes a small
325
326
  report you can attach to a bug report if you choose. The exit code is unchanged: an unexpected crash
326
- exits `1`, and a documented failure still exits with its own code from the table above.
327
+ exits `1`, and a documented failure still exits with its own code from the table above. A prompt you
328
+ cancel yourself is not a crash: it exits `130` and writes no report.
327
329
 
328
330
  What this means for you:
329
331
 
@@ -331,13 +333,16 @@ What this means for you:
331
333
  is ever uploaded anywhere. The file just sits there until you decide to share it or delete it.
332
334
  - **The saved report is scrubbed twice.** First a structural pass rewrites your home directory to
333
335
  `~` and your hostname to a placeholder (absolute paths are personal information a secret scanner
334
- would not catch). Then a best-effort secret scan runs the same gitleaks-based redaction nomad
335
- already uses for session transcripts. The secret scan works on a temporary, owner-only (`0o600`)
336
- copy that already has the structural scrub applied; that scratch file is deleted immediately after
337
- the scan, and only the fully-redacted report is kept.
338
- - **It degrades safely without gitleaks.** If gitleaks is not installed, the structural scrub still
339
- runs and the report is still written, with a one-line note that the secret scan did not run, so
340
- give it a glance before posting it publicly.
336
+ would not catch), and redacts credential-shaped tokens it recognizes (GitHub, GitLab, Slack, and
337
+ AWS keys, plus any credentials embedded in a URL); this pass needs no external tools. Then a
338
+ best-effort secret scan runs the same gitleaks-based redaction nomad already uses for session
339
+ transcripts. The secret scan works on a temporary, owner-only (`0o600`) copy that already has the
340
+ structural scrub applied; that scratch file is deleted immediately after the scan, and only the
341
+ fully-redacted report is kept.
342
+ - **It degrades safely without gitleaks.** If gitleaks is not installed, the structural scrub and
343
+ the credential-shape backstop still run and the report is still written, with a one-line note that
344
+ the deeper secret scan did not run. The backstop catches common token shapes but not everything,
345
+ so still give the report a glance before posting it publicly.
341
346
  - **It is small and bounded.** The report contains only the nomad version, the command you ran
342
347
  (bounded, and including any flag values you typed), the error name and message, a trimmed stack,
343
348
  your platform, the Node.js version, and a timestamp. It never includes an environment dump or the