@a5c-ai/babysitter-sdk 0.0.169 → 0.0.170-staging.00aac85c
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.
- package/dist/cli/commands/configure.d.ts +124 -0
- package/dist/cli/commands/configure.d.ts.map +1 -0
- package/dist/cli/commands/configure.js +514 -0
- package/dist/cli/commands/health.d.ts +89 -0
- package/dist/cli/commands/health.d.ts.map +1 -0
- package/dist/cli/commands/health.js +579 -0
- package/dist/cli/commands/hookLog.d.ts +15 -0
- package/dist/cli/commands/hookLog.d.ts.map +1 -0
- package/dist/cli/commands/hookLog.js +286 -0
- package/dist/cli/commands/hookRun.d.ts +20 -0
- package/dist/cli/commands/hookRun.d.ts.map +1 -0
- package/dist/cli/commands/hookRun.js +544 -0
- package/dist/cli/commands/runExecuteTasks.d.ts +42 -0
- package/dist/cli/commands/runExecuteTasks.d.ts.map +1 -0
- package/dist/cli/commands/runExecuteTasks.js +377 -0
- package/dist/cli/commands/runIterate.d.ts +5 -1
- package/dist/cli/commands/runIterate.d.ts.map +1 -1
- package/dist/cli/commands/runIterate.js +75 -6
- package/dist/cli/commands/session.d.ts +97 -0
- package/dist/cli/commands/session.d.ts.map +1 -0
- package/dist/cli/commands/session.js +922 -0
- package/dist/cli/commands/skill.d.ts +87 -0
- package/dist/cli/commands/skill.d.ts.map +1 -0
- package/dist/cli/commands/skill.js +869 -0
- package/dist/cli/completionProof.d.ts +4 -0
- package/dist/cli/completionProof.d.ts.map +1 -0
- package/dist/cli/{completionSecret.js → completionProof.js} +7 -7
- package/dist/cli/main.d.ts +14 -0
- package/dist/cli/main.d.ts.map +1 -1
- package/dist/cli/main.js +649 -16
- package/dist/config/defaults.d.ts +165 -0
- package/dist/config/defaults.d.ts.map +1 -0
- package/dist/config/defaults.js +281 -0
- package/dist/config/index.d.ts +25 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +35 -0
- package/dist/hooks/dispatcher.d.ts.map +1 -1
- package/dist/hooks/dispatcher.js +2 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/runtime/constants.d.ts +1 -1
- package/dist/runtime/constants.d.ts.map +1 -1
- package/dist/runtime/createRun.d.ts.map +1 -1
- package/dist/runtime/createRun.js +7 -3
- package/dist/runtime/exceptions.d.ts +186 -3
- package/dist/runtime/exceptions.d.ts.map +1 -1
- package/dist/runtime/exceptions.js +416 -15
- package/dist/runtime/types.d.ts +1 -0
- package/dist/runtime/types.d.ts.map +1 -1
- package/dist/session/index.d.ts +9 -0
- package/dist/session/index.d.ts.map +1 -0
- package/dist/session/index.js +30 -0
- package/dist/session/parse.d.ts +45 -0
- package/dist/session/parse.d.ts.map +1 -0
- package/dist/session/parse.js +159 -0
- package/dist/session/types.d.ts +194 -0
- package/dist/session/types.d.ts.map +1 -0
- package/dist/session/types.js +45 -0
- package/dist/session/write.d.ts +50 -0
- package/dist/session/write.d.ts.map +1 -0
- package/dist/session/write.js +196 -0
- package/dist/storage/createRunDir.d.ts.map +1 -1
- package/dist/storage/createRunDir.js +1 -0
- package/dist/storage/paths.d.ts +5 -1
- package/dist/storage/paths.d.ts.map +1 -1
- package/dist/storage/paths.js +6 -1
- package/dist/storage/types.d.ts +3 -1
- package/dist/storage/types.d.ts.map +1 -1
- package/dist/tasks/kinds/index.d.ts.map +1 -1
- package/dist/tasks/kinds/index.js +6 -1
- package/dist/testing/runHarness.d.ts.map +1 -1
- package/dist/testing/runHarness.js +5 -1
- package/package.json +1 -2
- package/dist/cli/completionSecret.d.ts +0 -4
- package/dist/cli/completionSecret.d.ts.map +0 -1
|
@@ -1,15 +1,158 @@
|
|
|
1
1
|
import { EffectAction, SerializedEffectError } from "./types";
|
|
2
2
|
import { type ParallelBatch } from "../tasks/batching";
|
|
3
|
+
/**
|
|
4
|
+
* Error category enum for classifying errors by their source and type.
|
|
5
|
+
* This helps users understand the nature of errors and how to address them.
|
|
6
|
+
*/
|
|
7
|
+
export declare enum ErrorCategory {
|
|
8
|
+
/** Configuration errors - issues with settings, environment, or setup */
|
|
9
|
+
Configuration = "CONFIGURATION",
|
|
10
|
+
/** Validation errors - input data or parameter validation failures */
|
|
11
|
+
Validation = "VALIDATION",
|
|
12
|
+
/** Runtime errors - errors during execution of processes or tasks */
|
|
13
|
+
Runtime = "RUNTIME",
|
|
14
|
+
/** External errors - failures from external services, APIs, or dependencies */
|
|
15
|
+
External = "EXTERNAL",
|
|
16
|
+
/** Internal errors - unexpected internal failures, bugs, or invariant violations */
|
|
17
|
+
Internal = "INTERNAL"
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Human-readable descriptions for each error category
|
|
21
|
+
*/
|
|
22
|
+
export declare const ERROR_CATEGORY_DESCRIPTIONS: Record<ErrorCategory, string>;
|
|
23
|
+
/**
|
|
24
|
+
* Context variables that can be interpolated into error templates
|
|
25
|
+
*/
|
|
26
|
+
export interface ErrorTemplateContext {
|
|
27
|
+
[key: string]: string | number | boolean | undefined | null;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Error template definition with message pattern and default context
|
|
31
|
+
*/
|
|
32
|
+
export interface ErrorTemplate {
|
|
33
|
+
/** Template string with {{variable}} placeholders */
|
|
34
|
+
pattern: string;
|
|
35
|
+
/** Error category for this template */
|
|
36
|
+
category: ErrorCategory;
|
|
37
|
+
/** Default next steps for this error type */
|
|
38
|
+
defaultNextSteps?: string[];
|
|
39
|
+
/** Default suggestions for this error type */
|
|
40
|
+
defaultSuggestions?: string[];
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Built-in error templates for common error scenarios
|
|
44
|
+
*/
|
|
45
|
+
export declare const ERROR_TEMPLATES: {
|
|
46
|
+
readonly MISSING_REQUIRED_FLAG: {
|
|
47
|
+
readonly pattern: "Missing required flag: {{flag}}";
|
|
48
|
+
readonly category: ErrorCategory.Validation;
|
|
49
|
+
readonly defaultNextSteps: ["Add the missing flag to your command", "Run with --help to see all available options"];
|
|
50
|
+
};
|
|
51
|
+
readonly INVALID_FLAG_VALUE: {
|
|
52
|
+
readonly pattern: "Invalid value for {{flag}}: {{value}}. Expected {{expected}}";
|
|
53
|
+
readonly category: ErrorCategory.Validation;
|
|
54
|
+
readonly defaultNextSteps: ["Check the expected format for this flag", "Run with --help for usage information"];
|
|
55
|
+
};
|
|
56
|
+
readonly FILE_NOT_FOUND: {
|
|
57
|
+
readonly pattern: "File not found: {{path}}";
|
|
58
|
+
readonly category: ErrorCategory.Configuration;
|
|
59
|
+
readonly defaultNextSteps: ["Verify the file path is correct", "Check that the file exists and is readable"];
|
|
60
|
+
};
|
|
61
|
+
readonly PROCESS_NOT_FOUND: {
|
|
62
|
+
readonly pattern: "Process entry file not found: {{path}}";
|
|
63
|
+
readonly category: ErrorCategory.Configuration;
|
|
64
|
+
readonly defaultNextSteps: ["Ensure the path is correct and points to a valid JS/TS module", "Check that the file has been compiled if using TypeScript"];
|
|
65
|
+
};
|
|
66
|
+
readonly EXPORT_NOT_FOUND: {
|
|
67
|
+
readonly pattern: "Process module {{path}} does not export '{{exportName}}'";
|
|
68
|
+
readonly category: ErrorCategory.Configuration;
|
|
69
|
+
readonly defaultNextSteps: ["Check available exports in your module", "Use --entry {{path}}#default for default export"];
|
|
70
|
+
readonly defaultSuggestions: ["Did you mean to use a different export name?"];
|
|
71
|
+
};
|
|
72
|
+
readonly EFFECT_NOT_FOUND: {
|
|
73
|
+
readonly pattern: "Effect {{effectId}} not found at {{runDir}}";
|
|
74
|
+
readonly category: ErrorCategory.Validation;
|
|
75
|
+
readonly defaultNextSteps: ["Verify the effect ID is correct", "Run task:list to see available effects"];
|
|
76
|
+
};
|
|
77
|
+
readonly EFFECT_WRONG_STATUS: {
|
|
78
|
+
readonly pattern: "Effect {{effectId}} is not {{expectedStatus}} (current status={{actualStatus}})";
|
|
79
|
+
readonly category: ErrorCategory.Validation;
|
|
80
|
+
readonly defaultNextSteps: ["Check the current effect status with task:show", "Ensure you're operating on the correct effect"];
|
|
81
|
+
};
|
|
82
|
+
readonly RUN_NOT_FOUND: {
|
|
83
|
+
readonly pattern: "Run directory not found: {{runDir}}";
|
|
84
|
+
readonly category: ErrorCategory.Configuration;
|
|
85
|
+
readonly defaultNextSteps: ["Verify the run directory path", "Ensure the run has been created with run:create"];
|
|
86
|
+
};
|
|
87
|
+
readonly JSON_PARSE_ERROR: {
|
|
88
|
+
readonly pattern: "Failed to parse {{file}} as JSON: {{error}}";
|
|
89
|
+
readonly category: ErrorCategory.Validation;
|
|
90
|
+
readonly defaultNextSteps: ["Check that the file contains valid JSON", "Validate JSON syntax with a linter"];
|
|
91
|
+
};
|
|
92
|
+
readonly MISSING_PROCESS_CONTEXT: {
|
|
93
|
+
readonly pattern: "No active process context found on the current async call stack";
|
|
94
|
+
readonly category: ErrorCategory.Runtime;
|
|
95
|
+
readonly defaultNextSteps: ["Ensure you are calling this from within a babysitter process function", "Check that async context is properly maintained"];
|
|
96
|
+
};
|
|
97
|
+
readonly INVOCATION_COLLISION: {
|
|
98
|
+
readonly pattern: "Invocation key {{invocationKey}} is already in use within this run";
|
|
99
|
+
readonly category: ErrorCategory.Runtime;
|
|
100
|
+
readonly defaultNextSteps: ["Ensure unique invocation keys for each task invocation", "Check for duplicate task calls in your process"];
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
export type ErrorTemplateKey = keyof typeof ERROR_TEMPLATES;
|
|
104
|
+
/**
|
|
105
|
+
* Interpolates context variables into a template pattern
|
|
106
|
+
*/
|
|
107
|
+
export declare function interpolateTemplate(pattern: string, context: ErrorTemplateContext): string;
|
|
108
|
+
/**
|
|
109
|
+
* Creates an error message from a template and context
|
|
110
|
+
*/
|
|
111
|
+
export declare function createErrorMessage(templateKey: ErrorTemplateKey, context: ErrorTemplateContext): string;
|
|
112
|
+
/**
|
|
113
|
+
* Suggests corrections for a potentially misspelled command
|
|
114
|
+
*/
|
|
115
|
+
export declare function suggestCommand(input: string): string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* Suggests corrections for a potentially misspelled flag
|
|
118
|
+
*/
|
|
119
|
+
export declare function suggestFlag(input: string): string | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* Generic suggestion helper that finds the closest match from a list
|
|
122
|
+
*/
|
|
123
|
+
export declare function suggestFix(input: string, validOptions: string[], maxDistance?: number): string | undefined;
|
|
3
124
|
export interface BabysitterErrorDetails {
|
|
4
125
|
[key: string]: unknown;
|
|
5
126
|
}
|
|
127
|
+
/**
|
|
128
|
+
* Extended error options including category and suggestions
|
|
129
|
+
*/
|
|
130
|
+
export interface BabysitterErrorOptions {
|
|
131
|
+
/** Error category for classification */
|
|
132
|
+
category?: ErrorCategory;
|
|
133
|
+
/** Suggested fixes or "did you mean" hints */
|
|
134
|
+
suggestions?: string[];
|
|
135
|
+
/** Actionable next steps for the user */
|
|
136
|
+
nextSteps?: string[];
|
|
137
|
+
/** Additional context details */
|
|
138
|
+
details?: BabysitterErrorDetails;
|
|
139
|
+
/** The original error if this wraps another error */
|
|
140
|
+
cause?: Error;
|
|
141
|
+
}
|
|
6
142
|
export declare class BabysitterRuntimeError extends Error {
|
|
7
143
|
readonly details?: BabysitterErrorDetails;
|
|
8
|
-
|
|
144
|
+
readonly category: ErrorCategory;
|
|
145
|
+
readonly suggestions: string[];
|
|
146
|
+
readonly nextSteps: string[];
|
|
147
|
+
constructor(name: string, message: string, options?: BabysitterErrorOptions | BabysitterErrorDetails);
|
|
148
|
+
/**
|
|
149
|
+
* Creates an error from a template
|
|
150
|
+
*/
|
|
151
|
+
static fromTemplate(name: string, templateKey: ErrorTemplateKey, context: ErrorTemplateContext, additionalOptions?: Partial<BabysitterErrorOptions>): BabysitterRuntimeError;
|
|
9
152
|
}
|
|
10
153
|
export declare class BabysitterIntrinsicError extends BabysitterRuntimeError {
|
|
11
154
|
readonly isIntrinsic = true;
|
|
12
|
-
constructor(name: string, message: string,
|
|
155
|
+
constructor(name: string, message: string, options?: BabysitterErrorOptions | BabysitterErrorDetails);
|
|
13
156
|
}
|
|
14
157
|
export declare class EffectRequestedError extends BabysitterIntrinsicError {
|
|
15
158
|
readonly action: EffectAction;
|
|
@@ -29,7 +172,7 @@ export declare class InvocationCollisionError extends BabysitterRuntimeError {
|
|
|
29
172
|
constructor(invocationKey: string);
|
|
30
173
|
}
|
|
31
174
|
export declare class RunFailedError extends BabysitterRuntimeError {
|
|
32
|
-
constructor(message: string,
|
|
175
|
+
constructor(message: string, options?: BabysitterErrorOptions | BabysitterErrorDetails);
|
|
33
176
|
}
|
|
34
177
|
export declare class MissingProcessContextError extends BabysitterRuntimeError {
|
|
35
178
|
constructor();
|
|
@@ -40,6 +183,46 @@ export declare class InvalidTaskDefinitionError extends BabysitterRuntimeError {
|
|
|
40
183
|
export declare class InvalidSleepTargetError extends BabysitterRuntimeError {
|
|
41
184
|
constructor(value: string | number);
|
|
42
185
|
}
|
|
186
|
+
/**
|
|
187
|
+
* Options for formatting errors
|
|
188
|
+
*/
|
|
189
|
+
export interface FormatErrorOptions {
|
|
190
|
+
/** Whether to include ANSI color codes */
|
|
191
|
+
colors?: boolean;
|
|
192
|
+
/** Whether to include the stack trace */
|
|
193
|
+
includeStack?: boolean;
|
|
194
|
+
/** Prefix for the error output */
|
|
195
|
+
prefix?: string;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Formats an error with full context including category, suggestions, and next steps
|
|
199
|
+
*/
|
|
200
|
+
export declare function formatErrorWithContext(error: Error, options?: FormatErrorOptions): string;
|
|
201
|
+
/**
|
|
202
|
+
* Formats next steps as a bulleted list
|
|
203
|
+
*/
|
|
204
|
+
export declare function formatNextSteps(nextSteps: string[], options?: {
|
|
205
|
+
prefix?: string;
|
|
206
|
+
colors?: boolean;
|
|
207
|
+
}): string;
|
|
208
|
+
/**
|
|
209
|
+
* Structured error output for JSON formatting
|
|
210
|
+
*/
|
|
211
|
+
export interface StructuredError {
|
|
212
|
+
name: string;
|
|
213
|
+
message: string;
|
|
214
|
+
category: ErrorCategory;
|
|
215
|
+
categoryDescription: string;
|
|
216
|
+
suggestions: string[];
|
|
217
|
+
nextSteps: string[];
|
|
218
|
+
details?: BabysitterErrorDetails;
|
|
219
|
+
stack?: string;
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* Converts an error to a structured JSON-serializable format
|
|
223
|
+
*/
|
|
224
|
+
export declare function toStructuredError(error: Error, includeStack?: boolean): StructuredError;
|
|
43
225
|
export declare function isIntrinsicError(error: unknown): error is BabysitterIntrinsicError;
|
|
226
|
+
export declare function isBabysitterError(error: unknown): error is BabysitterRuntimeError;
|
|
44
227
|
export declare function rehydrateSerializedError(data?: SerializedEffectError): Error;
|
|
45
228
|
//# sourceMappingURL=exceptions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exceptions.d.ts","sourceRoot":"","sources":["../../src/runtime/exceptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAC9D,OAAO,EAA4B,KAAK,aAAa,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"exceptions.d.ts","sourceRoot":"","sources":["../../src/runtime/exceptions.ts"],"names":[],"mappings":"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"}
|