@clawos-dev/clawd 0.2.12-beta.10.686d33a → 0.2.12-beta.11.e5ef950
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 +1 -8
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -18047,14 +18047,7 @@ async function startDaemon(config) {
|
|
|
18047
18047
|
onEvent: ({ sessionId, events }) => {
|
|
18048
18048
|
manager.feedObserverEvents(sessionId, events);
|
|
18049
18049
|
},
|
|
18050
|
-
|
|
18051
|
-
// daemon 自管 cc 时 reducer 自己会推权威的 'running' / 'stopped',observer 再叠一层 'observing' 会
|
|
18052
|
-
// 在 cc 已 turn_end 后偶现 spinner 卡住(procAlive 判断把 'observing' 当成活动)
|
|
18053
|
-
onStatus: (sessionId, status) => {
|
|
18054
|
-
const r = manager.getActive(sessionId);
|
|
18055
|
-
if (r && r.getState().procAlive) return;
|
|
18056
|
-
transport?.broadcastToSession(sessionId, { type: "session:status", sessionId, status });
|
|
18057
|
-
},
|
|
18050
|
+
onStatus: (sessionId, status) => transport?.broadcastToSession(sessionId, { type: "session:status", sessionId, status }),
|
|
18058
18051
|
// jsonl user 行的 real uuid 映射到 buffer 里 synth user_text,rewind 系列 RPC 在
|
|
18059
18052
|
// daemon 内部转译,UI 看到的始终是 events 流里的 synth uuid(详见 manager 注释)
|
|
18060
18053
|
onUserMessageObserved: (sessionId, realUuid, text) => {
|
package/package.json
CHANGED