git-worktree-manager 0.0.28

CLI tool integrating git worktree with AI coding assistants
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
# Changelog

## [0.0.28]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.27...v0.0.28 (2026-04-12)


### Features

* acquire session lockfile when entering gw shell ([24da17e]https://github.com/DaveDev42/git-worktree-manager/commit/24da17e2fbe15d93e982b3cd1b98f72f3e4466ef)
* acquire session lockfile when launching AI tools ([a0a2a34]https://github.com/DaveDev42/git-worktree-manager/commit/a0a2a34074f8a5aa9049fb46e21249bda179a5a3)
* add busy detection with lockfile + process cwd scan ([102435d]https://github.com/DaveDev42/git-worktree-manager/commit/102435dc4334c868f6f38b09ac07026b04bf1abd)
* add busy status to worktree state with highest non-stale priority ([ae18947]https://github.com/DaveDev42/git-worktree-manager/commit/ae189470d1d74a5cc22ab1e1eeac9da96411dda8)
* add session lockfile with RAII guard and PID liveness check ([2fc68aa]https://github.com/DaveDev42/git-worktree-manager/commit/2fc68aa83f922afc7beea205e4ead609e2e6b35f)
* **clean:** skip busy worktrees and report summary, --force to override ([1fc20ee]https://github.com/DaveDev42/git-worktree-manager/commit/1fc20ee3fcabb7aef910ee4831b75e098a3f373e)
* **delete:** block busy worktree deletion with TTY-aware prompt ([9d33e08]https://github.com/DaveDev42/git-worktree-manager/commit/9d33e08a46a62cbbd918487d2e4dc238c40b51fa)
* **display,tests:** show busy in tree/stats UI; robust busy integration tests ([a9b69b0]https://github.com/DaveDev42/git-worktree-manager/commit/a9b69b099acef86aee0d064901f34121ce09c1e0)
* hybrid worktree busy detection for delete/clean ([1abcb24]https://github.com/DaveDev42/git-worktree-manager/commit/1abcb245dc7f3620c42c63d315c09ecc12bc7bb6)


### Bug Fixes

* **busy-detection:** address review pass 2 issues ([4e2e9bb]https://github.com/DaveDev42/git-worktree-manager/commit/4e2e9bb7b171db132e66aa67c7384cc6941e14a6)
* **busy:** local Command import in scan_cwd test so Linux compiles ([feb3472]https://github.com/DaveDev42/git-worktree-manager/commit/feb347278a2bf5cbae0d7cd2cc52c89067f2c217)
* **busy:** narrow Command import to macos; Linux uses /proc ([4687770]https://github.com/DaveDev42/git-worktree-manager/commit/4687770a43dbea42a5605d2fe2d8306674100d75)
* **busy:** verify cwd is inside target on macOS lsof parse ([cfe0346]https://github.com/DaveDev42/git-worktree-manager/commit/cfe03464e7cebff5c7d89a63cdbd33cb47483351)
* critical busy-detection bugs found during smoke testing ([6fe35d8]https://github.com/DaveDev42/git-worktree-manager/commit/6fe35d83703ee981f4383ddec29c6800c7b19c0f)
* **delete:** use explicit --force as busy override, not default git-force flag ([02a8a4e]https://github.com/DaveDev42/git-worktree-manager/commit/02a8a4ecadc459fc6af70d9c1d31e0d7074232eb)
* **lockfile:** cfg-gate STALE_TTL so unix build does not warn ([44469dd]https://github.com/DaveDev42/git-worktree-manager/commit/44469ddc74eef095d35f0264c72de194fbbb0fea)
* **lockfile:** post-rename ownership check, thiserror, tmp cleanup sweep, version field ([41d1ef9]https://github.com/DaveDev42/git-worktree-manager/commit/41d1ef99036bca39aea4dbebded894e049b59002)

## [0.0.27]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.26...v0.0.27 (2026-04-08)


### Bug Fixes

* auto-update Homebrew formula on release ([517eefa]https://github.com/DaveDev42/git-worktree-manager/commit/517eefac6081e57780767a8c0add520e66dc79db)
* auto-update Homebrew formula on release ([b40b091]https://github.com/DaveDev42/git-worktree-manager/commit/b40b09117bf4d6fdde8938951b8dd83a1bfceaa5)

## [0.0.26]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.25...v0.0.26 (2026-04-06)


### Bug Fixes

* add --fail to version check curl and validate curl in PATH ([b062de8]https://github.com/DaveDev42/git-worktree-manager/commit/b062de8ff4a95e77c88263349df9b8e300a51da5)
* add curl PATH check to fetch_latest_version for consistency ([88c50a6]https://github.com/DaveDev42/git-worktree-manager/commit/88c50a6672057c4b61627bef3d7fcb6a7837ccd4)
* improve curl error message and add User-Agent to version check ([6b1bd42]https://github.com/DaveDev42/git-worktree-manager/commit/6b1bd425366fdf0f506188220440f1538147ff1a)
* suppress curl progress bar in non-terminal environments ([be49d15]https://github.com/DaveDev42/git-worktree-manager/commit/be49d152b0f94e56ba8aa48c4f959b5f7ff4466f)

## [0.0.25]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.24...v0.0.25 (2026-04-06)


### Bug Fixes

* extract testable pure function and add unit tests for tab lookup ([a9f9335]https://github.com/DaveDev42/git-worktree-manager/commit/a9f93358a03aa70f34576038dc7278e798b38b70)
* restore focus to active tab instead of calling tab in w-t-b launcher ([3354dc1]https://github.com/DaveDev42/git-worktree-manager/commit/3354dc1dc291e154996a7986b9ec6aa935d2daea)
* restore focus to active tab instead of calling tab in w-t-b launcher ([f785abd]https://github.com/DaveDev42/git-worktree-manager/commit/f785abd5c7b87e477058f70def166288878cccb6)

## [0.0.24]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.23...v0.0.24 (2026-04-05)


### Features

* add get_pr_state helper to query GitHub PR status via gh CLI ([d217d5f]https://github.com/DaveDev42/git-worktree-manager/commit/d217d5febbf0b5357b7adb8d9ddfe728838c3fd3)
* add icon and color mappings for merged and pr-open worktree statuses ([c917728]https://github.com/DaveDev42/git-worktree-manager/commit/c91772897ed5ac324e51a6e8287a8c97b018035a)
* add merged and pr-open worktree statuses ([3096081]https://github.com/DaveDev42/git-worktree-manager/commit/3096081667e46d52e3a39029d00fa05aaee911c2)
* add WezTerm background tab (w-t-b) + fix iTerm AppleScript ([dd69f47]https://github.com/DaveDev42/git-worktree-manager/commit/dd69f47fac6db0ba768c64a7992244a415aa3f4a)
* add WezTerm background tab launch method (w-t-b) ([cac993c]https://github.com/DaveDev42/git-worktree-manager/commit/cac993ce8af789d1825995782b4de4896223b0d8)
* integrate merged and pr-open statuses into worktree display ([ccd518e]https://github.com/DaveDev42/git-worktree-manager/commit/ccd518e15cb24d7b75fc8c3b999956de112ffff9)


### Bug Fixes

* **tests:** isolate custom_path test in dedicated TempDir ([99d329f]https://github.com/DaveDev42/git-worktree-manager/commit/99d329f0cdda74b227317570f2c28efb9e03ca7b)
* **tests:** isolate setup_remote in dedicated TempDir to prevent path collisions ([7c1e088]https://github.com/DaveDev42/git-worktree-manager/commit/7c1e088f615d3d8b4f89dcb7db025a8433a4dce8)
* **tests:** isolate test helpers and re-enable ignored tests ([183c828]https://github.com/DaveDev42/git-worktree-manager/commit/183c828c097a2e4de0666462e53c9da1114d4a88)
* **tests:** only ignore delete-cwd test on Windows via cfg_attr ([87a7f4c]https://github.com/DaveDev42/git-worktree-manager/commit/87a7f4c6fcc0d36c69a51f6ed384936c1f6ec5f9)
* **tests:** un-ignore all remote worktree tests ([6f71c54]https://github.com/DaveDev42/git-worktree-manager/commit/6f71c547baefb791fce26f460269ce324d8b8517)
* use >= in clean --older-than so 0 matches all worktrees ([a8cd381]https://github.com/DaveDev42/git-worktree-manager/commit/a8cd381a03b078771876c947ee1a09698a1b33a8)
* use >= in clean --older-than so 0 matches all worktrees ([d9417d3]https://github.com/DaveDev42/git-worktree-manager/commit/d9417d3ea0d60fd378000d32def9d76bc623a2b4)
* use cyan instead of blue for pr-open status in stats bar ([d11b81d]https://github.com/DaveDev42/git-worktree-manager/commit/d11b81dfc11ae23b485085c894bbc79cd0d13d7b)

## [0.0.23]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.22...v0.0.23 (2026-04-05)


### Bug Fixes

* create draft releases until binaries are uploaded ([319829c]https://github.com/DaveDev42/git-worktree-manager/commit/319829cdcd51f9a73b4e6718e850bcaab385c537)
* create GitHub releases as draft until binaries are uploaded ([4b5cb45]https://github.com/DaveDev42/git-worktree-manager/commit/4b5cb4589c8f72e990fdc55d46ecdd5cc970c800)

## [0.0.22]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.21...v0.0.22 (2026-04-05)


### Features

* rename gw-delegate skill to gw with natural language support ([30f2012]https://github.com/DaveDev42/git-worktree-manager/commit/30f20122c226c6fd7264fc4e7a86efb2eb46346c)
* rename gw-delegate skill to gw with natural language support ([dfe1fcb]https://github.com/DaveDev42/git-worktree-manager/commit/dfe1fcb0ba43cfa01726813a466040104c585595)
* suggest .claude/settings.local.json in .cwshare setup ([1e742ba]https://github.com/DaveDev42/git-worktree-manager/commit/1e742ba5cf643daf4e8f634c3f27b71b720dff9f)
* suggest .claude/settings.local.json in .cwshare setup ([4594ef6]https://github.com/DaveDev42/git-worktree-manager/commit/4594ef6ccaeaf0bf819686d3d53f24d24482cea7)

## [0.0.21]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.20...v0.0.21 (2026-04-04)


### Bug Fixes

* upgrade companion binary from downloaded file, not installed one ([620d8f0]https://github.com/DaveDev42/git-worktree-manager/commit/620d8f0223f3869f90c16597ff4c0bc7bf8578a4)
* upgrade companion binary from downloaded file, not installed one ([7f28260]https://github.com/DaveDev42/git-worktree-manager/commit/7f28260d5273896c83d977ed83ef5639402e7cf7)

## [0.0.20]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.19...v0.0.20 (2026-04-04)


### Bug Fixes

* companion binary overwritten with old version during upgrade ([c6d4334]https://github.com/DaveDev42/git-worktree-manager/commit/c6d43341c1e1ae16f7bec10783c56d81578601d2)
* companion binary overwritten with old version during upgrade ([505f4d9]https://github.com/DaveDev42/git-worktree-manager/commit/505f4d9dc3c38662ea3df2b038ee09fc4aebebfd)

## [0.0.19]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.18...v0.0.19 (2026-04-04)


### Features

* add Claude Code skill for worktree task delegation ([52f0d06]https://github.com/DaveDev42/git-worktree-manager/commit/52f0d06d24fb258780c1c7e1549cfacda50cdf94)
* add Claude Code skill for worktree task delegation ([478619b]https://github.com/DaveDev42/git-worktree-manager/commit/478619bf4d95389f473feaed594a3a8ef407ae5a)
* add dynamic branch name tab completion for all subcommands ([b2d895c]https://github.com/DaveDev42/git-worktree-manager/commit/b2d895cd3c9cf91e40a98d271964b73bc567dc39)
* add SHA256 checksums to release artifacts ([d70336e]https://github.com/DaveDev42/git-worktree-manager/commit/d70336ef9aada8ec58e0c66f53ed873342306bea)
* auto-detect repository default branch ([2e4321c]https://github.com/DaveDev42/git-worktree-manager/commit/2e4321c62c5d4a1274eece01b901c599fcf16a8b)
* auto-upgrade via self-replace from GitHub Releases ([48b948e]https://github.com/DaveDev42/git-worktree-manager/commit/48b948e7a61ebb2826f7006ea19ee5f47b2beb76)
* centralize messages and add format_age tests ([b675c83]https://github.com/DaveDev42/git-worktree-manager/commit/b675c83e085dabfc2548c669d7856c18714870d6)
* code quality — extract helpers, split doctor, shell completion prompt ([faa6eba]https://github.com/DaveDev42/git-worktree-manager/commit/faa6ebad0c4984a24bda9bf8ed79055c4a4f17df)
* code quality refactoring, shell completion parity, CI improvements ([e00938c]https://github.com/DaveDev42/git-worktree-manager/commit/e00938cadad1d214c71c0580769dc1ac7a206293)
* Complete feature parity — all missing commands and options ([908b81c]https://github.com/DaveDev42/git-worktree-manager/commit/908b81c461db3195d3f9d2db949a5d4251c1d169)
* Complete Python feature parity — all 15 items implemented ([e4d86ba]https://github.com/DaveDev42/git-worktree-manager/commit/e4d86babb8b58017db342f3145fe1d06a5eac57b)
* config list table, config key tab completion, cw bash completion ([8ad734f]https://github.com/DaveDev42/git-worktree-manager/commit/8ad734f14dd736d693532f1c47b42a98fcf3f2c2)
* expand skill with full gw reference and references/ support ([aa1a9c1]https://github.com/DaveDev42/git-worktree-manager/commit/aa1a9c123b89b5f3000af3ddaba0434bab2a4b39)
* improve tab completion for all option values ([c5bb0d0]https://github.com/DaveDev42/git-worktree-manager/commit/c5bb0d08ed1e66b0d54d1086ed9731cf286c2194)
* improve tab completion for all option values ([08dc42a]https://github.com/DaveDev42/git-worktree-manager/commit/08dc42a8dafdc1e527a2fb466067f6f59785c527)
* Phase 1 — project scaffolding with core infrastructure ([8bdeb88]https://github.com/DaveDev42/git-worktree-manager/commit/8bdeb887aba1b69c6627ed4d67a9a1e927142eb6)
* Phase 2 — core commands (new, delete, merge, pr, sync, config) ([c310fe6]https://github.com/DaveDev42/git-worktree-manager/commit/c310fe65fc0c8bc198fa4a06f2740517d9021369)
* Phase 3 — terminal launchers and AI tool integration ([5e9d07b]https://github.com/DaveDev42/git-worktree-manager/commit/5e9d07bb3120732bc00d4d78f457f025237db59f)
* Phase 4 — shell functions, auto-update, and upgrade ([e99b7c7]https://github.com/DaveDev42/git-worktree-manager/commit/e99b7c7aeb2424fdf4b58964e06553c00593a817)
* Phase 5 — backup, diagnostics, CI/CD, and polish ([983bdc3]https://github.com/DaveDev42/git-worktree-manager/commit/983bdc37ed8a73fef02bc61ffac76ea8ef637bd7)
* Python parity improvements — CLI flags, config fallback, colored hooks ([a3c8ee2]https://github.com/DaveDev42/git-worktree-manager/commit/a3c8ee2021bd7102a1db8ba8e4f35c875e611726)
* QA improvements — config get, delete --force, hook aliases, backup filtering ([b8a7cc0]https://github.com/DaveDev42/git-worktree-manager/commit/b8a7cc048b4593f935646d21245cccd1cd09dc67)
* refresh shell cache on gw shell-setup ([eebde54]https://github.com/DaveDev42/git-worktree-manager/commit/eebde549cb89446451aa261fe29d0ad45680c504)
* register gw/cw tab completion in shell functions ([1eab90d]https://github.com/DaveDev42/git-worktree-manager/commit/1eab90d615edb5d5803a4fcc854968f1b7bcd740)
* Rename to git-worktree-manager (gw) ([3c061f1]https://github.com/DaveDev42/git-worktree-manager/commit/3c061f1d426eda942664f770ef81fa1a0e4d0aaa)
* rich TUI output, duration parsing, hook error formatting ([7047b87]https://github.com/DaveDev42/git-worktree-manager/commit/7047b873c1175315156613b61d9ff42da27b9c9b)
* show launch method display names in config show/list ([b0f552f]https://github.com/DaveDev42/git-worktree-manager/commit/b0f552f9ed35a93ae2658fb77ea23f6183b97cdb)
* smart config set for ai_tool and launch.method ([79f2102]https://github.com/DaveDev42/git-worktree-manager/commit/79f21026a5a742fe92c739543848e03b5a2c63e7)
* use self_update crate for upgrade, detect Homebrew installs ([eb6aff4]https://github.com/DaveDev42/git-worktree-manager/commit/eb6aff48025f55d03a78213ac861cfe2924cc824)


### Bug Fixes

* Add cw-cd backward compatibility alias ([#9]https://github.com/DaveDev42/git-worktree-manager/issues/9) ([f2a1361]https://github.com/DaveDev42/git-worktree-manager/commit/f2a13615848dc8883e1cad56351b4e337ab30b13)
* bump MSRV to 1.85, fix rustfmt formatting ([e59ff8e]https://github.com/DaveDev42/git-worktree-manager/commit/e59ff8ec11f28d88175f4b5867d09377c21a13eb)
* check GITHUB_TOKEN/GH_TOKEN env before spawning gh CLI ([e62c3f7]https://github.com/DaveDev42/git-worktree-manager/commit/e62c3f78d87bce74fe7e55f9d756514fd092b9be)
* disable native-tls in self_update to fix cross-compilation ([cf359f5]https://github.com/DaveDev42/git-worktree-manager/commit/cf359f5cf7220775b398f557f9ce72d27e500b5d)
* disable zip default-features to fix MSRV 1.85 and remove time vulnerability ([78ffb28]https://github.com/DaveDev42/git-worktree-manager/commit/78ffb283c609c566d2d50d71adb101ce1db261de)
* pin time and base64ct for MSRV 1.85 compatibility ([edf490d]https://github.com/DaveDev42/git-worktree-manager/commit/edf490dbbe8e4e72addb949b79e64234de786c21)
* prevent env var race condition and config leakage in launch method tests ([378c4eb]https://github.com/DaveDev42/git-worktree-manager/commit/378c4ebd5435d118b4f7b3471b81fc0a49b86fdf)
* prevent env var race condition in launch method tests ([cf0e62f]https://github.com/DaveDev42/git-worktree-manager/commit/cf0e62fef81c03f50dd8f5986f89b095db63de9c)
* remove invalid [warnings] section from audit.toml ([67433d3]https://github.com/DaveDev42/git-worktree-manager/commit/67433d316de723256e3fc503cf3516a6dd93d91c)
* replace self_update with reqwest[rustls-native-roots] for enterprise MDM TLS support ([cb12a30]https://github.com/DaveDev42/git-worktree-manager/commit/cb12a30aff4315857460e577572e0a8fcc2dbd81)
* restore audit.toml ignores for zip→time and indicatif→number_prefix ([ec6ceed]https://github.com/DaveDev42/git-worktree-manager/commit/ec6ceedf0c71d5e8644af8cc1a10ebd1cbedc39a)
* revert version to 0.0.1 so Release Please creates v0.0.2 ([addd37f]https://github.com/DaveDev42/git-worktree-manager/commit/addd37f57d33d8bab48fe5583411dfdc2df1aa96)
* skip Unix-only tests on Windows ([79ce973]https://github.com/DaveDev42/git-worktree-manager/commit/79ce973f96902d9351ebea05d3edbfb6d6bda24a)
* use gh auth token for GitHub API to avoid rate limits ([ef4e498]https://github.com/DaveDev42/git-worktree-manager/commit/ef4e4987b185ea79b1df14a281f16f2d7fd3da35)
* Windows CI — UNC path comparison + cargo fmt for tests ([2a3495e]https://github.com/DaveDev42/git-worktree-manager/commit/2a3495e350623bc0c6070beaeea903bf5effae7b)


### Performance Improvements

* zero-latency startup update check with background refresh ([cb6550d]https://github.com/DaveDev42/git-worktree-manager/commit/cb6550d296bb9beebb5ffa58674629c0efbb108b)

## [0.0.18]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.17...v0.0.18 (2026-04-04)


### Features

* improve tab completion for all option values ([c5bb0d0]https://github.com/DaveDev42/git-worktree-manager/commit/c5bb0d08ed1e66b0d54d1086ed9731cf286c2194)
* improve tab completion for all option values ([08dc42a]https://github.com/DaveDev42/git-worktree-manager/commit/08dc42a8dafdc1e527a2fb466067f6f59785c527)

## [0.0.17]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.16...v0.0.17 (2026-04-02)


### Features

* add Claude Code skill for worktree task delegation ([52f0d06]https://github.com/DaveDev42/git-worktree-manager/commit/52f0d06d24fb258780c1c7e1549cfacda50cdf94)
* add Claude Code skill for worktree task delegation ([478619b]https://github.com/DaveDev42/git-worktree-manager/commit/478619bf4d95389f473feaed594a3a8ef407ae5a)
* expand skill with full gw reference and references/ support ([aa1a9c1]https://github.com/DaveDev42/git-worktree-manager/commit/aa1a9c123b89b5f3000af3ddaba0434bab2a4b39)

## [0.0.16]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.15...v0.0.16 (2026-04-02)


### Bug Fixes

* prevent env var race condition and config leakage in launch method tests ([378c4eb]https://github.com/DaveDev42/git-worktree-manager/commit/378c4ebd5435d118b4f7b3471b81fc0a49b86fdf)
* prevent env var race condition in launch method tests ([cf0e62f]https://github.com/DaveDev42/git-worktree-manager/commit/cf0e62fef81c03f50dd8f5986f89b095db63de9c)

## [0.0.15]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.14...v0.0.15 (2026-04-02)


### Features

* add dynamic branch name tab completion for all subcommands ([b2d895c]https://github.com/DaveDev42/git-worktree-manager/commit/b2d895cd3c9cf91e40a98d271964b73bc567dc39)
* add SHA256 checksums to release artifacts ([d70336e]https://github.com/DaveDev42/git-worktree-manager/commit/d70336ef9aada8ec58e0c66f53ed873342306bea)
* auto-detect repository default branch ([2e4321c]https://github.com/DaveDev42/git-worktree-manager/commit/2e4321c62c5d4a1274eece01b901c599fcf16a8b)
* auto-upgrade via self-replace from GitHub Releases ([48b948e]https://github.com/DaveDev42/git-worktree-manager/commit/48b948e7a61ebb2826f7006ea19ee5f47b2beb76)
* centralize messages and add format_age tests ([b675c83]https://github.com/DaveDev42/git-worktree-manager/commit/b675c83e085dabfc2548c669d7856c18714870d6)
* code quality — extract helpers, split doctor, shell completion prompt ([faa6eba]https://github.com/DaveDev42/git-worktree-manager/commit/faa6ebad0c4984a24bda9bf8ed79055c4a4f17df)
* code quality refactoring, shell completion parity, CI improvements ([e00938c]https://github.com/DaveDev42/git-worktree-manager/commit/e00938cadad1d214c71c0580769dc1ac7a206293)
* Complete feature parity — all missing commands and options ([908b81c]https://github.com/DaveDev42/git-worktree-manager/commit/908b81c461db3195d3f9d2db949a5d4251c1d169)
* Complete Python feature parity — all 15 items implemented ([e4d86ba]https://github.com/DaveDev42/git-worktree-manager/commit/e4d86babb8b58017db342f3145fe1d06a5eac57b)
* config list table, config key tab completion, cw bash completion ([8ad734f]https://github.com/DaveDev42/git-worktree-manager/commit/8ad734f14dd736d693532f1c47b42a98fcf3f2c2)
* Phase 1 — project scaffolding with core infrastructure ([8bdeb88]https://github.com/DaveDev42/git-worktree-manager/commit/8bdeb887aba1b69c6627ed4d67a9a1e927142eb6)
* Phase 2 — core commands (new, delete, merge, pr, sync, config) ([c310fe6]https://github.com/DaveDev42/git-worktree-manager/commit/c310fe65fc0c8bc198fa4a06f2740517d9021369)
* Phase 3 — terminal launchers and AI tool integration ([5e9d07b]https://github.com/DaveDev42/git-worktree-manager/commit/5e9d07bb3120732bc00d4d78f457f025237db59f)
* Phase 4 — shell functions, auto-update, and upgrade ([e99b7c7]https://github.com/DaveDev42/git-worktree-manager/commit/e99b7c7aeb2424fdf4b58964e06553c00593a817)
* Phase 5 — backup, diagnostics, CI/CD, and polish ([983bdc3]https://github.com/DaveDev42/git-worktree-manager/commit/983bdc37ed8a73fef02bc61ffac76ea8ef637bd7)
* Python parity improvements — CLI flags, config fallback, colored hooks ([a3c8ee2]https://github.com/DaveDev42/git-worktree-manager/commit/a3c8ee2021bd7102a1db8ba8e4f35c875e611726)
* QA improvements — config get, delete --force, hook aliases, backup filtering ([b8a7cc0]https://github.com/DaveDev42/git-worktree-manager/commit/b8a7cc048b4593f935646d21245cccd1cd09dc67)
* refresh shell cache on gw shell-setup ([eebde54]https://github.com/DaveDev42/git-worktree-manager/commit/eebde549cb89446451aa261fe29d0ad45680c504)
* register gw/cw tab completion in shell functions ([1eab90d]https://github.com/DaveDev42/git-worktree-manager/commit/1eab90d615edb5d5803a4fcc854968f1b7bcd740)
* Rename to git-worktree-manager (gw) ([3c061f1]https://github.com/DaveDev42/git-worktree-manager/commit/3c061f1d426eda942664f770ef81fa1a0e4d0aaa)
* rich TUI output, duration parsing, hook error formatting ([7047b87]https://github.com/DaveDev42/git-worktree-manager/commit/7047b873c1175315156613b61d9ff42da27b9c9b)
* show launch method display names in config show/list ([b0f552f]https://github.com/DaveDev42/git-worktree-manager/commit/b0f552f9ed35a93ae2658fb77ea23f6183b97cdb)
* smart config set for ai_tool and launch.method ([79f2102]https://github.com/DaveDev42/git-worktree-manager/commit/79f21026a5a742fe92c739543848e03b5a2c63e7)
* use self_update crate for upgrade, detect Homebrew installs ([eb6aff4]https://github.com/DaveDev42/git-worktree-manager/commit/eb6aff48025f55d03a78213ac861cfe2924cc824)


### Bug Fixes

* Add cw-cd backward compatibility alias ([#9]https://github.com/DaveDev42/git-worktree-manager/issues/9) ([f2a1361]https://github.com/DaveDev42/git-worktree-manager/commit/f2a13615848dc8883e1cad56351b4e337ab30b13)
* bump MSRV to 1.85, fix rustfmt formatting ([e59ff8e]https://github.com/DaveDev42/git-worktree-manager/commit/e59ff8ec11f28d88175f4b5867d09377c21a13eb)
* check GITHUB_TOKEN/GH_TOKEN env before spawning gh CLI ([e62c3f7]https://github.com/DaveDev42/git-worktree-manager/commit/e62c3f78d87bce74fe7e55f9d756514fd092b9be)
* disable native-tls in self_update to fix cross-compilation ([cf359f5]https://github.com/DaveDev42/git-worktree-manager/commit/cf359f5cf7220775b398f557f9ce72d27e500b5d)
* disable zip default-features to fix MSRV 1.85 and remove time vulnerability ([78ffb28]https://github.com/DaveDev42/git-worktree-manager/commit/78ffb283c609c566d2d50d71adb101ce1db261de)
* pin time and base64ct for MSRV 1.85 compatibility ([edf490d]https://github.com/DaveDev42/git-worktree-manager/commit/edf490dbbe8e4e72addb949b79e64234de786c21)
* remove invalid [warnings] section from audit.toml ([67433d3]https://github.com/DaveDev42/git-worktree-manager/commit/67433d316de723256e3fc503cf3516a6dd93d91c)
* replace self_update with reqwest[rustls-native-roots] for enterprise MDM TLS support ([cb12a30]https://github.com/DaveDev42/git-worktree-manager/commit/cb12a30aff4315857460e577572e0a8fcc2dbd81)
* restore audit.toml ignores for zip→time and indicatif→number_prefix ([ec6ceed]https://github.com/DaveDev42/git-worktree-manager/commit/ec6ceedf0c71d5e8644af8cc1a10ebd1cbedc39a)
* revert version to 0.0.1 so Release Please creates v0.0.2 ([addd37f]https://github.com/DaveDev42/git-worktree-manager/commit/addd37f57d33d8bab48fe5583411dfdc2df1aa96)
* skip Unix-only tests on Windows ([79ce973]https://github.com/DaveDev42/git-worktree-manager/commit/79ce973f96902d9351ebea05d3edbfb6d6bda24a)
* use gh auth token for GitHub API to avoid rate limits ([ef4e498]https://github.com/DaveDev42/git-worktree-manager/commit/ef4e4987b185ea79b1df14a281f16f2d7fd3da35)
* Windows CI — UNC path comparison + cargo fmt for tests ([2a3495e]https://github.com/DaveDev42/git-worktree-manager/commit/2a3495e350623bc0c6070beaeea903bf5effae7b)


### Performance Improvements

* zero-latency startup update check with background refresh ([cb6550d]https://github.com/DaveDev42/git-worktree-manager/commit/cb6550d296bb9beebb5ffa58674629c0efbb108b)

## [0.0.14]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.13...v0.0.14 (2026-04-02)


### Features

* add dynamic branch name tab completion for all subcommands ([b2d895c]https://github.com/DaveDev42/git-worktree-manager/commit/b2d895cd3c9cf91e40a98d271964b73bc567dc39)

## [0.0.13]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.12...v0.0.13 (2026-03-25)


### Bug Fixes

* disable zip default-features to fix MSRV 1.85 and remove time vulnerability ([78ffb28]https://github.com/DaveDev42/git-worktree-manager/commit/78ffb283c609c566d2d50d71adb101ce1db261de)
* remove invalid [warnings] section from audit.toml ([67433d3]https://github.com/DaveDev42/git-worktree-manager/commit/67433d316de723256e3fc503cf3516a6dd93d91c)
* replace self_update with reqwest[rustls-native-roots] for enterprise MDM TLS support ([cb12a30]https://github.com/DaveDev42/git-worktree-manager/commit/cb12a30aff4315857460e577572e0a8fcc2dbd81)
* restore audit.toml ignores for zip→time and indicatif→number_prefix ([ec6ceed]https://github.com/DaveDev42/git-worktree-manager/commit/ec6ceedf0c71d5e8644af8cc1a10ebd1cbedc39a)

## [0.0.12]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.11...v0.0.12 (2026-03-24)


### Bug Fixes

* check GITHUB_TOKEN/GH_TOKEN env before spawning gh CLI ([e62c3f7]https://github.com/DaveDev42/git-worktree-manager/commit/e62c3f78d87bce74fe7e55f9d756514fd092b9be)
* use gh auth token for GitHub API to avoid rate limits ([ef4e498]https://github.com/DaveDev42/git-worktree-manager/commit/ef4e4987b185ea79b1df14a281f16f2d7fd3da35)


### Performance Improvements

* zero-latency startup update check with background refresh ([cb6550d]https://github.com/DaveDev42/git-worktree-manager/commit/cb6550d296bb9beebb5ffa58674629c0efbb108b)

## [0.0.11]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.10...v0.0.11 (2026-03-24)


### Features

* auto-detect repository default branch ([2e4321c]https://github.com/DaveDev42/git-worktree-manager/commit/2e4321c62c5d4a1274eece01b901c599fcf16a8b)
* config list table, config key tab completion, cw bash completion ([8ad734f]https://github.com/DaveDev42/git-worktree-manager/commit/8ad734f14dd736d693532f1c47b42a98fcf3f2c2)
* show launch method display names in config show/list ([b0f552f]https://github.com/DaveDev42/git-worktree-manager/commit/b0f552f9ed35a93ae2658fb77ea23f6183b97cdb)
* smart config set for ai_tool and launch.method ([79f2102]https://github.com/DaveDev42/git-worktree-manager/commit/79f21026a5a742fe92c739543848e03b5a2c63e7)

## [0.0.10]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.9...v0.0.10 (2026-03-23)


### Features

* QA improvements — config get, delete --force, hook aliases, backup filtering ([b8a7cc0]https://github.com/DaveDev42/git-worktree-manager/commit/b8a7cc048b4593f935646d21245cccd1cd09dc67)
* rich TUI output, duration parsing, hook error formatting ([7047b87]https://github.com/DaveDev42/git-worktree-manager/commit/7047b873c1175315156613b61d9ff42da27b9c9b)

## [0.0.9]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.8...v0.0.9 (2026-03-23)


### Features

* add SHA256 checksums to release artifacts ([d70336e]https://github.com/DaveDev42/git-worktree-manager/commit/d70336ef9aada8ec58e0c66f53ed873342306bea)
* auto-upgrade via self-replace from GitHub Releases ([48b948e]https://github.com/DaveDev42/git-worktree-manager/commit/48b948e7a61ebb2826f7006ea19ee5f47b2beb76)
* centralize messages and add format_age tests ([b675c83]https://github.com/DaveDev42/git-worktree-manager/commit/b675c83e085dabfc2548c669d7856c18714870d6)
* code quality — extract helpers, split doctor, shell completion prompt ([faa6eba]https://github.com/DaveDev42/git-worktree-manager/commit/faa6ebad0c4984a24bda9bf8ed79055c4a4f17df)
* code quality refactoring, shell completion parity, CI improvements ([e00938c]https://github.com/DaveDev42/git-worktree-manager/commit/e00938cadad1d214c71c0580769dc1ac7a206293)
* Complete feature parity — all missing commands and options ([908b81c]https://github.com/DaveDev42/git-worktree-manager/commit/908b81c461db3195d3f9d2db949a5d4251c1d169)
* Complete Python feature parity — all 15 items implemented ([e4d86ba]https://github.com/DaveDev42/git-worktree-manager/commit/e4d86babb8b58017db342f3145fe1d06a5eac57b)
* Phase 1 — project scaffolding with core infrastructure ([8bdeb88]https://github.com/DaveDev42/git-worktree-manager/commit/8bdeb887aba1b69c6627ed4d67a9a1e927142eb6)
* Phase 2 — core commands (new, delete, merge, pr, sync, config) ([c310fe6]https://github.com/DaveDev42/git-worktree-manager/commit/c310fe65fc0c8bc198fa4a06f2740517d9021369)
* Phase 3 — terminal launchers and AI tool integration ([5e9d07b]https://github.com/DaveDev42/git-worktree-manager/commit/5e9d07bb3120732bc00d4d78f457f025237db59f)
* Phase 4 — shell functions, auto-update, and upgrade ([e99b7c7]https://github.com/DaveDev42/git-worktree-manager/commit/e99b7c7aeb2424fdf4b58964e06553c00593a817)
* Phase 5 — backup, diagnostics, CI/CD, and polish ([983bdc3]https://github.com/DaveDev42/git-worktree-manager/commit/983bdc37ed8a73fef02bc61ffac76ea8ef637bd7)
* Python parity improvements — CLI flags, config fallback, colored hooks ([a3c8ee2]https://github.com/DaveDev42/git-worktree-manager/commit/a3c8ee2021bd7102a1db8ba8e4f35c875e611726)
* refresh shell cache on gw shell-setup ([eebde54]https://github.com/DaveDev42/git-worktree-manager/commit/eebde549cb89446451aa261fe29d0ad45680c504)
* register gw/cw tab completion in shell functions ([1eab90d]https://github.com/DaveDev42/git-worktree-manager/commit/1eab90d615edb5d5803a4fcc854968f1b7bcd740)
* Rename to git-worktree-manager (gw) ([3c061f1]https://github.com/DaveDev42/git-worktree-manager/commit/3c061f1d426eda942664f770ef81fa1a0e4d0aaa)
* use self_update crate for upgrade, detect Homebrew installs ([eb6aff4]https://github.com/DaveDev42/git-worktree-manager/commit/eb6aff48025f55d03a78213ac861cfe2924cc824)


### Bug Fixes

* Add cw-cd backward compatibility alias ([#9]https://github.com/DaveDev42/git-worktree-manager/issues/9) ([f2a1361]https://github.com/DaveDev42/git-worktree-manager/commit/f2a13615848dc8883e1cad56351b4e337ab30b13)
* bump MSRV to 1.85, fix rustfmt formatting ([e59ff8e]https://github.com/DaveDev42/git-worktree-manager/commit/e59ff8ec11f28d88175f4b5867d09377c21a13eb)
* disable native-tls in self_update to fix cross-compilation ([cf359f5]https://github.com/DaveDev42/git-worktree-manager/commit/cf359f5cf7220775b398f557f9ce72d27e500b5d)
* pin time and base64ct for MSRV 1.85 compatibility ([edf490d]https://github.com/DaveDev42/git-worktree-manager/commit/edf490dbbe8e4e72addb949b79e64234de786c21)
* revert version to 0.0.1 so Release Please creates v0.0.2 ([addd37f]https://github.com/DaveDev42/git-worktree-manager/commit/addd37f57d33d8bab48fe5583411dfdc2df1aa96)
* skip Unix-only tests on Windows ([79ce973]https://github.com/DaveDev42/git-worktree-manager/commit/79ce973f96902d9351ebea05d3edbfb6d6bda24a)
* Windows CI — UNC path comparison + cargo fmt for tests ([2a3495e]https://github.com/DaveDev42/git-worktree-manager/commit/2a3495e350623bc0c6070beaeea903bf5effae7b)

## [0.0.8]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.7...v0.0.8 (2026-03-23)


### Features

* add SHA256 checksums to release artifacts ([d70336e]https://github.com/DaveDev42/git-worktree-manager/commit/d70336ef9aada8ec58e0c66f53ed873342306bea)

## [0.0.7]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.6...v0.0.7 (2026-03-22)


### Features

* refresh shell cache on gw shell-setup ([eebde54]https://github.com/DaveDev42/git-worktree-manager/commit/eebde549cb89446451aa261fe29d0ad45680c504)

## [0.0.6]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.5...v0.0.6 (2026-03-22)


### Features

* register gw/cw tab completion in shell functions ([1eab90d]https://github.com/DaveDev42/git-worktree-manager/commit/1eab90d615edb5d5803a4fcc854968f1b7bcd740)

## [0.0.5]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.4...v0.0.5 (2026-03-22)


### Bug Fixes

* bump MSRV to 1.85, fix rustfmt formatting ([e59ff8e]https://github.com/DaveDev42/git-worktree-manager/commit/e59ff8ec11f28d88175f4b5867d09377c21a13eb)
* pin time and base64ct for MSRV 1.85 compatibility ([edf490d]https://github.com/DaveDev42/git-worktree-manager/commit/edf490dbbe8e4e72addb949b79e64234de786c21)
* skip Unix-only tests on Windows ([79ce973]https://github.com/DaveDev42/git-worktree-manager/commit/79ce973f96902d9351ebea05d3edbfb6d6bda24a)

## [0.0.4]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.3...v0.0.4 (2026-03-22)


### Features

* auto-upgrade via self-replace from GitHub Releases ([48b948e]https://github.com/DaveDev42/git-worktree-manager/commit/48b948e7a61ebb2826f7006ea19ee5f47b2beb76)
* centralize messages and add format_age tests ([b675c83]https://github.com/DaveDev42/git-worktree-manager/commit/b675c83e085dabfc2548c669d7856c18714870d6)
* code quality — extract helpers, split doctor, shell completion prompt ([faa6eba]https://github.com/DaveDev42/git-worktree-manager/commit/faa6ebad0c4984a24bda9bf8ed79055c4a4f17df)
* code quality refactoring, shell completion parity, CI improvements ([e00938c]https://github.com/DaveDev42/git-worktree-manager/commit/e00938cadad1d214c71c0580769dc1ac7a206293)
* Complete feature parity — all missing commands and options ([908b81c]https://github.com/DaveDev42/git-worktree-manager/commit/908b81c461db3195d3f9d2db949a5d4251c1d169)
* Complete Python feature parity — all 15 items implemented ([e4d86ba]https://github.com/DaveDev42/git-worktree-manager/commit/e4d86babb8b58017db342f3145fe1d06a5eac57b)
* Phase 1 — project scaffolding with core infrastructure ([8bdeb88]https://github.com/DaveDev42/git-worktree-manager/commit/8bdeb887aba1b69c6627ed4d67a9a1e927142eb6)
* Phase 2 — core commands (new, delete, merge, pr, sync, config) ([c310fe6]https://github.com/DaveDev42/git-worktree-manager/commit/c310fe65fc0c8bc198fa4a06f2740517d9021369)
* Phase 3 — terminal launchers and AI tool integration ([5e9d07b]https://github.com/DaveDev42/git-worktree-manager/commit/5e9d07bb3120732bc00d4d78f457f025237db59f)
* Phase 4 — shell functions, auto-update, and upgrade ([e99b7c7]https://github.com/DaveDev42/git-worktree-manager/commit/e99b7c7aeb2424fdf4b58964e06553c00593a817)
* Phase 5 — backup, diagnostics, CI/CD, and polish ([983bdc3]https://github.com/DaveDev42/git-worktree-manager/commit/983bdc37ed8a73fef02bc61ffac76ea8ef637bd7)
* Python parity improvements — CLI flags, config fallback, colored hooks ([a3c8ee2]https://github.com/DaveDev42/git-worktree-manager/commit/a3c8ee2021bd7102a1db8ba8e4f35c875e611726)
* Rename to git-worktree-manager (gw) ([3c061f1]https://github.com/DaveDev42/git-worktree-manager/commit/3c061f1d426eda942664f770ef81fa1a0e4d0aaa)
* use self_update crate for upgrade, detect Homebrew installs ([eb6aff4]https://github.com/DaveDev42/git-worktree-manager/commit/eb6aff48025f55d03a78213ac861cfe2924cc824)


### Bug Fixes

* Add cw-cd backward compatibility alias ([#9]https://github.com/DaveDev42/git-worktree-manager/issues/9) ([f2a1361]https://github.com/DaveDev42/git-worktree-manager/commit/f2a13615848dc8883e1cad56351b4e337ab30b13)
* disable native-tls in self_update to fix cross-compilation ([cf359f5]https://github.com/DaveDev42/git-worktree-manager/commit/cf359f5cf7220775b398f557f9ce72d27e500b5d)
* revert version to 0.0.1 so Release Please creates v0.0.2 ([addd37f]https://github.com/DaveDev42/git-worktree-manager/commit/addd37f57d33d8bab48fe5583411dfdc2df1aa96)
* Windows CI — UNC path comparison + cargo fmt for tests ([2a3495e]https://github.com/DaveDev42/git-worktree-manager/commit/2a3495e350623bc0c6070beaeea903bf5effae7b)

## [0.0.4]https://github.com/DaveDev42/git-worktree-manager/compare/v0.0.3...v0.0.4 (2026-03-22)


### Features

* auto-upgrade via self-replace from GitHub Releases ([48b948e]https://github.com/DaveDev42/git-worktree-manager/commit/48b948e7a61ebb2826f7006ea19ee5f47b2beb76)
* centralize messages and add format_age tests ([b675c83]https://github.com/DaveDev42/git-worktree-manager/commit/b675c83e085dabfc2548c669d7856c18714870d6)
* code quality — extract helpers, split doctor, shell completion prompt ([faa6eba]https://github.com/DaveDev42/git-worktree-manager/commit/faa6ebad0c4984a24bda9bf8ed79055c4a4f17df)
* code quality refactoring, shell completion parity, CI improvements ([e00938c]https://github.com/DaveDev42/git-worktree-manager/commit/e00938cadad1d214c71c0580769dc1ac7a206293)
* Complete feature parity — all missing commands and options ([908b81c]https://github.com/DaveDev42/git-worktree-manager/commit/908b81c461db3195d3f9d2db949a5d4251c1d169)
* Complete Python feature parity — all 15 items implemented ([e4d86ba]https://github.com/DaveDev42/git-worktree-manager/commit/e4d86babb8b58017db342f3145fe1d06a5eac57b)
* Phase 1 — project scaffolding with core infrastructure ([8bdeb88]https://github.com/DaveDev42/git-worktree-manager/commit/8bdeb887aba1b69c6627ed4d67a9a1e927142eb6)
* Phase 2 — core commands (new, delete, merge, pr, sync, config) ([c310fe6]https://github.com/DaveDev42/git-worktree-manager/commit/c310fe65fc0c8bc198fa4a06f2740517d9021369)
* Phase 3 — terminal launchers and AI tool integration ([5e9d07b]https://github.com/DaveDev42/git-worktree-manager/commit/5e9d07bb3120732bc00d4d78f457f025237db59f)
* Phase 4 — shell functions, auto-update, and upgrade ([e99b7c7]https://github.com/DaveDev42/git-worktree-manager/commit/e99b7c7aeb2424fdf4b58964e06553c00593a817)
* Phase 5 — backup, diagnostics, CI/CD, and polish ([983bdc3]https://github.com/DaveDev42/git-worktree-manager/commit/983bdc37ed8a73fef02bc61ffac76ea8ef637bd7)
* Python parity improvements — CLI flags, config fallback, colored hooks ([a3c8ee2]https://github.com/DaveDev42/git-worktree-manager/commit/a3c8ee2021bd7102a1db8ba8e4f35c875e611726)
* Rename to git-worktree-manager (gw) ([3c061f1]https://github.com/DaveDev42/git-worktree-manager/commit/3c061f1d426eda942664f770ef81fa1a0e4d0aaa)
* use self_update crate for upgrade, detect Homebrew installs ([eb6aff4]https://github.com/DaveDev42/git-worktree-manager/commit/eb6aff48025f55d03a78213ac861cfe2924cc824)


### Bug Fixes

* Add cw-cd backward compatibility alias ([#9]https://github.com/DaveDev42/git-worktree-manager/issues/9) ([f2a1361]https://github.com/DaveDev42/git-worktree-manager/commit/f2a13615848dc8883e1cad56351b4e337ab30b13)
* revert version to 0.0.1 so Release Please creates v0.0.2 ([addd37f]https://github.com/DaveDev42/git-worktree-manager/commit/addd37f57d33d8bab48fe5583411dfdc2df1aa96)
* Windows CI — UNC path comparison + cargo fmt for tests ([2a3495e]https://github.com/DaveDev42/git-worktree-manager/commit/2a3495e350623bc0c6070beaeea903bf5effae7b)

## [0.0.3]https://github.com/DaveDev42/git-worktree-manager/compare/git-worktree-manager-v0.0.2...git-worktree-manager-v0.0.3 (2026-03-22)


### Features

* auto-upgrade via self-replace from GitHub Releases ([48b948e]https://github.com/DaveDev42/git-worktree-manager/commit/48b948e7a61ebb2826f7006ea19ee5f47b2beb76)

## [0.0.2]https://github.com/DaveDev42/git-worktree-manager/compare/git-worktree-manager-v0.0.1...git-worktree-manager-v0.0.2 (2026-03-22)


### Features

* centralize messages and add format_age tests ([b675c83]https://github.com/DaveDev42/git-worktree-manager/commit/b675c83e085dabfc2548c669d7856c18714870d6)
* code quality — extract helpers, split doctor, shell completion prompt ([faa6eba]https://github.com/DaveDev42/git-worktree-manager/commit/faa6ebad0c4984a24bda9bf8ed79055c4a4f17df)
* code quality refactoring, shell completion parity, CI improvements ([e00938c]https://github.com/DaveDev42/git-worktree-manager/commit/e00938cadad1d214c71c0580769dc1ac7a206293)
* Complete feature parity — all missing commands and options ([908b81c]https://github.com/DaveDev42/git-worktree-manager/commit/908b81c461db3195d3f9d2db949a5d4251c1d169)
* Complete Python feature parity — all 15 items implemented ([e4d86ba]https://github.com/DaveDev42/git-worktree-manager/commit/e4d86babb8b58017db342f3145fe1d06a5eac57b)
* Phase 1 — project scaffolding with core infrastructure ([8bdeb88]https://github.com/DaveDev42/git-worktree-manager/commit/8bdeb887aba1b69c6627ed4d67a9a1e927142eb6)
* Phase 2 — core commands (new, delete, merge, pr, sync, config) ([c310fe6]https://github.com/DaveDev42/git-worktree-manager/commit/c310fe65fc0c8bc198fa4a06f2740517d9021369)
* Phase 3 — terminal launchers and AI tool integration ([5e9d07b]https://github.com/DaveDev42/git-worktree-manager/commit/5e9d07bb3120732bc00d4d78f457f025237db59f)
* Phase 4 — shell functions, auto-update, and upgrade ([e99b7c7]https://github.com/DaveDev42/git-worktree-manager/commit/e99b7c7aeb2424fdf4b58964e06553c00593a817)
* Phase 5 — backup, diagnostics, CI/CD, and polish ([983bdc3]https://github.com/DaveDev42/git-worktree-manager/commit/983bdc37ed8a73fef02bc61ffac76ea8ef637bd7)
* Python parity improvements — CLI flags, config fallback, colored hooks ([a3c8ee2]https://github.com/DaveDev42/git-worktree-manager/commit/a3c8ee2021bd7102a1db8ba8e4f35c875e611726)
* Rename to git-worktree-manager (gw) ([3c061f1]https://github.com/DaveDev42/git-worktree-manager/commit/3c061f1d426eda942664f770ef81fa1a0e4d0aaa)


### Bug Fixes

* Add cw-cd backward compatibility alias ([#9]https://github.com/DaveDev42/git-worktree-manager/issues/9) ([f2a1361]https://github.com/DaveDev42/git-worktree-manager/commit/f2a13615848dc8883e1cad56351b4e337ab30b13)
* revert version to 0.0.1 so Release Please creates v0.0.2 ([addd37f]https://github.com/DaveDev42/git-worktree-manager/commit/addd37f57d33d8bab48fe5583411dfdc2df1aa96)
* Windows CI — UNC path comparison + cargo fmt for tests ([2a3495e]https://github.com/DaveDev42/git-worktree-manager/commit/2a3495e350623bc0c6070beaeea903bf5effae7b)