-
-
Notifications
You must be signed in to change notification settings - Fork 371
Expand file tree
/
Copy pathworkflow-errors.ts
More file actions
383 lines (360 loc) · 9.38 KB
/
Copy pathworkflow-errors.ts
File metadata and controls
383 lines (360 loc) · 9.38 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
import { TaggedError } from "better-result";
import {
isAgentProviderError,
ProviderExecutionError,
ProviderUnavailableError,
type AgentProviderError,
} from "./local-agent-errors.js";
import type {
WorkflowErrorKind,
WorkflowRunStatus,
} from "./workflow-types.js";
/** Domain failures inside agent()/sandbox orchestration (throw, not Result). */
export class WorkflowEngineError extends Error {
constructor(
readonly kind:
| "cancelled"
| "provider_unavailable"
| "no_provider"
| "profile"
| "nest_depth"
| "call_limit"
| "worktree"
| "schema"
| "path"
| "result_too_large"
| "internal",
message: string,
) {
super(message);
this.name = "WorkflowEngineError";
}
}
export class InvalidWorkflowInputError extends TaggedError(
"InvalidWorkflowInputError",
)<{
code:
| "ambiguous_source"
| "missing_source"
| "invalid_name"
| "invalid_argument"
| "invalid_path";
message: string;
}>() {}
export class WorkflowFileNotFoundError extends TaggedError(
"WorkflowFileNotFoundError",
)<{
path: string;
message: string;
}>() {
constructor(path: string) {
super({ path, message: `Script file not found: ${path}` });
}
}
export class WorkflowFileReadError extends TaggedError(
"WorkflowFileReadError",
)<{
path: string;
cause: unknown;
message: string;
}>() {
constructor(path: string, cause: unknown) {
super({
path,
cause,
message: `Unable to read workflow script ${path}: ${errorMessage(cause)}`,
});
}
}
export class WorkflowFileWriteError extends TaggedError(
"WorkflowFileWriteError",
)<{
path: string;
cause: unknown;
message: string;
}>() {
constructor(path: string, cause: unknown) {
super({
path,
cause,
message: `Unable to persist workflow script ${path}: ${errorMessage(cause)}`,
});
}
}
export class NamedWorkflowNotFoundError extends TaggedError(
"NamedWorkflowNotFoundError",
)<{
name: string;
candidates: string[];
message: string;
}>() {
constructor(name: string, candidates: string[]) {
super({
name,
candidates,
message: `Named workflow not found: ${name}. Looked in ${candidates.join(", ")}`,
});
}
}
export class WorkflowNotFoundError extends TaggedError(
"WorkflowNotFoundError",
)<{
runId: string;
message: string;
}>() {
constructor(runId: string) {
super({ runId, message: `Unknown workflow run: ${runId}` });
}
}
export class InvalidRunTransitionError extends TaggedError(
"InvalidRunTransitionError",
)<{
runId: string;
from: WorkflowRunStatus;
operation: "claim" | "complete" | "fail" | "cancel" | "set_script_path";
message: string;
}>() {
constructor(input: {
runId: string;
from: WorkflowRunStatus;
operation: "claim" | "complete" | "fail" | "cancel" | "set_script_path";
}) {
super({
...input,
message: `Cannot ${input.operation} workflow run ${input.runId} in status ${input.from}`,
});
}
}
export class WorkflowStoreError extends TaggedError(
"WorkflowStoreError",
)<{
operation: string;
cause: unknown;
message: string;
}>() {
constructor(operation: string, cause: unknown) {
super({
operation,
cause,
message: `Workflow store ${operation} failed: ${errorMessage(cause)}`,
});
}
}
export class WorkflowStoredDataError extends TaggedError(
"WorkflowStoredDataError",
)<{
record: string;
cause: unknown;
message: string;
}>() {
constructor(record: string, cause: unknown) {
super({
record,
cause,
message: `Stored workflow data is invalid (${record}): ${errorMessage(cause)}`,
});
}
}
export class WorktreeOperationError extends TaggedError(
"WorktreeOperationError",
)<{
operation: "create" | "inspect" | "finalize" | "remove";
runId?: string;
callIndex?: number;
path?: string;
cause: unknown;
message: string;
}>() {
constructor(input: {
operation: "create" | "inspect" | "finalize" | "remove";
runId?: string;
callIndex?: number;
path?: string;
cause: unknown;
}) {
super({
...input,
message: `Workflow worktree ${input.operation} failed${input.path ? ` at ${input.path}` : ""}: ${errorMessage(input.cause)}`,
});
}
}
export interface SchemaIssue {
path: string;
message: string;
}
export class InvalidAgentJsonError extends TaggedError(
"InvalidAgentJsonError",
)<{
attempt: number;
mode: "native" | "prompt";
responseExcerpt: string;
message: string;
}>() {
constructor(input: {
attempt: number;
mode: "native" | "prompt";
responseExcerpt: string;
}) {
super({
...input,
message: `Agent response was not valid JSON on attempt ${input.attempt}`,
});
}
}
export class AgentSchemaValidationError extends TaggedError(
"AgentSchemaValidationError",
)<{
attempt: number;
mode: "native" | "prompt";
issues: SchemaIssue[];
message: string;
}>() {
constructor(input: {
attempt: number;
mode: "native" | "prompt";
issues: SchemaIssue[];
}) {
super({
...input,
message: `Agent response failed schema validation on attempt ${input.attempt}: ${input.issues.map((issue) => `${issue.path} ${issue.message}`).join("; ")}`,
});
}
}
export class SchemaConfigurationError extends TaggedError(
"SchemaConfigurationError",
)<{
cause: unknown;
message: string;
}>() {
constructor(cause: unknown) {
super({
cause,
message: `Unable to compile agent JSON Schema: ${errorMessage(cause)}`,
});
}
}
export type SchemaAttemptError = InvalidAgentJsonError | AgentSchemaValidationError;
export class SchemaRetriesExhaustedError extends TaggedError(
"SchemaRetriesExhaustedError",
)<{
attempts: number;
lastFailure: SchemaAttemptError;
message: string;
}>() {
constructor(attempts: number, lastFailure: SchemaAttemptError) {
super({
attempts,
lastFailure,
message: `Schema validation failed after ${attempts} attempts: ${lastFailure.message}`,
});
}
}
export type WorkflowOperationError =
| InvalidWorkflowInputError
| WorkflowFileNotFoundError
| WorkflowFileReadError
| WorkflowFileWriteError
| NamedWorkflowNotFoundError
| WorkflowNotFoundError
| InvalidRunTransitionError
| WorkflowStoreError
| WorkflowStoredDataError
| WorktreeOperationError
| InvalidAgentJsonError
| AgentSchemaValidationError
| SchemaConfigurationError
| SchemaRetriesExhaustedError
| AgentProviderError;
export function isWorkflowOperationError(error: unknown): error is WorkflowOperationError {
return (
InvalidWorkflowInputError.is(error) ||
WorkflowFileNotFoundError.is(error) ||
WorkflowFileReadError.is(error) ||
WorkflowFileWriteError.is(error) ||
NamedWorkflowNotFoundError.is(error) ||
WorkflowNotFoundError.is(error) ||
InvalidRunTransitionError.is(error) ||
WorkflowStoreError.is(error) ||
WorkflowStoredDataError.is(error) ||
WorktreeOperationError.is(error) ||
InvalidAgentJsonError.is(error) ||
AgentSchemaValidationError.is(error) ||
SchemaConfigurationError.is(error) ||
SchemaRetriesExhaustedError.is(error) ||
isAgentProviderError(error)
);
}
export function workflowErrorKind(error: WorkflowOperationError): WorkflowErrorKind {
switch (error._tag) {
case "InvalidWorkflowInputError":
case "WorkflowFileNotFoundError":
case "WorkflowFileReadError":
case "WorkflowFileWriteError":
case "NamedWorkflowNotFoundError":
return "path";
case "WorkflowNotFoundError":
case "InvalidRunTransitionError":
case "WorkflowStoreError":
case "WorkflowStoredDataError":
return "internal";
case "WorktreeOperationError":
return "worktree";
case "InvalidAgentJsonError":
case "AgentSchemaValidationError":
case "SchemaConfigurationError":
case "SchemaRetriesExhaustedError":
case "ProviderSchemaUnsupportedError":
return "schema";
case "ProviderCancelledError":
return "cancelled";
case "ProviderUnavailableError":
return "provider_unavailable";
case "ProviderExecutionError":
return "provider";
}
}
export function workflowCliExitCode(error: WorkflowOperationError): number {
switch (error._tag) {
case "InvalidWorkflowInputError":
return 2;
case "WorkflowFileNotFoundError":
case "NamedWorkflowNotFoundError":
case "WorkflowNotFoundError":
return 3;
case "ProviderUnavailableError":
return 4;
case "ProviderCancelledError":
return 130;
case "InvalidAgentJsonError":
case "AgentSchemaValidationError":
case "SchemaConfigurationError":
case "SchemaRetriesExhaustedError":
case "ProviderSchemaUnsupportedError":
return 5;
case "WorkflowFileReadError":
case "WorkflowFileWriteError":
case "InvalidRunTransitionError":
case "WorkflowStoreError":
case "WorkflowStoredDataError":
case "WorktreeOperationError":
case "ProviderExecutionError":
return 1;
}
}
export function serializeWorkflowError(error: WorkflowOperationError): {
code: WorkflowOperationError["_tag"];
message: string;
kind: WorkflowErrorKind;
retryable: boolean;
} {
return {
code: error._tag,
message: error.message,
kind: workflowErrorKind(error),
retryable:
ProviderExecutionError.is(error) ? error.retryable : ProviderUnavailableError.is(error),
};
}
function errorMessage(error: unknown): string {
return error instanceof Error ? error.message : String(error);
}