worktrunk 0.35.2

A CLI for Git worktree management, designed for parallel AI agent workflows
Documentation
$ wt switch hooks
○ Switched to worktree for hooks @ <DEMO_DIR>/.demo-wt-commit/w/acme.hooks

$ git diff --staged --stat
 src/lib.rs        |  1 +
 src/validation.rs | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

$ wt step commit
◎ Generating commit message and committing changes... (2 files, +25)
  feat(validation): add input validation utilities
  
  Add validation module with is_positive and is_non_empty helpers
  for validating user input. Includes comprehensive test coverage.
✓ Committed changes @ 08d6aa2

$ git log -1
commit 08d6aa281ae15980b1dc485df79834735f9afaeb
Author: Worktrunk Demo <demo@example.com>
Date:   Tue Jan 27 19:36:26 2026 -0800

    feat(validation): add input validation utilities
    
    Add validation module with is_positive and is_non_empty helpers
    for validating user input. Includes comprehensive test coverage.