build-review round 1: add durable time refresh scheduling

This commit is contained in:
Hypatia May
2026-07-17 10:12:27 +08:00
parent c5381de8b2
commit 760dd8f5de
8 changed files with 230 additions and 77 deletions
+3 -1
View File
@@ -870,10 +870,12 @@ Source: [`packages/core/system-prompt/src/index.ts:143`](../packages/core/system
Requires: `agents`
```ts config-catalog
/** Request-time clock formatting. Invalid values fail plugin load. */
/** Request-preparation clock formatting and append scheduling. Invalid values fail plugin load. */
export interface Config {
/** IANA time zone used for the rendered timestamp. Omit to resolve the Node process's system zone at plugin load. */
timeZone?: string
/** Minimum milliseconds between durable injections in one session. Omit or set to 0 to inject on every eligible pre-step attempt. */
refreshIntervalMs?: number
}
```