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
//! # Prodigy
//!
//! A dead simple Rust CLI tool that makes your code better through Claude CLI integration.
//!
//! ## Usage
//!
//! ```bash
//! prodigy cook [--focus "area"] [-n iterations] [--map "pattern"] [--args "value"]
//! ```
//!
//! ## Modules
//!
//! - `abstractions` - Trait-based abstractions for external dependencies (git, Claude CLI)
//! - `commands` - Modular command handler architecture for extensible workflow commands
//! - `config` - Configuration management for the tool
//! - `cook` - Core cooking command implementation with mapping support
//! - `core` - Pure business logic functions without I/O operations
//! - `effects` - Effect-based operations for composable I/O
//! - `env` - Environment abstraction layer for dependency injection and testing
//! - `git` - Granular, testable git operations layer
//! - `init` - Initialize Prodigy commands in projects
//! - `storage` - Global storage management for events, DLQ, and job state
//! - `subprocess` - Unified subprocess abstraction layer for testing
//! - `worktree` - Git worktree management for parallel sessions
//! - `unified_session` - Unified session management with event-driven architecture
//! - `testing` - Testing utilities and fixtures for comprehensive testing
// Re-export core error types for library consumers
pub use ;
/// Standard result type for library operations
pub type LibResult<T> = ;