Index
errors
¶
Error classification and handling.
Re-exports all public symbols for backward compatibility.
Classes¶
ErrorClassifier
¶
Classifies errors based on patterns and exit codes.
Pattern matching follows the approach from run-sheet-review.sh which checks output for rate limit indicators.
Initialize classifier with detection patterns.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rate_limit_patterns
|
list[str] | None
|
Regex patterns indicating rate limiting |
None
|
auth_patterns
|
list[str] | None
|
Regex patterns indicating auth failures |
None
|
network_patterns
|
list[str] | None
|
Regex patterns indicating network issues |
None
|
Source code in src/marianne/core/errors/classifier.py
Functions¶
parse_reset_time
¶
Parse reset time from message and return seconds until reset.
Supports patterns like: - "resets at 9pm" -> seconds until 9pm (or next day if past) - "resets at 21:00" -> seconds until 21:00 - "resets in 3 hours" -> 3 * 3600 seconds - "resets in 30 minutes" -> 30 * 60 seconds
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Error message that may contain reset time info. |
required |
Returns:
| Type | Description |
|---|---|
float | None
|
Seconds until reset, or None if no reset time found. |
float | None
|
Returns minimum of RESET_TIME_MINIMUM_WAIT_SECONDS to avoid immediate retries. |
Source code in src/marianne/core/errors/classifier.py
extract_rate_limit_wait
¶
Extract wait duration from rate limit error text.
Supports common patterns from Anthropic, Claude Code, and generic APIs: - "retry after N seconds/minutes/hours" - "try again in N seconds/minutes/hours" - "wait N seconds/minutes/hours" - "Retry-After: N" (header value) - "resets in N hours/minutes" (delegates to parse_reset_time)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Error message or combined stdout/stderr. |
required |
Returns:
| Type | Description |
|---|---|
float | None
|
Seconds to wait, clamped to [MIN, MAX], or None if no pattern matches. |
Source code in src/marianne/core/errors/classifier.py
classify
¶
classify(stdout='', stderr='', exit_code=None, exit_signal=None, exit_reason=None, exception=None, output_format=None)
Classify an error based on output, exit code, and signal.
Delegates to sub-classifiers in priority order: 1. Signal-based exits (_classify_signal) 2. Timeout exit reason 3. Pattern-matching on output (_classify_by_pattern) 4. Exit code analysis (_classify_by_exit_code) 5. Unknown fallback
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stdout
|
str
|
Standard output from the command |
''
|
stderr
|
str
|
Standard error from the command |
''
|
exit_code
|
int | None
|
Process exit code (0 = success), None if killed by signal |
None
|
exit_signal
|
int | None
|
Signal number if killed by signal |
None
|
exit_reason
|
ExitReason | None
|
Why execution ended (completed, timeout, killed, error) |
None
|
exception
|
Exception | None
|
Optional exception that was raised |
None
|
output_format
|
str | None
|
Backend output format ("text", "json", "stream-json"). When "text", exit code 1 is classified as E209 (validation) instead of E009 (unknown). |
None
|
Returns:
| Type | Description |
|---|---|
ClassifiedError
|
ClassifiedError with category, error_code, and metadata |
Source code in src/marianne/core/errors/classifier.py
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 | |
classify_execution
¶
classify_execution(stdout='', stderr='', exit_code=None, exit_signal=None, exit_reason=None, exception=None, output_format=None, *, input=None)
Classify execution errors using structured JSON parsing with fallback.
This is the new multi-error classification method that: 1. Parses structured JSON errors[] from CLI output (if present) 2. Classifies each error independently (no short-circuiting) 3. Analyzes exit code and signal for additional context 4. Selects root cause using priority-based scoring 5. Returns all errors with primary/secondary designation
This method returns ClassificationResult which provides access to
all detected errors while maintaining backward compatibility through
the primary attribute.
Supports two calling conventions
- Keyword args (legacy):
classify_execution(stdout=..., stderr=..., ...) - Bundled (preferred):
classify_execution(input=ClassificationInput(...))
When input is supplied, its fields take precedence over individual keyword arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stdout
|
str
|
Standard output from the command (may contain JSON). |
''
|
stderr
|
str
|
Standard error from the command. |
''
|
exit_code
|
int | None
|
Process exit code (0 = success), None if killed by signal. |
None
|
exit_signal
|
int | None
|
Signal number if killed by signal. |
None
|
exit_reason
|
ExitReason | None
|
Why execution ended (completed, timeout, killed, error). |
None
|
exception
|
Exception | None
|
Optional exception that was raised. |
None
|
output_format
|
str | None
|
Expected output format (e.g. "json"). |
None
|
input
|
ClassificationInput | None
|
Bundled classification input (preferred over individual kwargs). |
None
|
Returns:
| Type | Description |
|---|---|
ClassificationResult
|
ClassificationResult with primary error, secondary errors, and metadata. |
Example
result = classifier.classify_execution(stdout, stderr, exit_code)
# Access primary (root cause) error
if result.primary.category == ErrorCategory.RATE_LIMIT:
wait_time = result.primary.suggested_wait_seconds
# Access all errors for debugging
for error in result.all_errors:
logger.info(f"{error.error_code.value}: {error.message}")
Source code in src/marianne/core/errors/classifier.py
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 | |
from_config
classmethod
¶
ErrorCategory
¶
Bases: str, Enum
Categories of errors with different retry behaviors.
Attributes¶
RATE_LIMIT
class-attribute
instance-attribute
¶
Retriable with long wait - API/service is rate limiting.
TRANSIENT
class-attribute
instance-attribute
¶
Retriable with backoff - temporary network/service issues.
VALIDATION
class-attribute
instance-attribute
¶
Retriable - Claude ran but didn't produce expected output.
AUTH
class-attribute
instance-attribute
¶
Fatal - authentication/authorization failure, needs user intervention.
NETWORK
class-attribute
instance-attribute
¶
Retriable with backoff - network connectivity issues.
SIGNAL
class-attribute
instance-attribute
¶
Process killed by signal - may be retriable depending on signal.
CONFIGURATION
class-attribute
instance-attribute
¶
Non-retriable - configuration error needs user intervention (e.g., MCP setup).
PREFLIGHT
class-attribute
instance-attribute
¶
Pre-execution check failure — config or environment not ready.
ESCALATION
class-attribute
instance-attribute
¶
Escalation-based abort — grounding or escalation policy triggered.
ErrorCode
¶
Bases: str, Enum
Structured error codes for comprehensive error classification.
Error codes are organized by category using numeric prefixes: - E0xx: Execution errors (timeouts, crashes, kills) - E1xx: Rate limit / capacity errors - E2xx: Validation errors - E3xx: Configuration errors - E4xx: State errors - E5xx: Backend errors - E6xx: Preflight errors
Error codes are stable identifiers that can be used for: - Programmatic error handling and routing - Log aggregation and alerting - Documentation and troubleshooting guides - Metrics and observability dashboards
Attributes¶
EXECUTION_TIMEOUT
class-attribute
instance-attribute
¶
Command execution exceeded timeout limit.
EXECUTION_KILLED
class-attribute
instance-attribute
¶
Process was killed by a signal (external termination).
EXECUTION_CRASHED
class-attribute
instance-attribute
¶
Process crashed (segfault, bus error, abort, etc.).
EXECUTION_INTERRUPTED
class-attribute
instance-attribute
¶
Process was interrupted by user (SIGINT/Ctrl+C).
EXECUTION_OOM
class-attribute
instance-attribute
¶
Process was killed due to out of memory condition.
EXECUTION_STALE
class-attribute
instance-attribute
¶
Execution killed by stale detection — no output for too long.
EXECUTION_UNKNOWN
class-attribute
instance-attribute
¶
Unknown execution error with non-zero exit code.
RATE_LIMIT_API
class-attribute
instance-attribute
¶
API rate limit exceeded (429, quota, throttling).
RATE_LIMIT_CLI
class-attribute
instance-attribute
¶
CLI-level rate limiting detected.
CAPACITY_EXCEEDED
class-attribute
instance-attribute
¶
Service capacity exceeded (overloaded, try again later).
QUOTA_EXHAUSTED
class-attribute
instance-attribute
¶
Token/usage quota exhausted - wait until reset time.
VALIDATION_FILE_MISSING
class-attribute
instance-attribute
¶
Expected output file does not exist.
VALIDATION_CONTENT_MISMATCH
class-attribute
instance-attribute
¶
Output content does not match expected pattern.
VALIDATION_COMMAND_FAILED
class-attribute
instance-attribute
¶
Validation command returned non-zero exit code.
VALIDATION_TIMEOUT
class-attribute
instance-attribute
¶
Validation check timed out.
VALIDATION_GENERIC
class-attribute
instance-attribute
¶
Generic validation failure (output validation needed).
CONFIG_INVALID
class-attribute
instance-attribute
¶
Configuration file is malformed or invalid.
CONFIG_MISSING_FIELD
class-attribute
instance-attribute
¶
Required configuration field is missing.
CONFIG_PATH_NOT_FOUND
class-attribute
instance-attribute
¶
Configuration file path does not exist.
CONFIG_PARSE_ERROR
class-attribute
instance-attribute
¶
Failed to parse configuration file (YAML/JSON syntax error).
CONFIG_MCP_ERROR
class-attribute
instance-attribute
¶
MCP server/plugin configuration error (missing env vars, invalid config).
CONFIG_CLI_MODE_ERROR
class-attribute
instance-attribute
¶
Claude CLI mode mismatch (e.g., streaming mode incompatible with operation).
STATE_CORRUPTION
class-attribute
instance-attribute
¶
Checkpoint state file is corrupted or inconsistent.
STATE_LOAD_FAILED
class-attribute
instance-attribute
¶
Failed to load checkpoint state from storage.
STATE_SAVE_FAILED
class-attribute
instance-attribute
¶
Failed to save checkpoint state to storage.
STATE_VERSION_MISMATCH
class-attribute
instance-attribute
¶
Checkpoint state version is incompatible.
BACKEND_CONNECTION
class-attribute
instance-attribute
¶
Failed to connect to backend service.
BACKEND_AUTH
class-attribute
instance-attribute
¶
Backend authentication or authorization failed.
BACKEND_RESPONSE
class-attribute
instance-attribute
¶
Invalid or unexpected response from backend.
BACKEND_TIMEOUT
class-attribute
instance-attribute
¶
Backend request timed out.
BACKEND_NOT_FOUND
class-attribute
instance-attribute
¶
Backend executable or service not found.
PREFLIGHT_PATH_MISSING
class-attribute
instance-attribute
¶
Required path does not exist (working_dir, referenced file).
PREFLIGHT_PROMPT_TOO_LARGE
class-attribute
instance-attribute
¶
Prompt exceeds recommended token limit.
PREFLIGHT_WORKING_DIR_INVALID
class-attribute
instance-attribute
¶
Working directory is not accessible or not a directory.
PREFLIGHT_VALIDATION_SETUP
class-attribute
instance-attribute
¶
Validation target path or pattern is invalid.
NETWORK_CONNECTION_FAILED
class-attribute
instance-attribute
¶
Network connection failed (refused, reset, unreachable).
NETWORK_DNS_ERROR
class-attribute
instance-attribute
¶
DNS resolution failed.
NETWORK_SSL_ERROR
class-attribute
instance-attribute
¶
SSL/TLS handshake or certificate error.
NETWORK_TIMEOUT
class-attribute
instance-attribute
¶
Network operation timed out.
UNKNOWN
class-attribute
instance-attribute
¶
Unclassified error - requires investigation.
category
property
¶
Get the category prefix (first digit) of this error code.
Returns:
| Type | Description |
|---|---|
str
|
Category string like "execution", "rate_limit", "validation", etc. |
is_retriable
property
¶
Check if this error code is generally retriable.
Returns:
| Type | Description |
|---|---|
bool
|
True if errors with this code are typically retriable. |
Functions¶
get_retry_behavior
¶
Get precise retry behavior for this error code.
Returns error-code-specific delay and retry recommendations. Uses module-level _RETRY_BEHAVIORS constant to avoid rebuilding the lookup table on every call.
Returns:
| Type | Description |
|---|---|
RetryBehavior
|
RetryBehavior with delay, retriability, and reason. |
Source code in src/marianne/core/errors/codes.py
get_severity
¶
Get the severity level for this error code.
Severity assignments: - CRITICAL: Fatal errors requiring immediate attention - ERROR: Most error codes (default) - WARNING: Degraded but potentially temporary conditions - INFO: Reserved for future diagnostic codes
Returns:
| Type | Description |
|---|---|
Severity
|
Severity level for this error code. |
Source code in src/marianne/core/errors/codes.py
RetryBehavior
¶
Bases: NamedTuple
Precise retry behavior recommendation for a specific error code.
Unlike ErrorCategory which provides broad retry guidelines, RetryBehavior encodes error-code-specific knowledge about optimal retry strategies.
Attributes:
| Name | Type | Description |
|---|---|---|
delay_seconds |
float
|
Recommended delay before retrying (0 = no delay). |
is_retriable |
bool
|
Whether this error is generally retriable. |
reason |
str
|
Human-readable explanation for the retry behavior. |
RetryDelays
¶
Constants for retry delay durations.
Centralizes magic numbers for retry timing to ensure consistency across the codebase and make timing decisions discoverable.
These values represent standard delays for different error scenarios. Actual delays may be adjusted dynamically based on error context, parsed reset times, or learning from previous attempts.
Severity
¶
Bases: IntEnum
Severity levels for error classification.
Lower numeric value = higher severity. This allows comparisons like
if severity <= Severity.ERROR to check for serious issues.
Assignments: - CRITICAL: Job cannot continue, requires immediate attention (E003 crash, E005 OOM, E401 corruption, E502 auth, E505 binary not found) - ERROR: Operation failed, may be retriable (most error codes) - WARNING: Degraded operation, job may continue (E103 capacity, E204 validation timeout) - INFO: Informational, no action required (reserved for future diagnostic codes)
FatalError
¶
Bases: Exception
Non-recoverable error that should stop the job.
GracefulShutdownError
¶
Bases: Exception
Raised when Ctrl+C is pressed to trigger graceful shutdown.
This exception is caught by the runner to save state before exiting.
RateLimitExhaustedError
¶
Bases: FatalError
Rate limit or quota exhaustion — job should PAUSE, not FAIL.
Subclasses FatalError for backward compatibility: existing
except FatalError blocks still catch it, but more specific
except RateLimitExhaustedError blocks intercept first when
ordered before except FatalError.
Attributes:
| Name | Type | Description |
|---|---|---|
resume_after |
When the rate limit resets (ISO datetime), or None. |
|
backend_type |
Which backend hit the limit (e.g., "claude-cli"). |
|
quota_exhaustion |
True if daily/monthly quota is exhausted, False if it's a per-minute rate limit. |
Source code in src/marianne/core/errors/exceptions.py
ClassificationInput
dataclass
¶
ClassificationInput(stdout='', stderr='', exit_code=None, exit_signal=None, exit_reason=None, exception=None, output_format=None)
Bundled inputs for ErrorClassifier.classify_execution().
Groups the execution result fields that the classifier needs, reducing the
method's parameter count from 8 to 2 (self + input). Callers can
still pass individual keyword arguments for backward compatibility.
ClassificationResult
dataclass
¶
ClassificationResult(primary, secondary=list(), raw_errors=list(), confidence=1.0, classification_method='structured')
Complete classification result with root cause and context.
This is the new result type from the classifier, providing access
to all detected errors while maintaining backward compatibility
through the primary attribute.
Example:
# New code - returns ClassificationResult
classification = classifier.classify(stdout, stderr, exit_code)
result = classification.primary # Backward compatible
# Access all errors
for error in classification.all_errors:
log.info(f"Error: {error.error_code.value} - {error.message}")
Attributes:
| Name | Type | Description |
|---|---|---|
primary |
ClassifiedError
|
The identified root cause error. |
secondary |
list[ClassifiedError]
|
Secondary/symptom errors for debugging. |
raw_errors |
list[ParsedCliError]
|
Original parsed errors from CLI JSON. |
confidence |
float
|
0.0-1.0 confidence in root cause identification. |
classification_method |
str
|
How classification was done. |
Attributes¶
secondary
class-attribute
instance-attribute
¶
Secondary/symptom errors for debugging.
raw_errors
class-attribute
instance-attribute
¶
Original parsed errors from CLI JSON.
confidence
class-attribute
instance-attribute
¶
0.0-1.0 confidence in root cause identification.
classification_method
class-attribute
instance-attribute
¶
How classification was done: "structured", "exit_code", "regex_fallback".
should_retry
property
¶
Whether to retry based on primary error (backward compatibility).
Functions¶
to_error_chain
¶
Convert to ErrorChain for detailed analysis.
ClassifiedError
dataclass
¶
ClassifiedError(category, message, error_code=UNKNOWN, original_error=None, exit_code=None, exit_signal=None, exit_reason=None, retriable=True, suggested_wait_seconds=None, error_info=None)
An error with its classification and metadata.
ClassifiedError combines high-level category (for retry logic) with specific error codes (for diagnostics and logging). The error_code provides stable identifiers for programmatic handling while category determines retry behavior.
ErrorChain
dataclass
¶
Represents a chain of errors from symptom to root cause.
When multiple errors occur, this class helps identify the actual root cause vs symptoms. For example, if ENOENT and rate limit both appear, ENOENT is likely the root cause (missing binary prevents any operation).
Attributes:
| Name | Type | Description |
|---|---|---|
errors |
list[ClassifiedError]
|
All errors in order of detection (first = earliest). |
root_cause |
ClassifiedError
|
The error identified as the most fundamental cause. |
symptoms |
list[ClassifiedError]
|
Errors that are likely consequences of the root cause. |
confidence |
float
|
0.0-1.0 confidence in root cause identification. |
ErrorInfo
dataclass
¶
Machine-readable error identification (Google AIP-193 inspired).
Provides structured metadata for programmatic error handling.
Example:
error_info = ErrorInfo(
reason="BINARY_NOT_FOUND",
domain="marianne.backend.claude_cli",
metadata={
"expected_binary": "claude",
"search_path": "/usr/bin:/usr/local/bin",
"suggestion": "Ensure claude CLI is installed and in PATH",
}
)
Attributes:
| Name | Type | Description |
|---|---|---|
reason |
str
|
UPPER_SNAKE_CASE identifier for the specific error reason. |
domain |
str
|
Service/component identifier (e.g., "marianne.backend.claude_cli"). |
metadata |
dict[str, str]
|
Dynamic contextual information as key-value pairs. |
Attributes¶
reason
instance-attribute
¶
UPPER_SNAKE_CASE identifier for the specific error reason. Example: "RATE_LIMIT_EXCEEDED", "BINARY_NOT_FOUND"
domain
instance-attribute
¶
Service/component identifier. Example: "marianne.backend.claude_cli", "marianne.execution"
metadata
class-attribute
instance-attribute
¶
Dynamic contextual information. Example: {"binary_path": "/usr/bin/claude", "exit_code": "127"}
ParsedCliError
dataclass
¶
A single error extracted from CLI JSON output.
Claude CLI returns structured JSON with an errors[] array:
{
"result": "...",
"errors": [
{"type": "system", "message": "Rate limit exceeded"},
{"type": "user", "message": "spawn claude ENOENT"}
],
"cost_usd": 0.05
}
This dataclass represents one item from that array.
Attributes:
| Name | Type | Description |
|---|---|---|
error_type |
Literal['system', 'user', 'tool']
|
Error type from CLI: "system", "user", "tool". |
message |
str
|
Human-readable error message. |
tool_name |
str | None
|
For tool errors, the name of the failed tool. |
metadata |
dict[str, Any]
|
Additional structured metadata from the error. |
Functions¶
classify_single_json_error
¶
Classify a single error from the JSON errors[] array.
This function uses type-based classification first, then falls back to message pattern matching. The error type from CLI ("system", "user", "tool") guides initial classification.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
parsed_error
|
ParsedCliError
|
A ParsedCliError extracted from CLI JSON output. |
required |
exit_code
|
int | None
|
Optional exit code for context. |
None
|
exit_reason
|
ExitReason | None
|
Optional exit reason for context. |
None
|
Returns:
| Type | Description |
|---|---|
ClassifiedError
|
ClassifiedError with appropriate category and error code. |
Source code in src/marianne/core/errors/parsers.py
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 | |
select_root_cause
¶
Select the most likely root cause from multiple errors.
Uses priority-based scoring where lower score = more fundamental cause. Applies context modifiers for specific error combinations that commonly mask root causes.
Known masking patterns: - ENOENT masks everything (missing binary causes cascading failures) - Auth errors mask rate limits (can't hit rate limit if auth fails) - Network errors mask service errors (can't reach service to get errors) - Config errors mask execution errors (bad config causes execution failure) - Timeout masks completion (timed out = never got to complete)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
errors
|
list[ClassifiedError]
|
List of classified errors to analyze. |
required |
Returns:
| Type | Description |
|---|---|
ClassifiedError
|
Tuple of (root_cause, symptoms, confidence). |
list[ClassifiedError]
|
|
float
|
|
tuple[ClassifiedError, list[ClassifiedError], float]
|
|
Source code in src/marianne/core/errors/parsers.py
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 | |
try_parse_json_errors
¶
Extract errors[] array from JSON output.
Claude CLI returns structured JSON with an errors[] array:
{
"result": "...",
"errors": [
{"type": "system", "message": "Rate limit exceeded"},
{"type": "user", "message": "spawn claude ENOENT"}
],
"cost_usd": 0.05
}
This function parses that structure, handling: - Non-JSON preamble (CLI startup messages) - Multiple JSON objects (takes first valid one with errors[]) - JSON in stderr (some error modes write there) - Truncated JSON (tries to recover)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output
|
str
|
Raw stdout from Claude CLI execution. |
required |
stderr
|
str
|
Optional stderr output (some errors appear here). |
''
|
Returns:
| Type | Description |
|---|---|
list[ParsedCliError]
|
List of ParsedCliError objects, or empty list if parsing fails. |
Source code in src/marianne/core/errors/parsers.py
get_signal_name
¶
Get human-readable signal name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sig_num
|
int
|
The signal number (e.g., signal.SIGTERM) |
required |
Returns:
| Type | Description |
|---|---|
str
|
Human-readable signal name (e.g., "SIGTERM") or "signal N" if unknown |