prodigy 0.4.4

Turn ad-hoc Claude sessions into reproducible development pipelines with parallel AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Error handling with context preservation
//!
//! This module provides error context preservation using Stillwater's ContextError type.
//! It allows errors to accumulate context as they propagate up the call stack, providing
//! comprehensive debugging information.

pub mod ext;

#[cfg(test)]
mod tests;

pub use ext::{ContextResult, ResultExt};
pub use stillwater::ContextError;