daedalus-cli 1.32.1 → 1.32.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 +7 -0
- package/dist/agents/orchestrator.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.32.2](https://github.com/bgill55/daedalus/compare/v1.32.1...v1.32.2) (2026-06-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **orchestrator:** allow up to 4 consecutive read-only turns after file write before early exit ([3cc7f2b](https://github.com/bgill55/daedalus/commit/3cc7f2b010d8e9d1d0549362ab042263d6ec044e))
|
|
7
|
+
|
|
1
8
|
## [1.32.1](https://github.com/bgill55/daedalus/compare/v1.32.0...v1.32.1) (2026-06-27)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -1416,7 +1416,7 @@ export class Orchestrator {
|
|
|
1416
1416
|
else if (hasArtifacts && !hasArtifactTool) {
|
|
1417
1417
|
if (idleReadTurn === -1)
|
|
1418
1418
|
idleReadTurn = turns;
|
|
1419
|
-
else if (turns - idleReadTurn >=
|
|
1419
|
+
else if (turns - idleReadTurn >= 3) {
|
|
1420
1420
|
return 'Agent completed';
|
|
1421
1421
|
}
|
|
1422
1422
|
}
|