claude-threads 0.60.0 → 0.62.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
@@ -7,6 +7,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.62.0] - 2026-01-11
11
+
12
+ ### Fixed
13
+ - **Worktree aggressive pruning** - Fix multiple bugs causing worktrees to be deleted shortly after creation (#194)
14
+ - `isBranchMerged()` no longer detects new branches as merged (main cause of immediate deletion)
15
+ - Only check for merged branches on worktrees older than 24 hours
16
+ - Added race condition protection for worktrees with session IDs
17
+ - Call `updateWorktreeActivity()` on session activity to prevent long-running sessions from having their worktrees pruned
18
+
19
+ ### Added
20
+ - **Unified command registry** - Single source of truth for all commands and reactions (#195)
21
+ - `src/commands/registry.ts` - Central command definitions with categories, audiences, and Claude execution permissions
22
+ - `src/commands/help-generator.ts` - Generates `!help` message from registry
23
+ - `src/commands/system-prompt-generator.ts` - Generates Claude's system prompt from registry
24
+ - `claudeCanExecute` and `returnsResultToClaude` flags to identify which commands Claude can use
25
+ - Help message and system prompt are now always in sync
26
+
27
+ ## [0.61.0] - 2026-01-11
28
+
29
+ ### Added
30
+ - **Configurable limits via config.yaml** - Session limits, timeouts, and cleanup intervals can now be configured in the `limits` section (#193)
31
+ - `maxSessions`, `sessionTimeoutMinutes`, `sessionWarningMinutes`
32
+ - `cleanupIntervalMinutes`, `maxWorktreeAgeHours`, `cleanupWorktrees`
33
+ - `permissionTimeoutSeconds` - now properly wired to MCP server (was broken)
34
+ - **Advanced settings wizard** - `--setup` now includes "Advanced settings" option with grouped questions (#193)
35
+ - Session Limits: max sessions, timeouts, permission timeout, keepAlive toggle
36
+ - Cleanup Settings: intervals, worktree cleanup, thread log settings
37
+ - Conditional questions skip irrelevant settings (e.g., worktree age when cleanup disabled)
38
+ - **keepAlive in advanced settings** - Prevent system sleep setting now configurable via wizard (#193)
39
+
40
+ ### Fixed
41
+ - **Permission timeout bug** - `permissionTimeoutSeconds` was in config but not passed to MCP server (#193)
42
+ - **Readable YAML config** - Config files now use proper block-style YAML instead of JSON-like flow style (#193)
43
+ - **Config summary shows advanced settings** - Preview before saving now displays non-default advanced settings (#193)
44
+ - **Aligned log output** - Shortened logger component names to prevent column misalignment (#192)
45
+ - `auto-update` → `updater`, `git-worktree` → `git-wt`, `post-helpers` → `post`, etc.
46
+
10
47
  ## [0.60.0] - 2026-01-11
11
48
 
12
49
  ### Added