@clawos-dev/clawd 0.2.223 → 0.2.224-beta.437.7f84075

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.
Files changed (2) hide show
  1. package/dist/cli.cjs +2 -3
  2. package/package.json +1 -1
package/dist/cli.cjs CHANGED
@@ -49794,9 +49794,8 @@ var SessionObserver = class {
49794
49794
 
49795
49795
  // src/observer/observer-status-broadcast.ts
49796
49796
  function shouldBroadcastObserverStatus(status, procAlive, hasRunner) {
49797
- if (status === "stopped" && procAlive) return false;
49798
- if (status === "observing" && hasRunner) return false;
49799
- return true;
49797
+ if (status === "observing") return false;
49798
+ return !procAlive && !hasRunner;
49800
49799
  }
49801
49800
 
49802
49801
  // src/tools/registry.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawos-dev/clawd",
3
- "version": "0.2.223",
3
+ "version": "0.2.224-beta.437.7f84075",
4
4
  "description": "Standalone clawd daemon — Claude Code (and future Codex) session server over WebSocket",
5
5
  "type": "module",
6
6
  "license": "MIT",