macroclaw 0.37.0 → 0.38.0
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/package.json
CHANGED
|
@@ -73,7 +73,7 @@ Two job types, discriminated by field:
|
|
|
73
73
|
|
|
74
74
|
| Field | Required | Description |
|
|
75
75
|
|-------|----------|-------------|
|
|
76
|
-
| `name` | yes | Short kebab-case identifier (e.g. `dentist-reminder`). Appears in the
|
|
76
|
+
| `name` | yes | Short kebab-case identifier (e.g. `dentist-reminder`). Appears in the `<schedule name="...">` element and event name when fired. |
|
|
77
77
|
| `cron` | for recurring | Standard cron expression (local time). See reference below. |
|
|
78
78
|
| `fireAt` | for one-time | ISO 8601 timestamp (e.g. `2026-03-15T08:00:00`). Can include a timezone offset (e.g. `2026-03-15T08:00:00+01:00`); without one, the time is interpreted in the configured timezone. |
|
|
79
79
|
| `prompt` | yes | The message sent to the agent when the event fires. Write it as a natural instruction. |
|
|
@@ -105,4 +105,4 @@ Common patterns:
|
|
|
105
105
|
- Changes are hot-reloaded — no restart needed
|
|
106
106
|
- File location: `<workspace>/data/schedule.json`
|
|
107
107
|
- One-shot events (`fireAt`) are cleaned up automatically after firing
|
|
108
|
-
- Missed one-shot events (e.g. service was down) are fired
|
|
108
|
+
- Missed one-shot events (e.g. service was down) are fired when the service restarts (up to 7 days late) with `missed-by` and `scheduled-at` attributes on the `<schedule>` element
|