@clawos-dev/clawd 0.2.177-beta.355.6443d50 → 0.2.177-beta.356.d98d67b

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 -2
  2. package/package.json +1 -1
package/dist/cli.cjs CHANGED
@@ -55660,10 +55660,10 @@ function buildAppBuilderHandlers(deps) {
55660
55660
  }
55661
55661
 
55662
55662
  // src/handlers/shift.ts
55663
- function daemonShiftToUiShift(d, nowMs) {
55663
+ function daemonShiftToUiShift(d, _nowMs) {
55664
55664
  if (d.schedule.kind === "at") {
55665
55665
  const atMs = Date.parse(d.schedule.at);
55666
- if (Number.isNaN(atMs) || atMs <= nowMs) return null;
55666
+ if (Number.isNaN(atMs)) return null;
55667
55667
  }
55668
55668
  const noteParts = [d.name];
55669
55669
  if (d.prompt && d.prompt.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawos-dev/clawd",
3
- "version": "0.2.177-beta.355.6443d50",
3
+ "version": "0.2.177-beta.356.d98d67b",
4
4
  "description": "Standalone clawd daemon — Claude Code (and future Codex) session server over WebSocket",
5
5
  "type": "module",
6
6
  "license": "MIT",