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
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
|
-- subagents/workflow.lua
--
-- The callback-based Lua workflow API. `M.workflow(fn)` wraps a
-- `function(ctx, input)` in a tagged table; `M.execute` runs it synchronously
-- on the caller's coroutine for trusted fixed DAGs, while `M.start` schedules
-- it on a dedicated coroutine and returns a session-scoped id for the
-- model-facing `subagents.lua` tool. Both forms use the same execution core.
--
-- ctx surface:
-- ctx:agent{ name=, agent|system_prompt|id=, prompt=, model?, reasoning?, output? } -> handle
-- handle:await() -> one settled result
-- ctx:await(handles, "all") -> array of settled results in input order
-- ctx:await(handles, "first") -> first settled result, remaining handles
--
-- Profile resolution and spawn-spec construction are NOT duplicated here: both
-- come from subagents/spawn.lua (`build_spec(input, profiles)` / `spawn(spec)`)
-- so the tool > profile > primary precedence lives in exactly one place. The
-- only thing this file adds to the spec is the synthetic structured-output
-- tool, which it normalizes to { name, description, schema } (defaulting the
-- name to "emit_result") so the host seam always sees the same shape.
--
-- Edge cases and deliberate policies:
--
-- * Child failures are values, never errors. A rejected spawn produces a
-- pre-settled handle with status "failed" so a workflow can branch on it;
-- execute() only raises for programmer/guest errors (bad arguments, an
-- exceeded job budget, an error thrown by the callback itself).
-- * `execute` runs on its caller's coroutine; `start` deliberately supplies a
-- dedicated coroutine whose lifetime is anchored by the workflow registry.
-- `subagents.jobs.await` parks and later resumes whichever coroutine invoked
-- it, so both paths use the same scheduler. opts.on_resume/opts.on_yield
-- bracket execution so the sandbox can arm its instruction guard.
-- * "first" mode may settle several jobs at once. Extra results are cached on
-- their handles rather than dropped, and a handle that already holds a
-- result is served from that cache without re-entering the host, so no
-- settled result is ever lost between awaits.
-- * Handles the callback never awaited are awaited ("all") after it returns,
-- purely so no child is orphaned; those results are discarded.
-- * Structured output is decoded from result.structured_json and validated
-- against output.schema by the one validator below: the JSON Schema subset
-- a child's output tool actually uses, ignoring keywords it does not know.
-- There is deliberately no second, rock-dependent path -- `jsonschema` needs
-- lrexlib-pcre and a system PCRE that stock macOS lacks, so it is not a
-- declared dependency, and a validator picked by whether a rock happens to
-- be installed would make the same output pass here and fail there. A
-- validation failure turns the result into status "failed"; it is never
-- reported as a successful structured result.
-- * The host seam is reached through `require("panto").ext` at call time, not
-- aliased at load time, matching subagents/spawn.lua so a test can install a
-- fake `panto` module before the first call rather than before the require.
-- subagents.jobs is required the same way, so load order between the two
-- never matters.
local spawn = require("subagents.spawn")
local progress = require("subagents.progress")
local ok_uv, uv = pcall(require, "luv")
local M = {}
-- Session-scoped background workflows. The model sees only immutable proxies;
-- mutable state and live handles stay private in this module.
local workflow_sequence = 0
local workflow_records = {}
local active_workflows = {}
local function readonly(index, pairs_fn, len_fn)
return setmetatable({}, {
__index = index,
__newindex = function() error("subagents workflow records are read-only", 2) end,
__pairs = pairs_fn,
__len = len_fn,
__metatable = false,
})
end
local workflows_proxy = readonly(
function(_, id)
local record = workflow_records[id]
return record and record.proxy or nil
end,
function()
local id
return function()
id = next(workflow_records, id)
local record = id and workflow_records[id] or nil
return id, record and record.proxy or nil
end
end,
function()
local count = 0
for _ in pairs(workflow_records) do count = count + 1 end
return count
end)
M.workflows = workflows_proxy
local workflow_mt = { __name = "subagents.workflow" }
-- ---------------------------------------------------------------------------
-- Host seam access
-- ---------------------------------------------------------------------------
local function host()
return require("panto").ext
end
-- The job machinery, resolved at call time for the same reason as the host seam.
local function jobs()
return require("subagents.jobs")
end
local function host_json()
local ok, ext = pcall(host)
if ok and type(ext) == "table" and type(ext.json) == "table" then
return ext.json
end
return nil
end
-- Decode a JSON document. Panto installs its own codec as `panto.ext.json`;
-- the dkjson fallback only matters for a bare `lua` process running the specs.
local function json_decode(text)
local json = host_json()
if json and json.decode then
return json.decode(text)
end
local ok, dkjson = pcall(require, "dkjson")
if ok and type(dkjson) == "table" and dkjson.decode then
local value, _, err = dkjson.decode(text)
if err then
error(err, 0)
end
return value
end
error("no JSON decoder available (panto.ext.json missing, dkjson not installed)", 0)
end
local function json_encode(value)
local json = host_json()
if json and json.encode then
local ok, encoded = pcall(json.encode, value)
if ok then
return encoded
end
end
local ok, dkjson = pcall(require, "dkjson")
if ok and type(dkjson) == "table" and dkjson.encode then
local encoded_ok, encoded = pcall(dkjson.encode, value)
if encoded_ok then
return encoded
end
end
return tostring(value)
end
M.json_encode = json_encode
M.json_decode = json_decode
-- ---------------------------------------------------------------------------
-- Schema validation
-- ---------------------------------------------------------------------------
-- The validator: the JSON Schema subset that structured child output actually
-- uses. Anything it does not understand is ignored rather than rejected, so an
-- unrecognized keyword never fails a legitimate result.
local function is_array_like(value)
local count = 0
for key in pairs(value) do
if type(key) ~= "number" then
return false
end
count = count + 1
end
return count == #value
end
local function type_matches(value, expected)
if expected == "object" then
return type(value) == "table"
elseif expected == "array" then
return type(value) == "table" and is_array_like(value)
elseif expected == "string" then
return type(value) == "string"
elseif expected == "number" then
return type(value) == "number"
elseif expected == "integer" then
return type(value) == "number" and value == math.floor(value)
elseif expected == "boolean" then
return type(value) == "boolean"
elseif expected == "null" then
return value == nil or type(value) == "userdata"
end
return true
end
local function check_schema(value, schema, path)
if type(schema) ~= "table" then
return true
end
local expected = schema.type
if type(expected) == "string" then
if not type_matches(value, expected) then
return false, string.format("%s: expected %s, got %s", path, expected, type(value))
end
elseif type(expected) == "table" then
local any = false
for _, candidate in ipairs(expected) do
if type_matches(value, candidate) then
any = true
break
end
end
if not any then
return false, string.format("%s: no listed type matched %s", path, type(value))
end
end
if type(schema.enum) == "table" then
local found = false
for _, allowed in ipairs(schema.enum) do
if allowed == value then
found = true
break
end
end
if not found then
return false, string.format("%s: value is not one of the enumerated options", path)
end
end
if type(value) == "string" then
if type(schema.minLength) == "number" and #value < schema.minLength then
return false, string.format("%s: shorter than minLength %d", path, schema.minLength)
end
if type(schema.maxLength) == "number" and #value > schema.maxLength then
return false, string.format("%s: longer than maxLength %d", path, schema.maxLength)
end
end
if type(value) == "number" then
if type(schema.minimum) == "number" and value < schema.minimum then
return false, string.format("%s: below minimum %s", path, tostring(schema.minimum))
end
if type(schema.maximum) == "number" and value > schema.maximum then
return false, string.format("%s: above maximum %s", path, tostring(schema.maximum))
end
end
if type(value) ~= "table" then
return true
end
if type(schema.required) == "table" then
for _, key in ipairs(schema.required) do
if value[key] == nil then
return false, string.format("%s: missing required property '%s'", path, tostring(key))
end
end
end
if type(schema.properties) == "table" then
for key, sub in pairs(schema.properties) do
if value[key] ~= nil then
local ok, err = check_schema(value[key], sub, path .. "." .. tostring(key))
if not ok then
return false, err
end
end
end
if schema.additionalProperties == false then
for key in pairs(value) do
if schema.properties[key] == nil then
return false, string.format("%s: unexpected property '%s'", path, tostring(key))
end
end
end
end
if type(schema.items) == "table" then
if type(schema.minItems) == "number" and #value < schema.minItems then
return false, string.format("%s: fewer than minItems %d", path, schema.minItems)
end
if type(schema.maxItems) == "number" and #value > schema.maxItems then
return false, string.format("%s: more than maxItems %d", path, schema.maxItems)
end
for index, item in ipairs(value) do
local ok, err = check_schema(item, schema.items, string.format("%s[%d]", path, index))
if not ok then
return false, err
end
end
end
return true
end
-- ---------------------------------------------------------------------------
-- Result shaping
-- ---------------------------------------------------------------------------
local function copy_result(result)
local shaped = {}
if type(result) == "table" then
for key, value in pairs(result) do
shaped[key] = value
end
end
if shaped.status == nil then
shaped.status = "failed"
shaped.error = shaped.error or "the host returned no result for this job"
shaped.resumable = false
end
return shaped
end
local function fail(shaped, message)
shaped.status = "failed"
shaped.error = message
shaped.output = nil
return shaped
end
-- Turn a host result into the value a workflow callback sees. Only handles
-- carrying an output schema decode structured JSON; everything else passes
-- through untouched.
local function shape_result(result, handle)
local shaped = copy_result(result)
local schema = handle and handle.output_schema
if schema == nil or shaped.status ~= "completed" then
return shaped
end
-- An empty tool input is a real provider case (a chat-style provider
-- finalizes an argument-less call with ""), and it is not a validation
-- failure: nothing was produced to validate.
local raw = shaped.structured_json
if raw == nil or raw == "" then
return fail(shaped, "structured output missing: the child produced no structured result")
end
local decoded_ok, decoded = pcall(json_decode, raw)
if not decoded_ok then
return fail(shaped, "structured output failed validation: " .. tostring(decoded))
end
local valid, message = check_schema(decoded, schema, "output")
if not valid then
return fail(shaped, "structured output failed validation: " .. tostring(message or "schema mismatch"))
end
shaped.output = decoded
return shaped
end
-- The host may hand back a single result table or an array of them; both are
-- normalized to an array here. A result always carries `status`, which is what
-- distinguishes the two shapes.
local function as_result_array(value)
if type(value) ~= "table" then
return {}
end
if value.status ~= nil then
return { value }
end
return value
end
-- ---------------------------------------------------------------------------
-- Handles and context
-- ---------------------------------------------------------------------------
local handle_mt = {}
handle_mt.__index = handle_mt
handle_mt.__name = "subagents.handle"
function handle_mt:await()
return self.ctx:await({ self }, "all")[1]
end
local ctx_mt = {}
ctx_mt.__index = ctx_mt
ctx_mt.__name = "subagents.ctx"
-- Per-run state lives here, not on ctx: the sandboxed guest holds the ctx table
-- and would otherwise be able to raise its own job cap (`ctx.max_jobs = nil`),
-- reset the counter, or read the profile set. ctx itself is an empty table
-- exposing only `agent` and `await`. Weak keys so a finished run is collectable.
local state = setmetatable({}, { __mode = "k" })
local function make_agent_record(workflow_record, name)
local record = {
name = name,
status = "running",
output = nil,
error = nil,
id = nil,
}
record.proxy = readonly(function(_, key)
if key == "name" or key == "status" or key == "output" or key == "error" or key == "id" then
return record[key]
end
end)
workflow_record.agent_order[#workflow_record.agent_order + 1] = record
workflow_record.agents_by_name[name] = record
return record
end
local function settle_agent_record(record, result)
if record == nil or type(result) ~= "table" then return end
record.status = result.status or "failed"
record.id = result.id
record.error = result.error
if result.output ~= nil then
record.output = M.output_text(result)
end
end
local function settle_workflow_handle(handle, result)
handle.result = shape_result(result, handle)
settle_agent_record(handle.agent_record, handle.result)
return handle.result
end
-- The started job stays off the handle for the same reason: a subagents.jobs
-- handle owns the child's agent and job userdata, so a guest holding a workflow
-- handle would otherwise reach `agent:run_async` directly and start children
-- outside the job cap. The guest sees only `result` and `await`.
local job_of = setmetatable({}, { __mode = "k" })
function ctx_mt:agent(input)
if type(input) ~= "table" then
error("ctx:agent expects a table of { agent =, prompt =, ... }", 2)
end
local s = state[self]
if not s then
error("ctx:agent must be called on a workflow context (use ctx:agent{...})", 2)
end
if s.record and s.record.cancel_requested then
error("workflow is cancelled", 2)
end
if s.max_jobs and s.job_count >= s.max_jobs then
error(string.format("workflow job limit exceeded (max %d)", s.max_jobs), 2)
end
local name = input.name
if type(name) ~= "string" or name:match("^%s*$") then
error("ctx:agent requires a non-empty unique `name`", 2)
end
if s.agent_names[name] then
error("duplicate workflow agent name '" .. name .. "'", 2)
end
s.agent_names[name] = true
local agent_record = s.record and make_agent_record(s.record, name) or nil
-- spawn.build_spec owns profile lookup, model/reasoning precedence, the
-- child-role system messages, and the synthetic output tool. A nil profile
-- set means "use the cached discovery", which is what it already does.
local spec, spec_err = spawn.build_spec(input, s.profiles)
if not spec then
if agent_record then
agent_record.status = "failed"
agent_record.error = tostring(spec_err)
end
error(tostring(spec_err), 2)
end
local output_schema = nil
if type(spec.output) == "table" then
output_schema = spec.output.schema
end
local handle = setmetatable({
ctx = self,
spec = spec,
output_schema = output_schema,
agent_record = agent_record,
result = nil,
}, handle_mt)
spec.on_settle = function(result)
if handle.result == nil then settle_workflow_handle(handle, result) end
end
local job, job_err = spawn.spawn(spec)
if not job then
-- A rejected spawn is a child failure, not a workflow error.
settle_workflow_handle(handle, {
id = nil,
status = "failed",
error = tostring(job_err or "the host refused to start the child"),
resumable = false,
})
else
job_of[handle] = job
end
s.job_count = s.job_count + 1
s.outstanding[#s.outstanding + 1] = handle
return handle
end
-- Pick the first handle (in input order) that already holds a settled result,
-- returning it with the remaining handles.
local function take_settled(handles)
for index, handle in ipairs(handles) do
if handle.result ~= nil then
local remaining = {}
for other_index, other in ipairs(handles) do
if other_index ~= index then
remaining[#remaining + 1] = other
end
end
return handle.result, remaining
end
end
return nil, nil
end
local function pending_handles(handles)
local pending, started = {}, {}
for _, handle in ipairs(handles) do
if handle.result == nil and job_of[handle] ~= nil then
pending[#pending + 1] = handle
started[#started + 1] = job_of[handle]
end
end
return pending, started
end
function ctx_mt:await(handles, mode)
mode = mode or "all"
if type(handles) ~= "table" then
error("ctx:await expects an array of handles", 2)
end
if getmetatable(handles) == handle_mt then
handles = { handles }
end
if mode ~= "all" and mode ~= "first" then
error("ctx:await mode must be \"all\" or \"first\"", 2)
end
if mode == "all" then
local pending, started = pending_handles(handles)
if #pending > 0 then
local results = as_result_array(jobs().await(started, "all"))
for index, handle in ipairs(pending) do
if handle.result == nil then settle_workflow_handle(handle, results[index]) end
end
end
local out = {}
for index, handle in ipairs(handles) do
out[index] = handle.result or copy_result(nil)
end
return out
end
local ready, remaining = take_settled(handles)
if ready ~= nil then
return ready, remaining
end
local pending, started = pending_handles(handles)
if #pending == 0 then
return nil, {}
end
local results, still_pending = jobs().await(started, "first")
results = as_result_array(results)
-- Everything not listed as still-running has settled; pair those handles
-- with the returned results in order. The listed jobs are the very handles
-- that went in, so they match by identity.
local settled = pending
if type(still_pending) == "table" and #still_pending > 0 then
local still_running = {}
for _, job in ipairs(still_pending) do
still_running[job] = true
end
settled = {}
for _, handle in ipairs(pending) do
if not still_running[job_of[handle]] then
settled[#settled + 1] = handle
end
end
end
for index, result in ipairs(results) do
local handle = settled[index]
if handle and handle.result == nil then
settle_workflow_handle(handle, result)
end
end
ready, remaining = take_settled(handles)
if ready == nil then
-- The await returned without settling anything; treat the batch as
-- failed rather than spinning forever on the same handles.
local first = pending[1]
settle_workflow_handle(first, copy_result(nil))
return take_settled(handles)
end
return ready, remaining
end
-- ---------------------------------------------------------------------------
-- Workflow objects and execution
-- ---------------------------------------------------------------------------
function M.workflow(fn)
if type(fn) ~= "function" then
error("subagents.workflow expects a function(ctx, input)", 2)
end
return setmetatable({ run = fn }, workflow_mt)
end
function M.is_workflow(value)
return type(value) == "table" and getmetatable(value) == workflow_mt
end
-- Settle any handle the callback left running so a returning workflow never
-- orphans a child. Results are intentionally discarded.
local function drain(ctx)
local pending = {}
for _, handle in ipairs(state[ctx].outstanding) do
if handle.result == nil then
pending[#pending + 1] = handle
end
end
if #pending == 0 then
return
end
pcall(function()
ctx:await(pending, "all")
end)
end
-- Run `wf` against `input`. opts:
-- max_jobs -- cap on ctx:agent calls (nil = unbounded; the sandbox passes 32)
-- profiles -- discovered profile set for spawn.build_spec (nil = discover)
-- on_resume -- called with the running coroutine before the callback starts
-- on_yield -- called with the same coroutine once it has finished
--
-- The callback runs on the caller's coroutine. `M.start` supplies a dedicated
-- one; direct callers use their own. `subagents.jobs.await` parks and resumes
-- that exact coroutine.
function M.execute(wf, input, opts)
if not M.is_workflow(wf) then
error("subagents.workflow.execute expects a workflow object", 2)
end
opts = opts or {}
local ctx = setmetatable({}, ctx_mt)
state[ctx] = {
profiles = opts.profiles,
max_jobs = opts.max_jobs,
job_count = 0,
outstanding = {},
agent_names = {},
record = opts.record,
}
local co = coroutine.running()
if opts.on_resume then
opts.on_resume(co)
end
-- pcall is yieldable in 5.4, so the callback may still await across it.
local packed = table.pack(pcall(wf.run, ctx, input))
if opts.on_yield then
opts.on_yield(co)
end
drain(ctx)
if not packed[1] then
error(packed[2], 0)
end
return table.unpack(packed, 2, packed.n)
end
-- A child's output text: a structured result decodes to a table, which is
-- re-encoded compactly so anything model-visible is still a string.
function M.output_text(result)
local output = result.output
if type(output) == "table" then
return json_encode(output)
end
if output == nil or output == "" then
return tostring(result.error or "")
end
return tostring(output)
end
local function make_workflow_record(id)
local record = {
id = id,
status = "running",
result = nil,
error = nil,
agent_order = {},
agents_by_name = {},
cancel_requested = false,
suppress_notification = false,
}
record.agents_proxy = readonly(
function(_, key)
local agent = type(key) == "number" and record.agent_order[key] or record.agents_by_name[key]
return agent and agent.proxy or nil
end,
function()
local index = 0
return function()
index = index + 1
local agent = record.agent_order[index]
if agent then return agent.name, agent.proxy end
end
end,
function() return #record.agent_order end)
record.proxy = readonly(function(_, key)
if key == "id" or key == "status" or key == "result" or key == "error" then
return record[key]
elseif key == "agents" then
return record.agents_proxy
end
end)
return record
end
local function notify(record)
if record.suppress_notification or record.status == "cancelled" then return end
local primary = host().agent
if primary == nil or type(primary.submit) ~= "function" then return end
local submitted = pcall(primary.submit, primary, string.format(
"[subagents] Workflow %s %s. Inspect subagents.workflows[%q] with subagents.lua.",
record.id, record.status, record.id))
if submitted and type(host().emit) == "function" then
pcall(host().emit, "agent_submission")
end
end
local function finish_workflow(record, status, result, err)
if record.status ~= "running" then return end
record.status = status
record.result = result
record.error = err
record.coroutine = nil
active_workflows[record.id] = nil
notify(record)
end
-- Start a model-authored workflow on its own coroutine and return before the
-- callback runs. The existing jobs/luv machinery resumes that coroutine as
-- children settle; no second scheduler or thread is involved.
function M.start(wf, opts)
if not M.is_workflow(wf) then
error("subagents.workflow expects a function(ctx)", 2)
end
if not ok_uv or type(uv.new_timer) ~= "function" then
error("subagents.workflow requires luv", 2)
end
opts = opts or {}
workflow_sequence = workflow_sequence + 1
local id = "workflow-" .. workflow_sequence
local record = make_workflow_record(id)
workflow_records[id] = record
active_workflows[id] = record
local co = coroutine.create(function()
if record.cancel_requested then
return finish_workflow(record, "cancelled", nil, "workflow cancelled")
end
local ok, result = pcall(M.execute, wf, nil, {
max_jobs = opts.max_jobs,
profiles = opts.profiles,
record = record,
on_resume = opts.on_resume,
on_yield = opts.on_yield,
})
if record.cancel_requested then
finish_workflow(record, "cancelled", nil, "workflow cancelled")
elseif not ok then
finish_workflow(record, "failed", nil, tostring(result))
elseif type(result) ~= "string" then
finish_workflow(record, "failed", nil, "workflow callback must return a string")
else
finish_workflow(record, "completed", result, nil)
end
end)
record.coroutine = co
progress.bind_coroutine(co, opts.tool_call_id)
local timer = uv.new_timer()
record.timer = timer
timer:start(0, 0, function()
timer:stop()
timer:close()
record.timer = nil
local ok, err = coroutine.resume(co)
if not ok then
finish_workflow(record, record.cancel_requested and "cancelled" or "failed", nil, tostring(err))
end
end)
return id
end
function M.cancel_all(suppress_notification)
for _, record in pairs(active_workflows) do
record.cancel_requested = true
if suppress_notification then record.suppress_notification = true end
end
end
return M
|