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
use serde::{Deserialize, Serialize};

/// Summary of a cooking session
///
/// Tracks the progress and results of a single `prodigy cook` run.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SessionSummary {
    pub iterations: usize,
    pub files_changed: usize,
}