agileflow 2.89.1 → 2.89.2

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,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.89.2] - 2026-01-14
11
+
12
+ ### Fixed
13
+ - Increase precompact preservation window to 10 minutes
14
+
10
15
  ## [2.89.1] - 2026-01-14
11
16
 
12
17
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agileflow",
3
- "version": "2.89.1",
3
+ "version": "2.89.2",
4
4
  "description": "AI-driven agile development system for Claude Code, Cursor, Windsurf, and more",
5
5
  "keywords": [
6
6
  "agile",
@@ -298,7 +298,7 @@ function clearActiveCommands(rootDir, cache = null) {
298
298
  const now = Date.now();
299
299
  const secondsSincePrecompact = (now - precompactTime) / 1000;
300
300
 
301
- if (secondsSincePrecompact < 30) {
301
+ if (secondsSincePrecompact < 600) { // 10 minutes - compacts can take a while with background tasks
302
302
  // This is a post-compact session start - preserve active commands
303
303
  result.preserved = true;
304
304
  // Capture command names for display (but don't clear)