@keystrokehq/keystroke 0.1.20 → 0.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/agent.cjs +72 -54
  2. package/dist/agent.cjs.map +1 -1
  3. package/dist/agent.d.cts +2 -2
  4. package/dist/agent.d.mts +2 -2
  5. package/dist/agent.mjs +71 -52
  6. package/dist/agent.mjs.map +1 -1
  7. package/dist/config.d.cts +3 -1
  8. package/dist/config.d.cts.map +1 -1
  9. package/dist/config.d.mts +3 -1
  10. package/dist/config.d.mts.map +1 -1
  11. package/dist/{dist-KpQEao0i.mjs → dist-B1Pjv-cM.mjs} +666 -21
  12. package/dist/dist-B1Pjv-cM.mjs.map +1 -0
  13. package/dist/{dist-BFCT4aiu.cjs → dist-D69ocJ7u.cjs} +728 -23
  14. package/dist/dist-D69ocJ7u.cjs.map +1 -0
  15. package/dist/{index-Dlu1kaci.d.cts → index-BQOZkLWG.d.cts} +10 -34
  16. package/dist/index-BQOZkLWG.d.cts.map +1 -0
  17. package/dist/{index-I9DneAMW.d.mts → index-CGf1NwA4.d.mts} +10 -34
  18. package/dist/index-CGf1NwA4.d.mts.map +1 -0
  19. package/dist/{index-BUYoOHa1.d.mts → index-WHR4qX4x.d.mts} +10 -3
  20. package/dist/index-WHR4qX4x.d.mts.map +1 -0
  21. package/dist/{index-Dzm0OSN4.d.cts → index-wpyFrBvl.d.cts} +10 -3
  22. package/dist/index-wpyFrBvl.d.cts.map +1 -0
  23. package/dist/{token-dA7JRmgB.cjs → token-DZEJHEnH.cjs} +2 -2
  24. package/dist/{token-dA7JRmgB.cjs.map → token-DZEJHEnH.cjs.map} +1 -1
  25. package/dist/{token-shJjdG3B.mjs → token-D_x8iwF8.mjs} +2 -2
  26. package/dist/{token-shJjdG3B.mjs.map → token-D_x8iwF8.mjs.map} +1 -1
  27. package/dist/trigger.cjs +1 -1
  28. package/dist/trigger.d.cts +2 -2
  29. package/dist/trigger.d.mts +2 -2
  30. package/dist/trigger.mjs +1 -1
  31. package/dist/workflow.cjs +3 -1
  32. package/dist/workflow.d.cts +2 -2
  33. package/dist/workflow.d.mts +2 -2
  34. package/dist/workflow.mjs +2 -2
  35. package/package.json +1 -1
  36. package/dist/dist-BFCT4aiu.cjs.map +0 -1
  37. package/dist/dist-BekOBuw8.cjs +0 -665
  38. package/dist/dist-BekOBuw8.cjs.map +0 -1
  39. package/dist/dist-C-1uJk5f.mjs +0 -612
  40. package/dist/dist-C-1uJk5f.mjs.map +0 -1
  41. package/dist/dist-KpQEao0i.mjs.map +0 -1
  42. package/dist/index-BUYoOHa1.d.mts.map +0 -1
  43. package/dist/index-Dlu1kaci.d.cts.map +0 -1
  44. package/dist/index-Dzm0OSN4.d.cts.map +0 -1
  45. package/dist/index-I9DneAMW.d.mts.map +0 -1
@@ -1,665 +0,0 @@
1
- const require_dist = require("./dist-BKL5duJl.cjs");
2
- const require_dist$1 = require("./dist-DqZUy3u_.cjs");
3
- const require_dist$2 = require("./dist-BFCT4aiu.cjs");
4
- let zod = require("zod");
5
- let node_async_hooks = require("node:async_hooks");
6
- //#region ../workflow/dist/index.mjs
7
- var RunCanceledError = class extends Error {
8
- constructor(runId) {
9
- super(runId ? `Workflow run ${runId} was canceled` : "Workflow run was canceled");
10
- this.name = "RunCanceledError";
11
- }
12
- };
13
- function isRunCanceledError(error) {
14
- return error instanceof RunCanceledError;
15
- }
16
- function executeWorkflowStep(state) {
17
- const handle = require_dist$1.getWorkflowRunHandle();
18
- if (!handle?.workflowRunner) throw new Error(`Workflow "${state.workflow.slug}" can only be called as a step inside a running workflow. Run it standalone with executeWorkflow(...).`);
19
- return handle.workflowRunner(state.workflow, state.input, { id: state.id });
20
- }
21
- function createWorkflowStepInvocation(state) {
22
- return {
23
- stepId(id) {
24
- return createWorkflowStepInvocation({
25
- ...state,
26
- id
27
- });
28
- },
29
- then(onfulfilled, onrejected) {
30
- return executeWorkflowStep(state).then(onfulfilled, onrejected);
31
- }
32
- };
33
- }
34
- const zodSchema = zod.z.custom((v) => v instanceof zod.z.ZodType, "must be a Zod schema");
35
- /** Runtime validation for an unbranded workflow definition. */
36
- const workflowCoreSchema = zod.z.object({
37
- slug: zod.z.string().trim().min(1),
38
- name: zod.z.string().optional(),
39
- description: zod.z.string().optional(),
40
- subscription: zod.z.object({ mode: zod.z.enum(["system", "subscribable"]).optional() }).optional(),
41
- input: zodSchema,
42
- output: zodSchema,
43
- run: zod.z.function()
44
- });
45
- const WORKFLOW = Symbol.for("keystroke.workflow");
46
- /**
47
- * Validates brand + shape via `workflowCoreSchema` so discovery and guards
48
- * reject malformed definitions.
49
- */
50
- function isWorkflow(value) {
51
- if (typeof value !== "object" || value === null) return false;
52
- if (!(WORKFLOW in value) || value[WORKFLOW] !== true) return false;
53
- return workflowCoreSchema.safeParse(value).success;
54
- }
55
- function defineWorkflow(def) {
56
- const result = workflowCoreSchema.safeParse(def);
57
- if (!result.success) throw new Error(`Invalid workflow definition: ${formatIssues(result.error.issues)}`);
58
- const body = def.run;
59
- const workflow = {
60
- ...result.data,
61
- [WORKFLOW]: true
62
- };
63
- workflow.run = ((input, ctx) => {
64
- if (ctx !== void 0) return body(input, ctx);
65
- return createWorkflowStepInvocation({
66
- workflow,
67
- input
68
- });
69
- });
70
- return workflow;
71
- }
72
- function formatIssues(issues) {
73
- return issues.map((issue) => {
74
- return `${issue.path.length > 0 ? `${issue.path.join(".")}: ` : ""}${issue.message}`;
75
- }).join("; ");
76
- }
77
- function serializeWorkflowError(error) {
78
- if (error instanceof Error) return {
79
- name: error.name,
80
- message: error.message
81
- };
82
- return { message: String(error) };
83
- }
84
- /** Rebuild an Error from a recorded error so replay re-raises the same failure. */
85
- function deserializeWorkflowError(data) {
86
- const serialized = data;
87
- const error = new Error(serialized?.message ?? "Workflow step failed");
88
- if (serialized?.name) error.name = serialized.name;
89
- return error;
90
- }
91
- const UNIT_MS = {
92
- ms: 1,
93
- s: 1e3,
94
- m: 6e4,
95
- h: 36e5,
96
- d: 864e5
97
- };
98
- /** Resolve a sleep duration to an absolute resume time. */
99
- function resolveResumeAt(duration, now = /* @__PURE__ */ new Date()) {
100
- if (duration instanceof Date) return duration;
101
- if (typeof duration === "number") return new Date(now.getTime() + Math.max(0, duration));
102
- return new Date(now.getTime() + parseDurationToMs(duration));
103
- }
104
- function parseDurationToMs(value) {
105
- const match = /^(\d+(?:\.\d+)?)\s*(ms|s|m|h|d)$/.exec(value.trim());
106
- if (!match) throw new Error(`Invalid sleep duration "${value}". Use a number of ms, a Date, or a string like "5s", "10m", "1h".`);
107
- const amount = Number(match[1]);
108
- const unit = match[2];
109
- return Math.round(amount * UNIT_MS[unit]);
110
- }
111
- /** Indexes replay events by correlationId for O(1) cache-hit checks during replay. */
112
- var EventsConsumer = class {
113
- byCorrelationId = /* @__PURE__ */ new Map();
114
- constructor(events) {
115
- for (const event of events) {
116
- if (!event.correlationId) continue;
117
- const list = this.byCorrelationId.get(event.correlationId);
118
- if (list) list.push(event);
119
- else this.byCorrelationId.set(event.correlationId, [event]);
120
- }
121
- }
122
- events(correlationId) {
123
- return this.byCorrelationId.get(correlationId) ?? [];
124
- }
125
- hasEventType(correlationId, type) {
126
- return this.events(correlationId).some((event) => event.type === type);
127
- }
128
- /**
129
- * Cache lookup for a step. Returns the recorded output on a `step_completed`,
130
- * re-raises the recorded error on a terminal `step_failed` (so a permanently
131
- * failed step is not re-executed), and otherwise reports a miss — including
132
- * when only `step_retrying` events exist (the step re-runs on the next pass).
133
- */
134
- getStepResult(correlationId) {
135
- const events = this.events(correlationId);
136
- const failed = events.find((event) => event.type === "step_failed");
137
- if (failed) throw deserializeWorkflowError(failed.data);
138
- const completed = events.find((event) => event.type === "step_completed");
139
- if (completed) return {
140
- completed: true,
141
- result: completed.data
142
- };
143
- return { completed: false };
144
- }
145
- /** Number of prior `step_retrying` events recorded for a step (= failed attempts so far). */
146
- countRetrying(correlationId) {
147
- return this.events(correlationId).filter((event) => event.type === "step_retrying").length;
148
- }
149
- isSleepCompleted(correlationId) {
150
- return this.hasEventType(correlationId, "sleep_completed");
151
- }
152
- /** Returns the persisted resumeAt for a scheduled-but-not-completed sleep, if any. */
153
- getSleepResumeAt(correlationId) {
154
- const scheduled = this.events(correlationId).find((event) => event.type === "sleep_scheduled");
155
- if (!scheduled) return;
156
- const data = scheduled.data;
157
- return data?.resumeAt ? new Date(data.resumeAt) : void 0;
158
- }
159
- getHookToken(correlationId) {
160
- return (this.events(correlationId).find((event) => event.type === "hook_created")?.data)?.token;
161
- }
162
- getHookResult(correlationId) {
163
- const resumed = this.events(correlationId).find((event) => event.type === "hook_resumed");
164
- if (!resumed) return { resolved: false };
165
- return {
166
- resolved: true,
167
- payload: resumed.data?.payload
168
- };
169
- }
170
- };
171
- /** A promise that never settles — returned by a suspending primitive so the body parks. */
172
- function createPendingPromise() {
173
- return new Promise(() => {});
174
- }
175
- /**
176
- * Collects pending items requested within a single tick and resolves once, so
177
- * parallel suspensions (e.g. Promise.all of two sleeps) batch into one suspension.
178
- */
179
- var SuspensionCoordinator = class {
180
- items = /* @__PURE__ */ new Map();
181
- scheduled = false;
182
- resolve;
183
- promise;
184
- constructor() {
185
- this.promise = new Promise((resolve) => {
186
- this.resolve = resolve;
187
- });
188
- }
189
- request(item) {
190
- this.items.set(item.correlationId, item);
191
- if (!this.scheduled) {
192
- this.scheduled = true;
193
- queueMicrotask(() => {
194
- this.resolve([...this.items.values()]);
195
- });
196
- }
197
- }
198
- waitForSuspension() {
199
- return this.promise;
200
- }
201
- };
202
- function createReplayState(params) {
203
- return {
204
- runId: params.runId,
205
- consumer: params.consumer,
206
- coordinator: params.coordinator,
207
- eventLog: params.eventLog,
208
- newEvents: [],
209
- now: params.now ?? /* @__PURE__ */ new Date(),
210
- hookBaseUrl: params.hookBaseUrl,
211
- sleepCounter: 0,
212
- hookCounter: 0,
213
- stepOccurrences: /* @__PURE__ */ new Map(),
214
- stepCorrelationIds: /* @__PURE__ */ new Set()
215
- };
216
- }
217
- /**
218
- * Allocate the correlation id for a step. An explicit `.stepId(x)` maps to
219
- * `step:x` (and must be unique within a run); otherwise the key is
220
- * `step:<actionKey>#<occurrence>` so that two calls to the same action get
221
- * distinct, replay-stable ids and inserting an unrelated call never shifts the
222
- * ids of later calls (unlike a single global ordinal).
223
- */
224
- function nextStepCorrelationId(state, actionKey, explicitId) {
225
- if (explicitId !== void 0) {
226
- const correlationId = `step:${explicitId}`;
227
- if (state.stepCorrelationIds.has(correlationId)) throw new Error(`Duplicate step id "${explicitId}" in workflow run ${state.runId}`);
228
- state.stepCorrelationIds.add(correlationId);
229
- return correlationId;
230
- }
231
- const occurrence = state.stepOccurrences.get(actionKey) ?? 0;
232
- state.stepOccurrences.set(actionKey, occurrence + 1);
233
- const correlationId = `step:${actionKey}#${occurrence}`;
234
- state.stepCorrelationIds.add(correlationId);
235
- return correlationId;
236
- }
237
- function createSleep(state) {
238
- return function sleep(duration) {
239
- const correlationId = `sleep#${state.sleepCounter++}`;
240
- if (state.consumer.isSleepCompleted(correlationId)) return Promise.resolve();
241
- const scheduledResumeAt = state.consumer.getSleepResumeAt(correlationId);
242
- const resumeAt = scheduledResumeAt ?? resolveResumeAt(duration, state.now);
243
- if (scheduledResumeAt && resumeAt.getTime() <= state.now.getTime()) {
244
- state.newEvents.push({
245
- id: `sleep_completed:${state.runId}:${correlationId}`,
246
- runId: state.runId,
247
- type: "sleep_completed",
248
- correlationId
249
- });
250
- return Promise.resolve();
251
- }
252
- if (!scheduledResumeAt) state.newEvents.push({
253
- id: `sleep_scheduled:${state.runId}:${correlationId}`,
254
- runId: state.runId,
255
- type: "sleep_scheduled",
256
- correlationId,
257
- data: { resumeAt: resumeAt.toISOString() }
258
- });
259
- state.coordinator.request({
260
- kind: "sleep",
261
- correlationId,
262
- resumeAt
263
- });
264
- return createPendingPromise();
265
- };
266
- }
267
- function createHook(state) {
268
- return function hook(options) {
269
- const correlationId = `hook#${state.hookCounter++}`;
270
- const token = options?.token ?? state.consumer.getHookToken(correlationId) ?? `hook_${crypto.randomUUID()}`;
271
- const resumeUrl = state.hookBaseUrl ? `${state.hookBaseUrl}/hooks/${token}/resume` : `/hooks/${token}/resume`;
272
- const schema = options?.schema ? zod.z.toJSONSchema(options.schema) : void 0;
273
- return {
274
- token,
275
- resumeUrl,
276
- then(onFulfilled, onRejected) {
277
- const result = state.consumer.getHookResult(correlationId);
278
- if (result.resolved) {
279
- const payload = options?.schema ? options.schema.parse(result.payload) : result.payload;
280
- return Promise.resolve(payload).then(onFulfilled, onRejected);
281
- }
282
- if (!state.consumer.hasEventType(correlationId, "hook_created")) state.newEvents.push({
283
- id: `hook_created:${state.runId}:${correlationId}`,
284
- runId: state.runId,
285
- type: "hook_created",
286
- correlationId,
287
- data: schema ? {
288
- token,
289
- schema
290
- } : { token }
291
- });
292
- state.coordinator.request({
293
- kind: "hook",
294
- correlationId,
295
- token,
296
- ...schema ? { schema } : {}
297
- });
298
- return createPendingPromise().then(onFulfilled, onRejected);
299
- }
300
- };
301
- };
302
- }
303
- /**
304
- * Shared durable-step shell: resolve a stable `correlation_id`, short-circuit
305
- * from the event log on a cache hit, otherwise execute and append
306
- * `step_completed` immediately (per-step crash durability). A thrown step
307
- * appends `step_retrying` (non-fatal, re-run on the next attempt) and
308
- * rethrows; the terminal `step_failed` is written by the job handler once the
309
- * queue exhausts retries.
310
- */
311
- async function runDurableStep(state, options) {
312
- const { runId, consumer, eventLog } = state;
313
- require_dist$1.getRunSignal().throwIfAborted();
314
- const correlationId = nextStepCorrelationId(state, options.key, options.id);
315
- const cached = consumer.getStepResult(correlationId);
316
- const metadata = {
317
- runId,
318
- [options.metadataKey]: options.key,
319
- correlationId
320
- };
321
- if (cached.completed) {
322
- await require_dist$2.withSpan({
323
- kind: options.kind,
324
- name: options.key,
325
- refId: `${runId}:${correlationId}`,
326
- metadata: {
327
- ...metadata,
328
- replayed: true
329
- }
330
- }, async () => {
331
- await require_dist$2.logSystem("info", options.replayMessage, metadata);
332
- });
333
- return options.parseCached ? options.parseCached(cached.result) : cached.result;
334
- }
335
- return require_dist$2.withSpan({
336
- kind: options.kind,
337
- name: options.key,
338
- refId: `${runId}:${correlationId}`,
339
- metadata
340
- }, async () => require_dist$2.captureConsole(async () => {
341
- try {
342
- const result = await options.execute(correlationId);
343
- await eventLog.append({
344
- id: `step_completed:${runId}:${correlationId}`,
345
- runId,
346
- type: "step_completed",
347
- correlationId,
348
- data: result
349
- });
350
- return result;
351
- } catch (error) {
352
- const attempt = consumer.countRetrying(correlationId);
353
- await eventLog.append({
354
- id: `step_retrying:${runId}:${correlationId}:${attempt}`,
355
- runId,
356
- type: "step_retrying",
357
- correlationId,
358
- data: serializeWorkflowError(error)
359
- });
360
- state.failedCorrelationId = correlationId;
361
- throw error;
362
- }
363
- }));
364
- }
365
- function withCredentialScopeOverride(requirements, scope) {
366
- if (!requirements || !scope) return requirements;
367
- return require_dist.normalizeCredentialList(requirements).map((requirement) => ({
368
- ...requirement,
369
- scope
370
- }));
371
- }
372
- /** Builds the per-run action runner; durability lives in {@link runDurableStep}. */
373
- function createActionRunner(state, options = {}) {
374
- return (action, input, runOptions) => runDurableStep(state, {
375
- kind: "action",
376
- key: action.slug,
377
- id: runOptions?.id,
378
- metadataKey: "actionKey",
379
- replayMessage: "action replayed from checkpoint",
380
- parseCached: (cached) => action.output.parse(cached),
381
- execute: async (correlationId) => {
382
- const requirements = withCredentialScopeOverride(require_dist$1.getActionCredentialRequirements(action), runOptions?.credentialScope);
383
- const credentials = requirements?.length ? await require_dist$2.resolveActionCredentials(requirements, {
384
- resolveCredentials: options.resolveCredentials,
385
- context: options.credentialContext,
386
- oauthAdapter: options.oauthAdapter,
387
- consumer: {
388
- kind: "action",
389
- name: action.slug,
390
- id: correlationId
391
- }
392
- }) : {};
393
- return require_dist$1.runWithMcpCredentialContext({
394
- ...options.mcpCredentialContext,
395
- consumerId: correlationId
396
- }, () => require_dist$1.executeAction(action, input, credentials));
397
- }
398
- });
399
- }
400
- /**
401
- * Builds the per-run agent runner: each `agent.prompt()` in a workflow body
402
- * becomes a durable step keyed `step:<agentKey>#<occurrence>` (same scheme as
403
- * actions). The actual prompt execution is delegated to `runAgent`, supplied
404
- * by the host (server) via `executeWorkflow({ runAgent })`.
405
- */
406
- function createAgentStepRunner(state, runAgent) {
407
- return (agent, input, options) => {
408
- const slug = agent.slug;
409
- return runDurableStep(state, {
410
- kind: "agent_session",
411
- key: slug,
412
- id: options?.id,
413
- metadataKey: "agentKey",
414
- replayMessage: "agent step replayed from checkpoint",
415
- execute: (_correlationId) => runAgent(agent, input, options?.runPrompt)
416
- });
417
- };
418
- }
419
- /**
420
- * Builds the per-run LLM runner: each `promptLlm()` in a workflow body becomes a
421
- * durable step keyed `step:promptLlm#<occurrence>`. The actual LLM call is
422
- * delegated to `runLlm`, supplied by the host (server) via `executeWorkflow({ runLlm })`.
423
- */
424
- function createLlmStepRunner(state, runLlm) {
425
- return (opts) => runDurableStep(state, {
426
- kind: "llm",
427
- key: "promptLlm",
428
- id: opts.stepId,
429
- metadataKey: "llmKey",
430
- replayMessage: "llm step replayed from checkpoint",
431
- parseCached: (cached) => opts.outputSchema ? opts.outputSchema.parse(cached) : cached,
432
- execute: (_correlationId) => runLlm(opts)
433
- });
434
- }
435
- /**
436
- * Builds the per-run sub-workflow runner: each `workflow.run(input)` inside a
437
- * workflow body becomes a durable step keyed `step:<slug>#<occurrence>`. The
438
- * sub-workflow's body runs inline in the same replay state (its action/agent/
439
- * LLM steps and `ctx.sleep`/`ctx.hook` stay durable), and its validated output
440
- * is checkpointed so a replay skips the whole sub-workflow once it completes.
441
- */
442
- function createWorkflowStepRunner(state, ctx) {
443
- return (workflowUnknown, input, options) => {
444
- const workflow = workflowUnknown;
445
- const parsedInput = workflow.input.parse(input);
446
- return runDurableStep(state, {
447
- kind: "workflow_run",
448
- key: workflow.slug,
449
- id: options?.id,
450
- metadataKey: "workflowKey",
451
- replayMessage: "workflow step replayed from checkpoint",
452
- parseCached: (cached) => workflow.output.parse(cached),
453
- execute: async () => {
454
- const output = await workflow.run(parsedInput, ctx);
455
- return workflow.output.parse(output);
456
- }
457
- });
458
- };
459
- }
460
- const storage = new node_async_hooks.AsyncLocalStorage();
461
- require_dist$1.registerWorkflowRunGetter(() => {
462
- const store = storage.getStore();
463
- if (!store) return;
464
- return {
465
- actionRunner: store.actionRunner,
466
- agentRunner: store.agentRunner,
467
- llmRunner: store.llmRunner,
468
- workflowRunner: store.workflowRunner
469
- };
470
- });
471
- function runWithWorkflowContext(store, fn) {
472
- return storage.run(store, fn);
473
- }
474
- /** In-memory durable log for inline execution and tests. */
475
- var MemoryEventLog = class {
476
- events = [];
477
- ids = /* @__PURE__ */ new Set();
478
- async append(event) {
479
- const id = event.id ?? crypto.randomUUID();
480
- if (this.ids.has(id)) return false;
481
- this.ids.add(id);
482
- this.events.push({
483
- id,
484
- runId: event.runId,
485
- seq: this.events.length,
486
- type: event.type,
487
- correlationId: event.correlationId ?? null,
488
- data: event.data ?? null
489
- });
490
- return true;
491
- }
492
- async listReplay(runId) {
493
- return this.events.filter((event) => event.runId === runId).map((event) => ({ ...event }));
494
- }
495
- };
496
- /**
497
- * The single way to run a workflow: replay its event log from the top, execute
498
- * un-cached primitives, and either complete/fail or suspend at the first
499
- * un-satisfied sleep/hook. New events (sleep_scheduled/sleep_completed/
500
- * hook_created/run_completed/run_failed) are flushed before returning.
501
- *
502
- * Durability comes entirely from the log — a suspended run resumes by calling
503
- * this again with the same `runId` and event log once the sleep is due or the
504
- * hook is resumed.
505
- */
506
- async function executeWorkflow(workflow, input, options = {}) {
507
- const runId = options.runId ?? crypto.randomUUID();
508
- const eventLog = options.eventLog ?? new MemoryEventLog();
509
- const signal = require_dist$1.getRunSignal();
510
- const consumer = new EventsConsumer(await eventLog.listReplay(runId));
511
- const coordinator = new SuspensionCoordinator();
512
- const state = createReplayState({
513
- runId,
514
- consumer,
515
- coordinator,
516
- eventLog,
517
- hookBaseUrl: options.hookBaseUrl,
518
- now: options.now
519
- });
520
- const actionRunner = createActionRunner(state, {
521
- resolveCredentials: options.resolveCredentials,
522
- credentialContext: options.credentialContext,
523
- oauthAdapter: options.oauthAdapter,
524
- mcpCredentialContext: { assignmentTarget: {
525
- type: "workflow",
526
- key: workflow.slug
527
- } }
528
- });
529
- const ctx = {
530
- runId,
531
- sleep: createSleep(state),
532
- hook: createHook(state),
533
- ...options.context
534
- };
535
- const agentRunner = options.runAgent ? createAgentStepRunner(state, options.runAgent) : void 0;
536
- const llmRunner = options.runLlm ? createLlmStepRunner(state, options.runLlm) : void 0;
537
- const workflowRunner = createWorkflowStepRunner(state, ctx);
538
- const validatedInput = workflow.input.parse(input);
539
- const bodyPromise = runWithWorkflowContext({
540
- actionRunner,
541
- agentRunner,
542
- llmRunner,
543
- workflowRunner,
544
- runId
545
- }, () => require_dist$2.captureConsole(async () => workflow.run(validatedInput, ctx)));
546
- let onAbort;
547
- const waitForAbort = signal.aborted ? Promise.resolve({ type: "canceled" }) : new Promise((resolve) => {
548
- onAbort = () => resolve({ type: "canceled" });
549
- signal.addEventListener("abort", onAbort, { once: true });
550
- });
551
- const outcome = await Promise.race([
552
- bodyPromise.then((output) => ({
553
- type: "done",
554
- output
555
- }), (error) => ({
556
- type: "error",
557
- error
558
- })),
559
- coordinator.waitForSuspension().then((items) => ({
560
- type: "suspended",
561
- items
562
- })),
563
- waitForAbort
564
- ]);
565
- if (onAbort) signal.removeEventListener("abort", onAbort);
566
- let result;
567
- if (outcome.type === "suspended") {
568
- bodyPromise.catch(() => {});
569
- result = {
570
- status: "suspended",
571
- items: outcome.items
572
- };
573
- } else if (outcome.type === "done") {
574
- const output = workflow.output.parse(outcome.output);
575
- state.newEvents.push({
576
- id: `run_completed:${runId}`,
577
- runId,
578
- type: "run_completed",
579
- data: { output }
580
- });
581
- result = {
582
- status: "completed",
583
- output
584
- };
585
- } else if (outcome.type === "canceled" || isRunCanceledError(outcome.error)) {
586
- bodyPromise.catch(() => {});
587
- state.newEvents.push({
588
- id: `run_canceled:${runId}`,
589
- runId,
590
- type: "run_canceled"
591
- });
592
- result = { status: "canceled" };
593
- } else result = {
594
- status: "failed",
595
- error: outcome.error,
596
- failedCorrelationId: state.failedCorrelationId
597
- };
598
- for (const event of state.newEvents) await eventLog.append(event);
599
- return result;
600
- }
601
- function promptLlm(prompt, opts) {
602
- const handle = require_dist$1.getWorkflowRunHandle();
603
- if (!handle?.llmRunner) throw new Error("promptLlm must run inside a workflow with an injected llm executor (executeWorkflow({ runLlm })).");
604
- return handle.llmRunner({
605
- prompt,
606
- ...opts
607
- });
608
- }
609
- //#endregion
610
- Object.defineProperty(exports, "MemoryEventLog", {
611
- enumerable: true,
612
- get: function() {
613
- return MemoryEventLog;
614
- }
615
- });
616
- Object.defineProperty(exports, "RunCanceledError", {
617
- enumerable: true,
618
- get: function() {
619
- return RunCanceledError;
620
- }
621
- });
622
- Object.defineProperty(exports, "defineWorkflow", {
623
- enumerable: true,
624
- get: function() {
625
- return defineWorkflow;
626
- }
627
- });
628
- Object.defineProperty(exports, "deserializeWorkflowError", {
629
- enumerable: true,
630
- get: function() {
631
- return deserializeWorkflowError;
632
- }
633
- });
634
- Object.defineProperty(exports, "executeWorkflow", {
635
- enumerable: true,
636
- get: function() {
637
- return executeWorkflow;
638
- }
639
- });
640
- Object.defineProperty(exports, "isRunCanceledError", {
641
- enumerable: true,
642
- get: function() {
643
- return isRunCanceledError;
644
- }
645
- });
646
- Object.defineProperty(exports, "isWorkflow", {
647
- enumerable: true,
648
- get: function() {
649
- return isWorkflow;
650
- }
651
- });
652
- Object.defineProperty(exports, "promptLlm", {
653
- enumerable: true,
654
- get: function() {
655
- return promptLlm;
656
- }
657
- });
658
- Object.defineProperty(exports, "serializeWorkflowError", {
659
- enumerable: true,
660
- get: function() {
661
- return serializeWorkflowError;
662
- }
663
- });
664
-
665
- //# sourceMappingURL=dist-BekOBuw8.cjs.map