-
-
Notifications
You must be signed in to change notification settings - Fork 371
Expand file tree
/
Copy pathworkflow-api.ts
More file actions
812 lines (759 loc) · 24 KB
/
Copy pathworkflow-api.ts
File metadata and controls
812 lines (759 loc) · 24 KB
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
import { AsyncLocalStorage } from "node:async_hooks";
import { createHash } from "node:crypto";
import type { WorkflowSandboxApi } from "./workflow-sandbox.js";
import type { LocalAgentProvider } from "./local-agent-profiles.js";
import type { JsonSchema, JsonValue } from "./json-types.js";
import { jsonValueSchema } from "./json-types.js";
import {
WORKFLOW_LIMITS,
WORKFLOW_MAX_ITEMS,
WORKFLOW_MAX_NEST_DEPTH,
buildAgentCacheKeyInput,
createStubBudget,
type AgentIsolationMode,
type AgentCacheKeyInput,
type AgentOpts,
type AppendWorkflowEventInput,
type WorkflowMeta,
} from "./workflow-types.js";
import { agentOptsSchema } from "./workflow-contracts.js";
import {
isWorkflowOperationError,
serializeWorkflowError,
WorkflowScriptRuntimeError,
} from "./workflow-errors.js";
// ---------------------------------------------------------------------------
// Host deps (injected by engine; fakes OK in tests)
// ---------------------------------------------------------------------------
export interface WorkflowProviderRunInput {
provider: LocalAgentProvider;
prompt: string;
providerSessionId?: string;
model?: string;
effort?: string;
workspace: string;
signal?: AbortSignal;
label?: string;
phase?: string;
/** JSON Schema for native structured output (codex/claude). */
schema?: JsonSchema;
}
export interface WorkflowProviderRunResult {
finalResponse: string;
providerSessionId?: string;
/** Provider-native structured object when schema was requested. */
structured?: unknown;
}
export type WorkflowRunProvider = (
input: WorkflowProviderRunInput,
) => Promise<WorkflowProviderRunResult>;
export interface WorkflowWorktreeHandle {
path: string;
/** Called after agent returns or fails. Success+clean may remove; dirty/failure preserves. */
finalize: (outcome: "success" | "failure") => Promise<{ dirty: boolean; removed: boolean }>;
}
export type CreateAgentWorktree = (input: {
runId: string;
callIndex: number;
workspaceRoot: string;
baseSha?: string;
}) => Promise<WorkflowWorktreeHandle>;
export interface WorkflowReplayHit {
value: JsonValue;
responseText?: string;
structuredJson?: string;
providerSessionId?: string;
replayMatch: "same_index" | "compatible_key";
replayedFromRunId: string;
replayedFromCallIndex: number;
}
export interface WorkflowReplayMiss {
reason:
| "no_compatible_call"
| "prior_call_not_replayable"
| "compatible_result_consumed"
| "identity_changed";
changedFields?: Array<keyof AgentCacheKeyInput>;
}
export type WorkflowReplayDecision =
| { hit: WorkflowReplayHit; miss?: never }
| { hit?: never; miss: WorkflowReplayMiss };
export interface WorkflowReplay {
decide(
callIndex: number,
cacheKey: string,
input: AgentCacheKeyInput,
): WorkflowReplayDecision;
}
export interface WorkflowJournal {
appendEvent<K extends AppendWorkflowEventInput["type"]>(
input: Extract<AppendWorkflowEventInput, { type: K }>,
): unknown;
beginAgentCall(input: {
runId: string;
callIndex: number;
cacheKey: string;
prompt: string;
schemaJson?: string;
provider: LocalAgentProvider;
model?: string;
effort?: string;
label?: string;
phase?: string;
isolation?: AgentIsolationMode;
worktreePath?: string;
replayMatch?: "same_index" | "compatible_key";
replayedFromRunId?: string;
replayedFromCallIndex?: number;
replayReason?: string;
}): unknown;
completeAgentCall(input: {
runId: string;
callIndex: number;
responseText?: string;
structuredJson?: string;
providerSessionId?: string;
dirty?: boolean;
worktreePath?: string;
fromCache?: boolean;
}): unknown;
failAgentCall(input: {
runId: string;
callIndex: number;
error: string;
errorKind?: import("./workflow-types.js").WorkflowErrorKind;
worktreePath?: string;
dirty?: boolean;
}): unknown;
isCancelRequested(runId: string): boolean;
}
export interface WorkflowApiDeps {
runId: string;
journal: WorkflowJournal;
meta: WorkflowMeta;
args: JsonValue | undefined;
concurrency: number;
signal: AbortSignal;
workspaceRoot: string;
baseSha?: string;
/** Already-filtered enabled ∩ live provider ids, preference order. */
enabledProviders: LocalAgentProvider[];
runProvider: WorkflowRunProvider;
createWorktree?: CreateAgentWorktree;
replay?: WorkflowReplay;
/** Nested workflow source loader; required for workflow(). */
resolveNestedSource?: (nameOrRef: string | { scriptPath: string }) => string | Promise<string>;
/** Run a nested script sharing semaphore/callIndex. */
executeNested?: (input: {
source: string;
args: JsonValue | undefined;
nestDepth: number;
}) => Promise<unknown>;
nestDepth?: number;
}
export interface WorkflowApi extends WorkflowSandboxApi {
getCallCount(): number;
getNestDepth(): number;
}
export class WorkflowEngineError extends Error {
constructor(
readonly kind:
| "cancelled"
| "provider_disabled"
| "provider_unavailable"
| "no_provider"
| "nest_depth"
| "worktree"
| "schema"
| "path"
| "internal",
message: string,
) {
super(message);
this.name = "WorkflowEngineError";
}
}
// ---------------------------------------------------------------------------
// Semaphore
// ---------------------------------------------------------------------------
export class WorkflowSemaphore {
private active = 0;
private readonly waiters: Array<() => void> = [];
constructor(readonly limit: number) {
if (!Number.isFinite(limit) || limit < 1) {
throw new Error("WorkflowSemaphore limit must be >= 1");
}
}
async acquire(signal?: AbortSignal): Promise<void> {
if (signal?.aborted) throw cancelledError();
if (this.active < this.limit) {
this.active += 1;
return;
}
await new Promise<void>((resolve, reject) => {
const onAbort = () => {
const idx = this.waiters.indexOf(wake);
if (idx >= 0) this.waiters.splice(idx, 1);
reject(cancelledError());
};
const wake = () => {
signal?.removeEventListener("abort", onAbort);
this.active += 1;
resolve();
};
this.waiters.push(wake);
signal?.addEventListener("abort", onAbort, { once: true });
});
}
release(): void {
this.active = Math.max(0, this.active - 1);
const next = this.waiters.shift();
if (next) next();
}
}
// ---------------------------------------------------------------------------
// API factory
// ---------------------------------------------------------------------------
const phaseAls = new AsyncLocalStorage<string>();
export function createWorkflowApi(deps: WorkflowApiDeps): WorkflowApi {
const nestDepth = deps.nestDepth ?? 0;
const semaphore = new WorkflowSemaphore(Math.max(1, deps.concurrency));
let callIndex = 0;
const runAgent = async (prompt: unknown, opts: unknown = {}): Promise<unknown> => {
if (typeof prompt !== "string" || !prompt.trim()) {
throw new WorkflowEngineError("internal", "agent(prompt) requires a non-empty string");
}
const agentOpts = normalizeAgentOpts(opts);
throwIfCancelled(deps);
const provider = resolveProvider(agentOpts.provider, deps.meta, deps.enabledProviders);
const phase = agentOpts.phase ?? phaseAls.getStore();
const isolation: AgentIsolationMode =
agentOpts.isolation === "worktree" ? "worktree" : "shared";
const index = callIndex;
callIndex += 1;
const cacheKeyInput = buildAgentCacheKeyInput({
prompt,
provider,
model: agentOpts.model,
effort: agentOpts.effort,
schema: agentOpts.schema,
isolation,
});
const cacheKey = hashCacheKey(cacheKeyInput);
const replayDecision = deps.replay?.decide(index, cacheKey, cacheKeyInput);
if (replayDecision?.hit) {
const hit = replayDecision.hit;
deps.journal.beginAgentCall({
runId: deps.runId,
callIndex: index,
cacheKey,
prompt,
schemaJson: agentOpts.schema ? JSON.stringify(agentOpts.schema) : undefined,
provider,
model: agentOpts.model,
effort: agentOpts.effort,
label: agentOpts.label,
phase,
isolation,
replayMatch: hit.replayMatch,
replayedFromRunId: hit.replayedFromRunId,
replayedFromCallIndex: hit.replayedFromCallIndex,
});
deps.journal.completeAgentCall({
runId: deps.runId,
callIndex: index,
responseText: hit.responseText,
structuredJson: hit.structuredJson,
providerSessionId: hit.providerSessionId,
fromCache: true,
});
deps.journal.appendEvent({
runId: deps.runId,
type: "agent_call_cached",
phase,
label: agentOpts.label,
data: {
callIndex: index,
cacheKey,
provider,
replayMatch: hit.replayMatch,
replayedFromRunId: hit.replayedFromRunId,
replayedFromCallIndex: hit.replayedFromCallIndex,
},
});
return hit.value;
}
await semaphore.acquire(deps.signal);
let worktree: WorkflowWorktreeHandle | null = null;
let worktreePath: string | undefined;
let agentCallBegun = false;
try {
throwIfCancelled(deps);
if (isolation === "worktree") {
if (!deps.createWorktree) {
throw new WorkflowEngineError(
"worktree",
"isolation: 'worktree' requires createWorktree host support",
);
}
worktree = await deps.createWorktree({
runId: deps.runId,
callIndex: index,
workspaceRoot: deps.workspaceRoot,
baseSha: deps.baseSha,
});
worktreePath = worktree.path;
deps.journal.appendEvent({
runId: deps.runId,
type: "worktree_created",
phase,
label: agentOpts.label,
data: { callIndex: index, worktreePath, isolation },
});
}
deps.journal.beginAgentCall({
runId: deps.runId,
callIndex: index,
cacheKey,
prompt,
schemaJson: agentOpts.schema ? JSON.stringify(agentOpts.schema) : undefined,
provider,
model: agentOpts.model,
effort: agentOpts.effort,
label: agentOpts.label,
phase,
isolation,
worktreePath,
replayReason: replayDecision?.miss
? formatReplayMiss(replayDecision.miss)
: undefined,
});
agentCallBegun = true;
deps.journal.appendEvent({
runId: deps.runId,
type: "agent_call_started",
phase,
label: agentOpts.label,
data: {
callIndex: index,
cacheKey,
provider,
isolation,
worktreePath,
},
});
const cwd = worktreePath ?? deps.workspaceRoot;
const providerBase = {
provider,
prompt,
model: agentOpts.model,
effort: agentOpts.effort,
workspace: cwd,
signal: deps.signal,
label: agentOpts.label,
phase,
};
let returnValue: unknown;
let structuredJson: string | undefined;
let result: WorkflowProviderRunResult;
if (agentOpts.schema) {
// Lazy import keeps non-schema paths free of ajv load cost.
const { enforceAgentSchema } = await import("./workflow-schema.js");
const enforced = await enforceAgentSchema({
schema: agentOpts.schema,
prompt,
provider,
run: (p, options) =>
deps.runProvider({
...providerBase,
prompt: p,
providerSessionId: options.providerSessionId,
...(options.mode === "native" ? { schema: agentOpts.schema } : {}),
}),
onRetry: ({ attempt, errors, mode }) => {
deps.journal.appendEvent({
runId: deps.runId,
type: "schema_retry",
phase,
label: agentOpts.label,
data: { callIndex: index, attempt, errors, mode },
});
},
});
returnValue = enforced.value;
structuredJson = JSON.stringify(enforced.value);
result = {
finalResponse: enforced.finalResponse,
providerSessionId: enforced.providerSessionId,
structured: enforced.value,
};
} else {
result = await deps.runProvider(providerBase);
returnValue = result.finalResponse;
}
throwIfCancelled(deps);
let dirty: boolean | undefined;
if (worktree) {
const finalized = await worktree.finalize("success");
dirty = finalized.dirty;
deps.journal.appendEvent({
runId: deps.runId,
type: "worktree_finalized",
phase,
label: agentOpts.label,
data: {
callIndex: index,
worktreePath,
dirty: finalized.dirty,
removed: finalized.removed,
},
});
worktree = null;
}
deps.journal.completeAgentCall({
runId: deps.runId,
callIndex: index,
responseText: truncate(result.finalResponse, WORKFLOW_LIMITS.responseTextBytes),
structuredJson: structuredJson
? truncate(structuredJson, WORKFLOW_LIMITS.structuredJsonBytes)
: undefined,
providerSessionId: result.providerSessionId,
dirty,
worktreePath,
});
deps.journal.appendEvent({
runId: deps.runId,
type: "agent_call_completed",
phase,
label: agentOpts.label,
data: {
callIndex: index,
provider,
isolation,
worktreePath,
dirty,
fromCache: false,
},
});
return returnValue;
} catch (error) {
const message = error instanceof Error ? error.message : String(error);
let cleanupError: string | undefined;
if (worktree) {
try {
const finalized = await worktree.finalize("failure");
deps.journal.appendEvent({
runId: deps.runId,
type: "worktree_finalized",
phase,
label: agentOpts.label,
data: {
callIndex: index,
worktreePath,
dirty: finalized.dirty,
removed: finalized.removed,
outcome: "failure",
},
});
} catch (cleanupFailure) {
cleanupError =
cleanupFailure instanceof Error
? cleanupFailure.message
: String(cleanupFailure);
}
}
if (agentCallBegun) {
const scriptError = toWorkflowScriptRuntimeError(error);
deps.journal.failAgentCall({
runId: deps.runId,
callIndex: index,
error: message,
errorKind: scriptError.kind,
worktreePath,
});
}
deps.journal.appendEvent({
runId: deps.runId,
type: "agent_call_failed",
phase,
label: agentOpts.label,
data: {
callIndex: index,
error: message,
cleanupError,
isolation,
worktreePath,
},
});
throw error;
} finally {
semaphore.release();
}
};
const agent = async (prompt: unknown, opts: unknown = {}): Promise<unknown> => {
try {
return await runAgent(prompt, opts);
} catch (error) {
throw toWorkflowScriptRuntimeError(error);
}
};
const parallel = async (...args: unknown[]): Promise<Array<unknown | null>> => {
const thunks = args[0];
if (!Array.isArray(thunks)) {
throw new WorkflowEngineError("internal", "parallel(thunks) requires an array of functions");
}
assertMaxItems(thunks.length, "parallel");
return Promise.all(
thunks.map(async (thunk, index) => {
if (typeof thunk !== "function") {
throw new WorkflowEngineError(
"internal",
`parallel thunks[${index}] must be a function`,
);
}
try {
return await (thunk as () => Promise<unknown>)();
} catch {
return null;
}
}),
);
};
const pipeline = async (...args: unknown[]): Promise<Array<unknown | null>> => {
const items = args[0];
const stages = args.slice(1);
if (!Array.isArray(items)) {
throw new WorkflowEngineError("internal", "pipeline(items, ...stages) requires an items array");
}
assertMaxItems(items.length, "pipeline");
for (let i = 0; i < stages.length; i += 1) {
if (typeof stages[i] !== "function") {
throw new WorkflowEngineError("internal", `pipeline stage[${i}] must be a function`);
}
}
return Promise.all(
items.map(async (item, index) => {
let prev: unknown = item;
for (const stage of stages) {
try {
prev = await (stage as (prev: unknown, item: unknown, index: number) => unknown)(
prev,
item,
index,
);
} catch {
return null;
}
}
return prev;
}),
);
};
const phase = (...args: unknown[]): void => {
const title = args[0];
if (typeof title !== "string" || !title.trim()) {
throw new WorkflowEngineError("internal", "phase(title) requires a non-empty string");
}
phaseAls.enterWith(title);
deps.journal.appendEvent({
runId: deps.runId,
type: "phase_started",
phase: title,
data: { title },
});
};
const log = (...args: unknown[]): void => {
const message = args.map(String).join(" ");
deps.journal.appendEvent({
runId: deps.runId,
type: "log",
phase: phaseAls.getStore(),
data: { message: truncate(message, WORKFLOW_LIMITS.eventDataJsonBytes) },
});
};
const workflow = async (...args: unknown[]): Promise<unknown> => {
try {
if (nestDepth >= WORKFLOW_MAX_NEST_DEPTH) {
throw new WorkflowEngineError(
"nest_depth",
`workflow() nesting limited to ${WORKFLOW_MAX_NEST_DEPTH} level`,
);
}
if (!deps.resolveNestedSource || !deps.executeNested) {
throw new WorkflowEngineError(
"internal",
"nested workflow() is not configured on this host",
);
}
const nameOrRef = args[0] as string | { scriptPath: string };
const childArgsResult = jsonValueSchema.optional().safeParse(args[1]);
if (!childArgsResult.success) {
throw new WorkflowEngineError(
"internal",
`workflow() args must be JSON-serializable: ${childArgsResult.error.issues[0]?.message ?? "invalid value"}`,
);
}
const source = await deps.resolveNestedSource(nameOrRef);
return await deps.executeNested({
source,
args: childArgsResult.data,
nestDepth: nestDepth + 1,
});
} catch (error) {
throw toWorkflowScriptRuntimeError(error);
}
};
return {
agent: agent as WorkflowSandboxApi["agent"],
parallel: parallel as WorkflowSandboxApi["parallel"],
pipeline: pipeline as WorkflowSandboxApi["pipeline"],
phase: phase as WorkflowSandboxApi["phase"],
log: log as WorkflowSandboxApi["log"],
args: deps.args,
budget: createStubBudget(),
workflow: workflow as WorkflowSandboxApi["workflow"],
meta: deps.meta,
getCallCount: () => callIndex,
getNestDepth: () => nestDepth,
};
}
function formatReplayMiss(miss: WorkflowReplayMiss): string {
return miss.reason === "identity_changed" && miss.changedFields?.length
? `${miss.reason}:${miss.changedFields.join(",")}`
: miss.reason;
}
export function toWorkflowScriptRuntimeError(
error: unknown,
): WorkflowScriptRuntimeError {
if (error instanceof WorkflowScriptRuntimeError) return error;
if (error instanceof WorkflowEngineError) {
return new WorkflowScriptRuntimeError({
kind: error.kind,
message: error.message,
retryable:
error.kind === "provider_unavailable" ||
error.kind === "provider_disabled" ||
error.kind === "no_provider",
});
}
if (isWorkflowOperationError(error)) {
const serialized = serializeWorkflowError(error);
return new WorkflowScriptRuntimeError({
kind: serialized.kind,
message: serialized.message,
retryable: serialized.retryable,
});
}
if (error && typeof error === "object" && "name" in error) {
const name = String((error as { name: unknown }).name);
if (name === "AbortError") {
return new WorkflowScriptRuntimeError({
kind: "cancelled",
message: "Workflow cancelled",
});
}
}
return new WorkflowScriptRuntimeError({
kind: "internal",
message: error instanceof Error ? error.message : String(error),
});
}
/** Test helper: read current ALS phase (undefined outside phase). */
export function getCurrentWorkflowPhase(): string | undefined {
return phaseAls.getStore();
}
export function hashCacheKey(input: ReturnType<typeof buildAgentCacheKeyInput>): string {
return createHash("sha256").update(JSON.stringify(input)).digest("hex");
}
export function resolveProvider(
optsProvider: LocalAgentProvider | undefined,
meta: WorkflowMeta,
enabledProviders: LocalAgentProvider[],
): LocalAgentProvider {
if (optsProvider) {
if (!enabledProviders.includes(optsProvider)) {
throw new WorkflowEngineError(
"provider_disabled",
`Provider ${optsProvider} is not enabled or not available`,
);
}
return optsProvider;
}
if (meta.defaultProvider) {
if (!enabledProviders.includes(meta.defaultProvider)) {
throw new WorkflowEngineError(
"provider_unavailable",
`meta.defaultProvider ${meta.defaultProvider} is not enabled or not available`,
);
}
return meta.defaultProvider;
}
const first = enabledProviders[0];
if (!first) {
throw new WorkflowEngineError("no_provider", "No agent providers enabled");
}
return first;
}
function normalizeAgentOpts(opts: unknown): AgentOpts {
if (opts === undefined || opts === null) return {};
if (typeof opts === "object" && opts !== null && "writeMode" in opts) {
throw new WorkflowEngineError("internal", "writeMode is not supported on agent() (v1)");
}
const parsed = agentOptsSchema.safeParse(opts);
if (parsed.success) return parsed.data;
const issue = parsed.error.issues[0];
const path = issue?.path.join(".") || "opts";
const kind = path === "schema" ? "schema" : path === "isolation" ? "worktree" : "internal";
throw new WorkflowEngineError(
kind,
`Invalid agent ${path}: ${issue?.message ?? "validation failed"}`,
);
}
function assertMaxItems(count: number, label: string): void {
if (count > WORKFLOW_MAX_ITEMS) {
throw new WorkflowEngineError(
"internal",
`${label} exceeds max items ${WORKFLOW_MAX_ITEMS} (got ${count})`,
);
}
}
function throwIfCancelled(deps: WorkflowApiDeps): void {
if (deps.signal.aborted || deps.journal.isCancelRequested(deps.runId)) {
throw cancelledError();
}
}
function cancelledError(): WorkflowEngineError {
return new WorkflowEngineError("cancelled", "Workflow cancelled");
}
function truncate(text: string, maxBytes: number): string {
if (Buffer.byteLength(text, "utf8") <= maxBytes) return text;
// rough char truncate for journal safety
let end = Math.min(text.length, maxBytes);
while (end > 0 && Buffer.byteLength(text.slice(0, end), "utf8") > maxBytes) end -= 1;
return `${text.slice(0, end)}…`;
}
/** Minimal JSON extract for schema path until Ajv module lands. */
export function tryExtractJson(text: string): unknown | undefined {
const trimmed = text.trim();
try {
return JSON.parse(trimmed);
} catch {
// strip fenced block
const fence = trimmed.match(/```(?:json)?\s*([\s\S]*?)```/i);
if (fence?.[1]) {
try {
return JSON.parse(fence[1].trim());
} catch {
// fall through
}
}
const start = trimmed.search(/[{\[]/);
if (start < 0) return undefined;
const slice = trimmed.slice(start);
try {
return JSON.parse(slice);
} catch {
return undefined;
}
}
}