@agentconnect.md/cli 1.18.0-rc.18 → 1.18.0-rc.19
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/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7896,8 +7896,12 @@ const MemoryDreamingPolicy = object({
|
|
|
7896
7896
|
enabled: boolean(),
|
|
7897
7897
|
/** How many recent sessions to mine (default 20). */
|
|
7898
7898
|
sessionWindow: number().int().min(1).max(100).optional(),
|
|
7899
|
-
/** Cron expression for scheduled dreams (same syntax as agent crons).
|
|
7899
|
+
/** Cron expression for scheduled dreams (same syntax as agent crons). A tick
|
|
7900
|
+
* that lands while a dream is already in flight is skipped, not queued. */
|
|
7900
7901
|
schedule: string().min(1).max(128).optional(),
|
|
7902
|
+
/** IANA zone the `schedule` is evaluated in (as on agent crons). Absent ⇒ the
|
|
7903
|
+
* daemon host's local time. */
|
|
7904
|
+
timezone: string().min(1).max(64).optional(),
|
|
7901
7905
|
/** Operator steering text applied through the whole dream pipeline. */
|
|
7902
7906
|
instructions: string().max(4096).optional(),
|
|
7903
7907
|
/** Also mine reusable procedures into candidate skills (never auto-installed). */
|