@clawos-dev/clawd 0.2.180 → 0.2.181-beta.362.4cc1db7
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 +6 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -55737,11 +55737,16 @@ function daemonShiftToUiShift(d, _nowMs) {
|
|
|
55737
55737
|
}
|
|
55738
55738
|
if (!d.enabled) noteParts.push("(disabled)");
|
|
55739
55739
|
const note = noteParts.join(" \u2014 ");
|
|
55740
|
+
const runs = d.runs.map((r) => ({
|
|
55741
|
+
startedAtMs: r.startedAtMs,
|
|
55742
|
+
...r.sessionId ? { sessionId: r.sessionId } : {}
|
|
55743
|
+
}));
|
|
55740
55744
|
return {
|
|
55741
55745
|
id: d.id,
|
|
55742
55746
|
agentId: d.targetPersona,
|
|
55743
55747
|
schedule: d.schedule,
|
|
55744
|
-
note
|
|
55748
|
+
note,
|
|
55749
|
+
...runs.length > 0 ? { runs } : {}
|
|
55745
55750
|
};
|
|
55746
55751
|
}
|
|
55747
55752
|
function buildShiftHandlers(deps) {
|
package/package.json
CHANGED