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