@agentconnect.md/cli 1.18.0-rc.15 → 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 +19 -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). */
|
|
@@ -9423,6 +9427,20 @@ const DreamInfo = object({
|
|
|
9423
9427
|
trigger: DreamTrigger,
|
|
9424
9428
|
sessionIds: array(string().min(1)).max(100),
|
|
9425
9429
|
snapshotDigest: string().min(1).max(128),
|
|
9430
|
+
/** The store's write counters when it was snapshotted, captured under the
|
|
9431
|
+
* memory-dir lock. Adoption compares them with the live counters to tell a
|
|
9432
|
+
* distill-only drift — which it may rebase over — from a tool/console write,
|
|
9433
|
+
* which must hard-fence to review. These come from the daemon's in-process
|
|
9434
|
+
* write ledger, NOT from the best-effort `.history` log, which can silently
|
|
9435
|
+
* drop an entry and so cannot authorize anything. */
|
|
9436
|
+
snapshotWrites: object({
|
|
9437
|
+
/** Opaque daemon-process/store generation. Counts are comparable only
|
|
9438
|
+
* within one generation — a restart resets them, which numeric
|
|
9439
|
+
* comparison alone cannot detect. */
|
|
9440
|
+
generation: string().min(1).max(64),
|
|
9441
|
+
total: number().int().nonnegative(),
|
|
9442
|
+
nonDistill: number().int().nonnegative()
|
|
9443
|
+
}).strict().optional(),
|
|
9426
9444
|
instructions: string().max(4096).optional(),
|
|
9427
9445
|
skills: array(DreamSkillInfo).max(16).optional(),
|
|
9428
9446
|
usage: object({
|