harn-stdlib 0.9.15

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
/**
 * @harn-entrypoint-category workflow.stdlib
 *
 * std/workflow/patterns — small, deterministic workflow recipes. These are
 * builders and control-flow helpers, not another workflow runtime and not a
 * provider client.
 */
fn __patterns_dict(value) {
  if type_of(value) == "dict" {
    return value
  }
  return {}
}

fn __patterns_list(value) {
  if type_of(value) == "list" {
    return value
  }
  return []
}

fn __patterns_is_callable(value) -> bool {
  let kind = type_of(value)
  return kind == "function" || kind == "closure" || kind == "fn"
}

fn __patterns_non_empty_string(value) {
  if type_of(value) != "string" {
    return nil
  }
  let trimmed = trim(value)
  if trimmed == "" {
    return nil
  }
  return trimmed
}

fn __patterns_model_policy(config, key) {
  let cfg = __patterns_dict(config)
  let specific = __patterns_dict(cfg?[key])
  let shared = __patterns_dict(cfg?.model_policy)
  return shared + specific
}

fn __patterns_context_policy(config, key) {
  let cfg = __patterns_dict(config)
  let specific = __patterns_dict(cfg?[key])
  let shared = __patterns_dict(cfg?.context_policy)
  return shared + specific
}

fn __patterns_output_contract(default_kind, override_cfg) {
  let cfg = __patterns_dict(override_cfg)
  if cfg?.output_contract != nil {
    return cfg.output_contract
  }
  return {output_kinds: [default_kind]}
}

fn __patterns_stage_node(config, key, defaults) {
  let cfg = __patterns_dict(config)
  let explicit_node = cfg?[key + "_node"]
  let override_cfg = if explicit_node != nil {
    __patterns_dict(explicit_node)
  } else if key == "verify" {
    {}
  } else {
    __patterns_dict(cfg?[key])
  }
  var node = defaults + override_cfg
  if node?.model_policy == nil {
    node = node + {model_policy: __patterns_model_policy(cfg, key + "_model_policy")}
  }
  if node?.context_policy == nil {
    node = node + {context_policy: __patterns_context_policy(cfg, key + "_context_policy")}
  }
  return node
}

/**
 * Build a one-stage graph that runs an acting stage and then a verify stage.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn workflow_self_verifying_graph(config = nil) {
  let cfg = __patterns_dict(config)
  let act_id = __patterns_non_empty_string(cfg?.act_id) ?? "act"
  let verify_id = __patterns_non_empty_string(cfg?.verify_id) ?? "verify"
  let act = __patterns_stage_node(
    cfg,
    "act",
    {
      kind: "stage",
      mode: cfg?.mode ?? "agent",
      model_policy: cfg?.model_policy ?? {},
      output_contract: __patterns_output_contract(cfg?.act_output_kind ?? "draft", cfg?.act),
    },
  )
  let verify = __patterns_stage_node(
    cfg,
    "verify",
    {
      kind: "verify",
      mode: cfg?.verify_mode ?? "command",
      verify: cfg?.verify ?? {},
      output_contract: __patterns_output_contract(cfg?.verify_output_kind ?? "verification_result", cfg?.verify_node),
    },
  )
  return workflow_graph(
    {
      name: cfg?.name ?? "self_verifying",
      entry: act_id,
      nodes: {[act_id]: act, [verify_id]: verify},
      edges: [{from: act_id, to: verify_id}],
    },
  )
}

/**
 * Build the common implement -> verify -> repair -> verify loop.
 *
 * The graph is explicit: verification failure follows branch `"failed"` into
 * the repair stage, then repair returns to verify. Callers bound total work
 * with workflow_execute({max_steps}) and per-agent `iteration_budget`.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn workflow_command_verify_graph(config = nil) {
  let cfg = __patterns_dict(config)
  let implement_id = __patterns_non_empty_string(cfg?.implement_id) ?? "implement"
  let verify_id = __patterns_non_empty_string(cfg?.verify_id) ?? "verify"
  let repair_id = __patterns_non_empty_string(cfg?.repair_id) ?? "repair"
  let implement = __patterns_stage_node(
    cfg,
    "implement",
    {
      kind: "stage",
      mode: cfg?.mode ?? "agent",
      model_policy: cfg?.model_policy ?? {},
      output_contract: __patterns_output_contract(cfg?.implement_output_kind ?? "draft", cfg?.implement),
    },
  )
  let verify = __patterns_stage_node(
    cfg,
    "verify",
    {
      kind: "verify",
      mode: cfg?.verify_mode ?? "command",
      verify: cfg?.verify ?? {},
      output_contract: __patterns_output_contract(cfg?.verify_output_kind ?? "verification_result", cfg?.verify_node),
    },
  )
  let repair_policy = __patterns_dict(cfg?.repair_model_policy)
  let repair = __patterns_stage_node(
    cfg,
    "repair",
    {
      kind: "stage",
      mode: cfg?.repair_mode ?? "agent",
      model_policy: __patterns_dict(cfg?.model_policy) + repair_policy,
      metadata: {repair: true, verifies: verify_id, repairs: implement_id},
      output_contract: __patterns_output_contract(cfg?.repair_output_kind ?? "patch", cfg?.repair),
    },
  )
  return workflow_graph(
    {
      name: cfg?.name ?? "command_verify",
      entry: implement_id,
      nodes: {[implement_id]: implement, [verify_id]: verify, [repair_id]: repair},
      edges: [
        {from: implement_id, to: verify_id},
        {from: verify_id, to: repair_id, branch: "failed"},
        {from: repair_id, to: verify_id},
      ],
    },
  )
}

/**
 * Build a single-stage validate→repair graph — sugar over the per-stage retry
 * policy (`std/workflow/stage.harn`). One delegated goal stage retries with
 * feedback until it settles: on a failed attempt the retry policy threads the
 * prior attempt's findings into the next attempt's task (via `feedback: true`
 * / `{max_chars}` or a `repair_prompt_builder` closure). This is the shape a
 * hand-rolled "do the work → check → repair with feedback" loop collapses
 * into.
 *
 * Config: `{task?, prompt?, retry_policy, id?, name?, model_policy?, tools?,
 * verify?, output_kind?}`. The goal runs as a `subagent` stage — the one kind
 * that both consumes the (feedback-threaded) task and retries through the
 * inverted attempt loop — so `retry_policy.max_attempts` bounds the repair
 * budget (defaulted to 2 so repair actually engages). `retry_policy` accepts
 * the full retry-with-feedback surface (`WorkflowRetryPolicy` in
 * std/workflow/options).
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn workflow_repair_stage_graph(config = nil) {
  let cfg = __patterns_dict(config)
  let stage_id = __patterns_non_empty_string(cfg?.id) ?? "repair"
  let retry_policy = __patterns_dict(cfg?.retry_policy)
  let policy = if retry_policy?.max_attempts == nil {
    retry_policy + {max_attempts: 2}
  } else {
    retry_policy
  }
  let goal = __patterns_stage_node(
    cfg,
    "goal",
    {
      kind: "subagent",
      mode: cfg?.mode ?? "agent",
      prompt: cfg?.prompt,
      tools: cfg?.tools,
      retry_policy: policy,
      verify: cfg?.verify ?? {},
      // Inline executor leaf: when supplied, the goal stage runs this closure
      // in-process instead of spawning a delegated worker. The retry/verify/
      // feedback machinery is identical either way.
      executor: cfg?.executor,
      output_contract: __patterns_output_contract(cfg?.output_kind ?? "result", cfg?.goal),
    },
  )
  return workflow_graph(
    {name: cfg?.name ?? "repair_stage", entry: stage_id, nodes: {[stage_id]: goal}, edges: []},
  )
}

/**
 * Build a graph with only a verification stage. Useful for replaying a
 * deterministic verifier against supplied artifacts.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn workflow_verification_only_graph(config = nil) {
  let cfg = __patterns_dict(config)
  let verify_id = __patterns_non_empty_string(cfg?.verify_id) ?? "verify"
  let verify = __patterns_stage_node(
    cfg,
    "verify",
    {
      kind: "verify",
      mode: cfg?.verify_mode ?? "command",
      verify: cfg?.verify ?? {},
      output_contract: __patterns_output_contract(cfg?.verify_output_kind ?? "verification_result", cfg?.verify_node),
    },
  )
  return workflow_graph(
    {name: cfg?.name ?? "verification_only", entry: verify_id, nodes: {[verify_id]: verify}, edges: []},
  )
}

/**
 * Copy `dict_value` without `drop_key` — used to lift a stage's `id` out of
 * the node body (the id becomes the nodes-map key, matching hand-authored
 * graphs).
 */
fn __patterns_without_key(dict_value, drop_key) {
  let source = __patterns_dict(dict_value)
  var out = {}
  for key in source.keys() {
    if key != drop_key {
      out = out + {[key]: source[key]}
    }
  }
  return out
}

/**
 * workflow_stages — ergonomic builder that expands a concise, linear list of
 * stage specs into the `{entry, nodes, edges}` graph `workflow_execute`
 * consumes.
 *
 * `spec` is either a bare `list<StageSpec>` or a `WorkflowStagesSpec`
 * (`{stages, name?, entry?, edges?}`). Each stage keeps its authored body
 * verbatim; its `id` (defaulting to `stage_<n>`) becomes the nodes-map key.
 * Stages are wired head-to-tail unless explicit `edges` are supplied, and
 * `entry` defaults to the first stage's id. This is pure sugar over
 * `workflow_graph`: the returned graph is byte-identical to the equivalent
 * hand-authored `workflow_graph({entry, nodes, edges})` — no new runtime
 * concept, no new node shape.
 *
 * @effects: []
 * @errors: []
 * @api_stability: experimental
 */
pub fn workflow_stages(spec = nil) {
  let stages = if type_of(spec) == "list" {
    spec
  } else {
    __patterns_list(__patterns_dict(spec)?.stages)
  }
  let cfg = if type_of(spec) == "dict" {
    spec
  } else {
    {}
  }
  var nodes = {}
  var order = []
  for raw in stages {
    let stage = __patterns_dict(raw)
    let id = __patterns_non_empty_string(stage?.id) ?? ("stage_" + to_string(len(order) + 1))
    nodes = nodes + {[id]: __patterns_without_key(stage, "id")}
    order = order + [id]
  }
  let edges = if cfg?.edges != nil {
    cfg.edges
  } else {
    var linear = []
    var index = 0
    while index < len(order) - 1 {
      linear = linear + [{from: order[index], to: order[index + 1]}]
      index = index + 1
    }
    linear
  }
  let entry = __patterns_non_empty_string(cfg?.entry) ?? if len(order) > 0 {
    order[0]
  } else {
    nil
  }
  return workflow_graph({name: cfg?.name ?? "stages", entry: entry, nodes: nodes, edges: edges})
}

fn __failover_disposition(value, fallback_action) {
  if value == nil {
    return {action: fallback_action}
  }
  if type_of(value) == "string" {
    return {action: value}
  }
  if type_of(value) == "dict" {
    return value + {action: value?.action ?? value?.decision ?? value?.status ?? fallback_action}
  }
  return {action: fallback_action, raw: value}
}

fn __failover_route_id(route, index) -> string {
  let explicit = __patterns_non_empty_string(route?.id ?? route?.name ?? route?.model ?? route?.provider)
  if explicit != nil {
    return explicit
  }
  return "route-" + to_string(index)
}

fn __failover_evaluate(config, route, ctx) {
  let evaluator = config?.evaluate
  if __patterns_is_callable(evaluator) {
    return __failover_disposition(evaluator(route, ctx), "call")
  }
  return {action: "call"}
}

fn __failover_classify(config, route, result, ctx) {
  let classifier = config?.classify
  if __patterns_is_callable(classifier) {
    return __failover_disposition(classifier(route, result, ctx), "continue")
  }
  if result?.ok ?? false {
    return {action: "success"}
  }
  return {action: "continue"}
}

fn __failover_terminal_status(decision) -> string {
  let action = to_string(decision?.action ?? "")
  if action == "success" {
    return "success"
  }
  if action == "break" || action == "terminal" {
    return to_string(decision?.status ?? decision?.reason ?? "terminal")
  }
  return action
}

/**
 * Run a deterministic failover loop over opaque route handles.
 *
 * Required config: `{routes, call}`. Optional callbacks:
 *   - `evaluate(route, ctx) -> {action: "call"|"skip", reason?}`
 *   - `classify(route, result, ctx) -> {action: "success"|"continue"|"break"|"terminal", reason?}`
 *
 * Harn owns attempt ordering and receipts. The caller owns provider HTTP,
 * credentials, endpoint policy, billing, and any route-handle semantics.
 *
 * @effects: []
 * @errors: ["workflow_failover: call must be callable"]
 * @api_stability: experimental
 */
pub fn workflow_failover(config = nil) {
  let cfg = __patterns_dict(config)
  let routes = __patterns_list(cfg?.routes)
  let caller = cfg?.call
  if !__patterns_is_callable(caller) {
    throw "workflow_failover: call must be callable"
  }
  let max_attempts = to_int(cfg?.max_attempts ?? len(routes))
  let base_ctx = __patterns_dict(cfg?.context)
  var ctx = base_ctx + {attempts: []}
  var attempts = []
  var call_attempts = 0
  var index = 0
  for route in routes {
    let route_id = __failover_route_id(route, index)
    let evaluated = __failover_evaluate(cfg, route, ctx)
    if evaluated.action == "skip" {
      let attempt = {
        index: index,
        route_id: route_id,
        route: route,
        status: "skipped",
        decision: "skip",
        reason: evaluated?.reason,
      }
      attempts = attempts + [attempt]
      ctx = ctx + {attempts: attempts, last_attempt: attempt}
      index = index + 1
      continue
    }
    if call_attempts >= max_attempts {
      break
    }
    call_attempts = call_attempts + 1
    let result = caller(route, ctx)
    let decision = __failover_classify(cfg, route, result, ctx + {result: result})
    let action = to_string(decision?.action ?? "continue")
    let attempt = {
      index: index,
      route_id: route_id,
      route: route,
      status: if action == "success" {
        "succeeded"
      } else {
        "failed"
      },
      decision: action,
      reason: decision?.reason,
      result: result,
    }
    attempts = attempts + [attempt]
    ctx = ctx + {attempts: attempts, last_attempt: attempt}
    if action == "success" {
      return {
        ok: true,
        status: "success",
        selected: route,
        selected_route_id: route_id,
        value: result,
        attempts: attempts,
        call_attempts: call_attempts,
      }
    }
    if action == "break" || action == "terminal" {
      return {
        ok: false,
        status: __failover_terminal_status(decision),
        selected: route,
        selected_route_id: route_id,
        value: result,
        attempts: attempts,
        call_attempts: call_attempts,
      }
    }
    index = index + 1
  }
  return {
    ok: false,
    status: "exhausted",
    selected: nil,
    selected_route_id: nil,
    value: nil,
    attempts: attempts,
    call_attempts: call_attempts,
  }
}