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 +5 -0
- package/package.json +1 -1
- package/scripts/agileflow-welcome.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -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 <
|
|
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)
|