release: v0.2.0 — hands init, audit log + --dry-run, hands doctor#21
Merged
release: v0.2.0 — hands init, audit log + --dry-run, hands doctor#21
Conversation
Three new commands accumulated under [Unreleased] since v0.1.0 shipped to npm. All additive; no behavior change for existing v0.1.0 users. By deepdive's precedent (0.1.0 → 0.2.0 for substantial new feature surface), this is the right minor bump. - `hands init` (#20) — interactive first-run wizard. - `audit log + --dry-run` (#19) — JSONL audit of every SDK-mode tool invocation; `--dry-run` plans + emits tool calls without executing. - `hands doctor` (#18) — aggregated health report mirroring dario / deepdive / claude-bridge. Version bump fires `auto-release.yml` on merge: tag, GitHub release, inline `npm publish --access public --provenance`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
v0.2.0 release — bundles three new commands accumulated under
[Unreleased]since v0.1.0 shipped to npm. All additive; no behavior change for existing v0.1.0 users. By deepdive's precedent (0.1.0 → 0.2.0 for substantial new feature surface), this is the right minor bump.hands init(feat: hands init — interactive first-run setup #20) — interactive first-run wizard. Walks new users through auth (Claude Login vs API Key), optional whisper.cpp voice setup, and surfaces a dario routing tip whenANTHROPIC_BASE_URLisn't set in API-Key mode. Safe to re-run.audit log + --dry-run(feat: audit log + --dry-run (SDK mode) #19) — every SDK-mode tool invocation appends one JSONL line to~/.hands/audit.jsonl(10 MB rotation, two-file cap).hands run --dry-runplans + emits tool calls without executing — agent sees stubbed "success" so the loop completes; audit-logged withdryRun: true. SDK-mode only (Claude Login mode dispatches inside theclaudechild process; hands can't intercept).hands doctor(feat: hands doctor — aggregated health report #18) — aggregated health report mirroring dario / deepdive / claude-bridge. Probes env / config / platform tools / claude CLI / voice / dario reachability.--jsonfor scrapable output.What changed in this release PR
package.json— version bumped0.1.0→0.2.0.package-lock.json— re-synced (npm install --package-lock-only); 30 packages, 0 vulns, no functional changes.CHANGELOG.md—## [Unreleased]renamed to## [0.2.0] - 2026-04-25with a brief release-summary paragraph above the existing per-feature blocks; fresh empty## [Unreleased]left at the top.Test plan
npm install --package-lock-only— clean re-sync, no vulns.npm run build—tscclean.npm test— 36/36 pass.node dist/cli.js --help— reports v0.2.0 command surface (initlisted).node dist/cli.js --version— prints0.2.0.actionlint,analyze/ CodeQL,build) on this PR.auto-release.ymlfires, runs build + typecheck + test +--helpsmoke, createsv0.2.0tag + GitHub release with this CHANGELOG section, runsnpm publish --access public --provenance.npm install -g @askalf/hands@0.2.0thenhands --versionreports0.2.0andhands doctorruns end-to-end. Worth catching the bin-shim class of regression that bit dario#143 — same pattern applies to any new package we ship.