@clawos-dev/clawd 0.2.192-beta.387.d592538 → 0.2.192

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
@@ -247,6 +247,7 @@ var init_events = __esm({
247
247
  SESSION_STATUS_VALUES = [
248
248
  "idle",
249
249
  "running",
250
+ "running-idle",
250
251
  "stopped",
251
252
  "error",
252
253
  "observing"
@@ -42792,10 +42793,11 @@ function compressFrameForWire(frame) {
42792
42793
  switch (status) {
42793
42794
  case "spawning":
42794
42795
  case "running":
42795
- // sub-session(persona)专属内部状态:进程仍活着等 idle-kill;wire 协议看到的是 'running'
42796
- case "running-idle":
42797
42796
  compressed = "running";
42798
42797
  break;
42798
+ case "running-idle":
42799
+ compressed = "running-idle";
42800
+ break;
42799
42801
  case "stopping":
42800
42802
  case "stopped":
42801
42803
  compressed = "stopped";
@@ -42820,8 +42822,9 @@ function compressStatus(status) {
42820
42822
  switch (status) {
42821
42823
  case "spawning":
42822
42824
  case "running":
42823
- case "running-idle":
42824
42825
  return "running";
42826
+ case "running-idle":
42827
+ return "running-idle";
42825
42828
  case "stopping":
42826
42829
  case "stopped":
42827
42830
  return "stopped";