harn-stdlib 0.9.17

Embedded Harn standard library source catalog
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
import { agent_preset } from "std/agent/presets"
import { detector_spec_to_stall, unified_detectors_post_turn } from "std/agent/stall"
import { agent_session_totals } from "std/agent/state"

// std/agent/governors.harn
//
// Pace / budget GOVERNORS for `agent_loop`, generalized from burin-code's
// hand-rolled `lib/runtime/pace-governor.harn`. A governor is a VALUE you
// compose into the EXISTING `post_turn_callback` seam — it is NEVER a new hook
// on `agent_loop`. (Institutional constraint, harness-techniques-ledger:2633:
// do not reintroduce `context_callback` / `on_tool_call` / `on_tool_result`
// hook surfaces; steering rides the typed post-turn verdict + reminder path.)
//
// ONE governance vocabulary, shared with the stall/loop detectors in
// `std/agent/stall`, collapsed onto the three actions the live post-turn seam
// can actually take:
//
//   "proceed" — do nothing (burin `proceed` / `extend`: keep the run going).
//   "warn"    — inject a wrap-up reminder and continue (burin `pace_check`).
//   "abort"   — stop the run before overrun (burin `cut`).
//
// The verdict this produces is the ordinary `post_turn_callback` rich dict
// (`{message, stop, stop_reason}`) that `agent_compute_post_turn` already
// interprets: `message` is injected as feedback, `stop:true` breaks the loop.
//
// GENERALIZATION over burin: burin's pace governor is wall-clock + write
// progress with injection-count caps (PACE_CHECK_MAX_INJECTIONS=2,
// PACE_EXTEND_MAX=6). The post-turn seam cannot extend the loop's iteration
// budget and there is no per-session scratch store in the stdlib, so this is a
// STATELESS three-fraction generalization: the injection caps become a single
// `hard` consumption ceiling. It reads a monotone consumption signal
// (iterations / tokens / cost) against a budget ceiling, and the write-progress
// veto is preserved verbatim (progress vetoes the soft stop up to `hard`).
// This is deliberately NOT bit-for-bit parity with burin's stateful
// per-injection / per-extend counters — it is behavioral parity on the fractions
// at which the run slows and stops, with the counts collapsed into the
// thresholds. A host that needs the exact counters keeps them host-side.
// Burin pace-governor.harn parity constants, exposed for fixtures / callers.
// (In this stateless generalization they bound the DEFAULT `hard`/`over_estimate`
// fractions rather than an injection counter.)
const GOVERNOR_PACE_CHECK_MAX_INJECTIONS = 2

const GOVERNOR_PACE_EXTEND_MAX = 6

// Default consumption fractions (relative to the budget ceiling). `checkpoint`
// is burin's armed-budget boundary, `over_estimate` its expected-total+checkpoint
// boundary, `hard` the exhausted-extend cut.
const GOVERNOR_DEFAULT_CHECKPOINT = 1.0

const GOVERNOR_DEFAULT_OVER_ESTIMATE = 2.0

const GOVERNOR_DEFAULT_HARD = 3.0

/**
 * governor_pace_check_max_injections / governor_pace_extend_max expose burin's
 * pace-governor caps as parity accessors (mirroring burin's `pace_extend_max()`
 * accessor discipline). In this stateless generalization they are advisory — the
 * caps collapse into the `hard` consumption fraction — but callers building a
 * burin-faithful policy can reference them instead of hardcoding 2 / 6.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn governor_pace_check_max_injections() -> int {
  return GOVERNOR_PACE_CHECK_MAX_INJECTIONS
}

/**
 * See governor_pace_check_max_injections.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn governor_pace_extend_max() -> int {
  return GOVERNOR_PACE_EXTEND_MAX
}

/**
 * A pace/budget governor policy. Thresholds are DATA rows, not code branches:
 *   - signal: which monotone consumption to watch — "iterations" (default,
 *     from the live payload), "tokens" or "cost" (from agent_session_totals).
 *   - budget: the ceiling in that signal's units (turns / tokens / USD).
 *   - checkpoint / over_estimate / hard: consumption FRACTIONS of `budget` at
 *     which the governor starts caring / warns while progressing / hard-stops.
 *   - progress_tools: optional allowlist of tool names that count as progress.
 *     When absent, ANY successful tool this turn counts as progress.
 *   - extend_max / pace_check_max: smart-timeout pace caps used only by
 *     `governor_pace_decision` (#burin-cutover seam 2) — the silent-extend and
 *     recalibration-check-in budgets; default to GOVERNOR_PACE_EXTEND_MAX /
 *     GOVERNOR_PACE_CHECK_MAX_INJECTIONS.
 */
pub type GovernorPolicy = {
  budget?: float,
  checkpoint?: float,
  hard?: float,
  over_estimate?: float,
  progress_tools?: list<string>,
  signal?: string,
  extend_max?: int,
  pace_check_max?: int,
}

fn __governor_abort(reason: string, signal: string, fraction: float) -> dict {
  return {action: "abort", fraction: fraction, reason: reason, signal: signal}
}

fn __governor_warn(reason: string, signal: string, fraction: float) -> dict {
  return {action: "warn", fraction: fraction, reason: reason, signal: signal}
}

fn __governor_proceed(reason: string, signal: string, fraction: float) -> dict {
  return {action: "proceed", fraction: fraction, reason: reason, signal: signal}
}

/**
 * governor_decision is the PURE pace/budget core (no I/O). It mirrors burin's
 * `pace_decision` structure, generalized over the consumption signal and
 * collapsed onto proceed/warn/abort:
 *
 *   fraction >= hard                      -> abort  "budget_hard_stop"
 *                                            (burin: extend/check budget exhausted -> cut)
 *   fraction >= checkpoint && !progress   -> abort  "no_progress_at_checkpoint"
 *                                            (burin: no progress at checkpoint -> cut)
 *   fraction >= over_estimate (progress)  -> warn   "over_estimate_while_progressing"
 *                                            (burin: over estimate while progressing -> pace_check)
 *   otherwise                             -> proceed
 *                                            (burin: below checkpoint, or progressing
 *                                             within estimate -> extend)
 *
 * `obs` is `{ceiling, consumed, made_progress, signal}`. Returns
 * `{action, fraction, reason, signal}`.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn governor_decision(policy: GovernorPolicy, obs: dict) -> dict {
  let signal = to_string(obs?.signal ?? policy.signal ?? "iterations")
  let ceiling = to_float(obs?.ceiling ?? 0.0)
  if ceiling <= 0.0 {
    return __governor_proceed("no_budget", signal, 0.0)
  }
  let consumed = to_float(obs?.consumed ?? 0.0)
  let fraction = consumed / ceiling
  let checkpoint = to_float(policy.checkpoint ?? GOVERNOR_DEFAULT_CHECKPOINT)
  let over_estimate = to_float(policy.over_estimate ?? GOVERNOR_DEFAULT_OVER_ESTIMATE)
  let hard = to_float(policy.hard ?? GOVERNOR_DEFAULT_HARD)
  let made_progress = obs?.made_progress ?? false
  if fraction >= hard {
    return __governor_abort("budget_hard_stop", signal, fraction)
  }
  if fraction >= checkpoint && !made_progress {
    return __governor_abort("no_progress_at_checkpoint", signal, fraction)
  }
  if fraction >= over_estimate {
    return __governor_warn("over_estimate_while_progressing", signal, fraction)
  }
  return __governor_proceed("within_budget", signal, fraction)
}

/** The checkpoint cadence in ms (one budget window). Defaults to the armed budget. */
fn __governor_pace_checkpoint_ms(obs: dict, armed: int) -> int {
  let raw = to_int(obs?.checkpoint_ms ?? 0) ?? 0
  if raw > 0 {
    return raw
  }
  return armed
}

/** The estimated total wall in ms. Defaults to the armed budget. */
fn __governor_pace_expected_total_ms(obs: dict, armed: int) -> int {
  let raw = to_int(obs?.expected_total_ms ?? 0) ?? 0
  if raw > 0 {
    return raw
  }
  return armed
}

/**
 * governor_pace_decision is the SMART-TIMEOUT pace governor (#burin-cutover seam
 * 2) — a PURE decision core ported verbatim from burin's
 * `lib/runtime/pace-governor.harn::pace_decision`. It replaces a blind static
 * wall-clock kill with progress-based *extend-inside-a-time-bound*: given a
 * snapshot of the run's pace signals it returns ONE of four actions. It does NO
 * I/O, reads no flags, touches no session store and calls no model — every input
 * is passed in, so the caller keeps the wiring (flag gate, epoch tracking, budget
 * arming, feedback injection, loop stop). This is the token-runaway pattern:
 * decision in harn, thin wall-deadline actuation stays host-side (harn's
 * agent_loop never owns the host's wall deadline).
 *
 * `policy` (a GovernorPolicy) carries only the bounded caps; both default to the
 * burin parity constants:
 *   - extend_max      (default GOVERNOR_PACE_EXTEND_MAX = 6): hard cap on silent
 *     extends so a slowly-progressing run cannot extend forever.
 *   - pace_check_max  (default GOVERNOR_PACE_CHECK_MAX_INJECTIONS = 2): bounded
 *     recalibration check-ins before the run is cut (mirrors the completion-gate
 *     max-vetoes discipline).
 *
 * `obs` (host facts — the caller assembles it from the clock + loop info +
 * session-stored counters):
 *   - armed_budget_ms   int  — the wall budget currently armed (ms). 0/absent =>
 *     not armed; the governor always `proceed`s (the OFF / no-budget no-op path).
 *   - elapsed_ms        int  — wall ms since the run started.
 *   - checkpoint_ms     int  — checkpoint cadence (one budget window). Defaults
 *     to armed_budget_ms so the first decision fires at the budget.
 *   - expected_total_ms int  — estimated total wall; the pace_check branch fires
 *     when we blow past it by >= 1 checkpoint while progressing. Defaults to
 *     armed_budget_ms.
 *   - made_progress     bool — a workspace write succeeded since the last
 *     checkpoint (the single progress signal).
 *   - verifier_signature_unchanged bool — a write landed but the verifier failure
 *     signature did not improve; a landed write whose verifier signature is
 *     unchanged is NOT progress (the edit_applied_but_wrong thrash). The stateful
 *     caller only ever sets it true under its arm, so absent/false is
 *     byte-identical to a run without the lever.
 *   - done              bool — the done-judge is satisfied; the governor adds
 *     zero delta (never extend/pace_check/cut a done run).
 *   - extends_used      int  — silent extends already granted this run.
 *   - pace_checks_used  int  — pace_check injections already spent.
 *   - env_blame_without_infra bool — typed classifier verdict supplied by the
 *     stateful caller (the pure governor never matches English phrases).
 *
 * Returns `{action, ...}`:
 *   {action: "proceed"}
 *   {action: "extend", new_budget_ms: int, reason}  (new_budget_ms = elapsed + checkpoint)
 *   {action: "pace_check", reason}
 *   {action: "cut", reason}
 * cut reasons: no_progress_at_checkpoint / no_verifier_progress /
 * env_blame_without_infra / extend_budget_exhausted / pace_check_budget_exhausted.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn governor_pace_decision(policy: GovernorPolicy, obs: dict) -> dict {
  let armed = to_int(obs?.armed_budget_ms ?? 0) ?? 0
  // No budget armed (flag OFF, or a live surface that did not arm one) => the
  // governor is inert. This is the byte-identical no-op the caller relies on.
  if armed <= 0 {
    return {action: "proceed"}
  }
  // A satisfied done-judge ends the run on the existing completion path. Zero
  // delta — never extend, pace_check, or cut a done run.
  if obs?.done ?? false {
    return {action: "proceed"}
  }
  let elapsed = to_int(obs?.elapsed_ms ?? 0) ?? 0
  let checkpoint = __governor_pace_checkpoint_ms(obs, armed)
  // Time-based outer gate: only decide once we have crossed the checkpoint. Below
  // it the run is inside budget and continues unchanged.
  if elapsed < checkpoint {
    return {action: "proceed"}
  }
  let made_progress = obs?.made_progress ?? false
  let env_blame_without_infra = obs?.env_blame_without_infra ?? false
  // NO PROGRESS, or env-blaming with no real infra marker => CUT.
  if !made_progress {
    return {action: "cut", reason: "no_progress_at_checkpoint"}
  }
  // A write landed, but the verifier failure signature did NOT improve since the
  // last checkpoint. Writes are not progress — only a verifier advance is.
  if obs?.verifier_signature_unchanged ?? false {
    return {action: "cut", reason: "no_verifier_progress"}
  }
  if env_blame_without_infra {
    return {action: "cut", reason: "env_blame_without_infra"}
  }
  // PROGRESS. Decide extend vs pace_check by whether we have blown past the
  // expected total by at least one checkpoint.
  let expected_total = __governor_pace_expected_total_ms(obs, armed)
  let over_estimate = elapsed >= expected_total + checkpoint
  let extends_used = to_int(obs?.extends_used ?? 0) ?? 0
  let pace_checks_used = to_int(obs?.pace_checks_used ?? 0) ?? 0
  let extend_max = to_int(policy.extend_max ?? GOVERNOR_PACE_EXTEND_MAX) ?? GOVERNOR_PACE_EXTEND_MAX
  let pace_check_max = to_int(policy.pace_check_max ?? GOVERNOR_PACE_CHECK_MAX_INJECTIONS)
    ?? GOVERNOR_PACE_CHECK_MAX_INJECTIONS
  if !over_estimate {
    // Within the estimate and progressing: silently extend the wall to the next
    // checkpoint, bounded by extend_max. No model interrupt, zero tokens.
    if extends_used >= extend_max {
      return {action: "cut", reason: "extend_budget_exhausted"}
    }
    return {action: "extend", new_budget_ms: elapsed + checkpoint, reason: "progress_within_estimate"}
  }
  // Progressing but past the estimate. Inject a bounded recalibration check-in;
  // once the pace_check budget is spent, cut.
  if pace_checks_used >= pace_check_max {
    return {action: "cut", reason: "pace_check_budget_exhausted"}
  }
  return {action: "pace_check", reason: "over_estimate_while_progressing"}
}

fn __any_in(values: list, allowlist: list) -> bool {
  for value in values {
    if contains(allowlist, value) {
      return true
    }
  }
  return false
}

/**
 * Read the live post-turn payload into a governor observation. For the
 * "iterations" signal this reads ONLY `payload.iteration` (the live
 * `agent_compute_post_turn` field), so it is pure. For "tokens"/"cost" it reads
 * the host-tracked cumulative via `agent_session_totals`.
 */
fn __governor_observe(policy: GovernorPolicy, payload: dict) -> dict {
  let signal = to_string(policy.signal ?? "iterations")
  let session_id = to_string(payload?.session_id ?? payload?.session?.id ?? "")
  let consumed = if signal == "tokens" {
    to_float(agent_session_totals(session_id)?.tokens_used ?? 0)
  } else if signal == "cost" {
    to_float(agent_session_totals(session_id)?.cost_usd ?? 0.0)
  } else {
    to_float((to_int(payload?.iteration ?? 0) ?? 0) + 1)
  }
  let progress_tools = policy.progress_tools
  let successful = payload?.successful_tool_names ?? []
  let made_progress = if progress_tools == nil {
    len(successful) > 0
  } else {
    __any_in(successful, progress_tools)
  }
  return {
    ceiling: to_float(policy.budget ?? 0.0),
    consumed: consumed,
    made_progress: made_progress,
    signal: signal,
  }
}

// The payload keys the governor depends on from the live agent_compute_post_turn
// shape. If any is ever renamed or dropped the governor cannot compute its
// consumption signal, so it aborts LOUDLY with a distinct reason rather than
// silently defaulting to 0 and never firing (the dead-since-inception class).
const GOVERNOR_REQUIRED_PAYLOAD_KEYS = ["iteration", "session_id", "successful_tool_names"]

fn __governor_shape_ok(payload) -> bool {
  let present = keys(payload)
  for key in GOVERNOR_REQUIRED_PAYLOAD_KEYS {
    if !contains(present, key) {
      return false
    }
  }
  return true
}

fn __governor_verdict(decision: dict) {
  let signal = to_string(decision?.signal ?? "budget")
  let fraction = to_string(decision?.fraction ?? 0.0)
  if decision.action == "abort" {
    return {
      message: "Budget governor: stopping this run (" + to_string(decision?.reason ?? "")
        + "). The "
        + signal
        + " budget is spent ("
        + fraction
        + "x). Do not start new work; if a step is unfinished, report it as the blocker.",
      stop: true,
      stop_reason: "budget_governor:" + to_string(decision?.reason ?? "budget"),
    }
  }
  if decision.action == "warn" {
    return {
      message: "Budget governor: you are past the expected " + signal + " budget (" + fraction
        + "x) and still working. Prioritize FINISHING now — narrow to the single essential remaining step and wrap up.",
    }
  }
  return nil
}

/**
 * governor_post_turn(policy) returns a `post_turn_callback` closure that reads
 * the live per-turn payload, evaluates the pace/budget policy, and returns a
 * steering verdict (warn message / stop) through the existing seam.
 *
 * Live-shape / registration guard (harness-techniques-ledger #3381): before
 * evaluating, it asserts the payload carries the keys it depends on
 * (`GOVERNOR_REQUIRED_PAYLOAD_KEYS`). If `agent_compute_post_turn`'s payload
 * shape ever drifts (a renamed/dropped `session_id` / `iteration` /
 * `successful_tool_names`) the governor aborts with the distinct
 * `payload_shape_drift` stop reason, so the conformance baseline goes red
 * instead of the governor silently defaulting to 0 and never firing.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn governor_post_turn(policy: GovernorPolicy) {
  return { payload ->
    if !__governor_shape_ok(payload) {
      {
        message: "Budget governor: DISABLED — the live post-turn payload is missing one of "
          + join(GOVERNOR_REQUIRED_PAYLOAD_KEYS, ", ")
          + ". Stopping rather than running an unmetered budget.",
        stop: true,
        stop_reason: "budget_governor:payload_shape_drift",
      }
    } else {
      __governor_verdict(governor_decision(policy, __governor_observe(policy, payload)))
    }
  }
}

fn __normalize_verdict(verdict) -> dict {
  if verdict == nil || verdict == "" {
    return {message: "", stop: false}
  }
  if type_of(verdict) == "bool" {
    return {message: "", stop: verdict}
  }
  if type_of(verdict) == "string" {
    return {message: verdict, stop: false}
  }
  if type_of(verdict) == "dict" {
    return {
      llm_options: verdict?.llm_options,
      message: to_string(verdict?.message ?? ""),
      next_options: verdict?.next_options,
      prefill: verdict?.prefill,
      stop: verdict?.stop ?? false,
      stop_reason: verdict?.stop_reason,
    }
  }
  return {message: "", stop: false}
}

/**
 * compose_post_turn(callbacks) chains several `post_turn_callback` closures into
 * ONE, so a caller can run their own callback alongside a governor / detector
 * overlay without a new option. The FIRST callback that requests a stop wins
 * (its `stop_reason` / `next_options` / `llm_options` are preserved) and any
 * warn messages accumulated before it are prepended; otherwise all non-empty
 * warn messages are merged. Returns nil when nothing fired.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn compose_post_turn(callbacks: list) {
  return { payload ->
    var messages = []
    var result = nil
    for callback in callbacks {
      if callback == nil {
        continue
      }
      let norm = __normalize_verdict(callback(payload))
      if norm.stop {
        let prior = if len(messages) > 0 {
          join(messages, "\n") + "\n"
        } else {
          ""
        }
        result = norm + {message: prior + norm.message}
        break
      }
      if to_string(norm?.message ?? "") != "" {
        messages = messages.push(norm.message)
      }
    }
    if result != nil {
      result
    } else if len(messages) > 0 {
      {message: join(messages, "\n")}
    } else {
      nil
    }
  }
}

/**
 * with_governance(opts, config) folds a governor and/or a unified detector spec
 * into an agent_loop options dict through EXISTING seams only:
 *   - config.governor  (GovernorPolicy) -> composed into `post_turn_callback`.
 *   - config.detectors (DetectorSpec)   -> lowered onto `stall_diagnostics`
 *     (native loop/no-progress/stuck detectors) PLUS a token-runaway overlay
 *     composed into `post_turn_callback`.
 * Any pre-existing `post_turn_callback` is preserved (run first) and any
 * pre-existing `stall_diagnostics` keys are kept unless the spec overrides them.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn with_governance(opts: dict, config: dict) -> dict {
  var callbacks = []
  let existing = opts?.post_turn_callback
  if existing != nil {
    callbacks = callbacks.push(existing)
  }
  if config?.governor != nil {
    callbacks = callbacks.push(governor_post_turn(config.governor))
  }
  var result = opts
  let detectors = config?.detectors
  if detectors != nil {
    let existing_stall = if type_of(opts?.stall_diagnostics) == "dict" {
      opts.stall_diagnostics
    } else {
      {}
    }
    result = result + {stall_diagnostics: existing_stall + detector_spec_to_stall(detectors)}
    let overlay = unified_detectors_post_turn(detectors)
    if overlay != nil {
      callbacks = callbacks.push(overlay)
    }
  }
  if len(callbacks) > 0 {
    result = result + {post_turn_callback: compose_post_turn(callbacks)}
  }
  return result
}

/**
 * agent_governed_preset(kind, options, governance) is `agent_preset` with a
 * governor / detector spec folded in, so a durable persona can carry its pace
 * governor and detector rows by name. Equivalent to
 * `with_governance(agent_preset(kind, options), governance)`.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn agent_governed_preset(kind, options = nil, governance = {}) -> dict {
  return with_governance(agent_preset(kind, options), governance)
}

/**
 * governors_selftest is the offline live-shape / registration assertion. It
 * builds the CANONICAL live `agent_compute_post_turn` payload shape, asserts the
 * keys the governor depends on are present (throws otherwise), and proves the
 * governor reads them correctly by driving a firing policy end-to-end.
 * Complements the conformance test that runs a REAL agent_loop turn: together
 * they catch the "dead-since-inception converter" class where a callback keys on
 * fields the live payload never carries.
 *
 * @effects: []
 * @errors: [agent_loop]
 * @api_stability: experimental
 */
pub fn governors_selftest() -> dict {
  let live_payload = {
    dispatch: {results: []},
    has_tool_calls: true,
    iteration: 4,
    rejected_tool_names: [],
    session: {id: "governors-selftest"},
    session_id: "governors-selftest",
    session_rejected_tools: [],
    session_successful_tools: ["edit"],
    successful_tool_names: ["edit"],
    text: "",
    tool_count: 0,
    tool_results: [],
    visible_text: "",
  }
  let required = ["iteration", "session_id", "successful_tool_names"]
  var missing = []
  for key in required {
    if !contains(keys(live_payload), key) {
      missing = missing.push(key)
    }
  }
  if len(missing) > 0 {
    throw "governors_selftest: live post_turn payload is missing required keys: " + join(missing, ", ")
  }
  // signal=iterations reads ONLY payload.iteration, so this is pure (no live
  // session). budget 5 turns, iteration 4 -> 5 turns consumed -> fraction 1.0
  // at hard=1.0 -> abort. If `iteration` ever drifts, consumed collapses to 1
  // and `ok` flips false.
  let policy = {budget: 5.0, checkpoint: 1.0, hard: 1.0, over_estimate: 1.0, signal: "iterations"}
  let obs = __governor_observe(policy, live_payload)
  let decision = governor_decision(policy, obs)
  return {
    decision: decision,
    observed_keys: keys(live_payload).sort(),
    ok: decision.action == "abort" && obs.consumed == 5.0,
    required_keys: required,
  }
}