@clawos-dev/clawd 0.2.379 → 0.2.381
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
CHANGED
|
@@ -44840,6 +44840,14 @@ function pushEventToBufferInPlace(next, event, deps) {
|
|
|
44840
44840
|
}
|
|
44841
44841
|
if (next.freshSpawn) next.freshSpawn = false;
|
|
44842
44842
|
const effects = [emitSessionEvent(next.file.sessionId, withSeq)];
|
|
44843
|
+
if (!isTurnEnd && !isBackgroundEvent && withSeq.kind !== "meta-text" && next.status === "running-idle" && next.procAlive) {
|
|
44844
|
+
next.status = "running";
|
|
44845
|
+
effects.push({ kind: "cancel-idle-kill", sessionId: next.file.sessionId });
|
|
44846
|
+
effects.push({
|
|
44847
|
+
kind: "emit-frame",
|
|
44848
|
+
frame: { type: "session:status", sessionId: next.file.sessionId, status: "running" }
|
|
44849
|
+
});
|
|
44850
|
+
}
|
|
44843
44851
|
if (isTurnEnd) {
|
|
44844
44852
|
const te = withSeq;
|
|
44845
44853
|
const tool = next.file.tool ?? "claude";
|
|
@@ -61195,7 +61203,7 @@ function computeMethodAccess(args) {
|
|
|
61195
61203
|
}
|
|
61196
61204
|
|
|
61197
61205
|
// src/version.ts
|
|
61198
|
-
var version = "0.2.
|
|
61206
|
+
var version = "0.2.381".length > 0 ? "0.2.381" : "dev";
|
|
61199
61207
|
|
|
61200
61208
|
// src/cli-probe/probe.ts
|
|
61201
61209
|
var fs64 = __toESM(require("fs"), 1);
|