@clawos-dev/clawd 0.2.189-beta.376.57d5363 → 0.2.189-beta.377.bb861eb
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/dist/cli.cjs +2 -3
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -41482,8 +41482,7 @@ function cloneState(s) {
|
|
|
41482
41482
|
pendingSend: s.pendingSend.slice()
|
|
41483
41483
|
};
|
|
41484
41484
|
}
|
|
41485
|
-
var IDLE_KILL_DELAY_MS =
|
|
41486
|
-
var IDLE_KILL_SUBAGENT_RECHECK_MS = 3e5;
|
|
41485
|
+
var IDLE_KILL_DELAY_MS = 6e5;
|
|
41487
41486
|
function tryFlushPending(state, deps) {
|
|
41488
41487
|
if (!state.readyForSend || state.pendingSend.length === 0) return [];
|
|
41489
41488
|
const text = state.pendingSend.shift();
|
|
@@ -42159,7 +42158,7 @@ function reduceSession(state, input, deps) {
|
|
|
42159
42158
|
{
|
|
42160
42159
|
kind: "schedule-idle-kill",
|
|
42161
42160
|
sessionId: state.file.sessionId,
|
|
42162
|
-
ms:
|
|
42161
|
+
ms: IDLE_KILL_DELAY_MS
|
|
42163
42162
|
}
|
|
42164
42163
|
]
|
|
42165
42164
|
};
|
package/package.json
CHANGED