[[bench]]
harness = false
name = "checkpoint_benchmarks"
path = "benches/checkpoint_benchmarks.rs"
[[bench]]
name = "cloning_performance"
path = "benches/cloning_performance.rs"
[[bench]]
harness = false
name = "execution_benchmarks"
path = "benches/execution_benchmarks.rs"
[[bench]]
harness = false
name = "git_operations_bench"
path = "benches/git_operations_bench.rs"
[[bench]]
harness = false
name = "mapreduce_benchmarks"
path = "benches/mapreduce_benchmarks.rs"
[[bench]]
harness = false
name = "memory_benchmarks"
path = "benches/memory_benchmarks.rs"
[[bench]]
name = "phase_execution_benchmarks"
path = "benches/phase_execution_benchmarks.rs"
[[bench]]
harness = false
name = "regression"
path = "benches/regression.rs"
[[bench]]
name = "semigroup_benchmarks"
path = "benches/semigroup_benchmarks.rs"
[[bench]]
harness = false
name = "storage_benchmarks"
path = "benches/storage_benchmarks.rs"
[[bench]]
name = "worktree_benchmarks"
path = "benches/worktree_benchmarks.rs"
[[bin]]
name = "prodigy"
path = "src/main.rs"
[build-dependencies.chrono]
version = "0.4"
[build-dependencies.clap]
features = ["derive"]
version = "4.5"
[build-dependencies.flate2]
version = "1.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
features = ["ws"]
version = "0.8"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.csv]
version = "1.4"
[dependencies.directories]
version = "6.0"
[dependencies.dirs]
version = "6.0.0"
[dependencies.flate2]
version = "1.0"
[dependencies.futures]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.git2]
version = "0.20"
[dependencies.glob]
version = "0.3"
[dependencies.hostname]
version = "0.4"
[dependencies.humantime-serde]
version = "1.1"
[dependencies.indicatif]
version = "0.18"
[dependencies.log]
version = "0.4"
[dependencies.lru]
version = "0.16"
[dependencies.lz4]
version = "1.28"
[dependencies.mime_guess]
version = "2.0"
[dependencies.nix]
features = ["signal", "process"]
version = "0.30"
[dependencies.notify]
version = "8.2"
[dependencies.once_cell]
version = "1.19"
[dependencies.premortem]
features = ["toml", "yaml", "derive"]
version = "0.6.1"
[dependencies.rand]
version = "0.9"
[dependencies.rayon]
version = "1.11.0"
[dependencies.regex]
version = "1.11"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.shell-words]
version = "1.1"
[dependencies.signal-hook]
version = "0.3"
[dependencies.stillwater]
features = ["async", "jitter"]
version = "0.13.0"
[dependencies.sysinfo]
version = "0.37.1"
[dependencies.tempfile]
version = "3.23"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["rt-multi-thread", "fs", "process", "time", "macros", "sync", "io-util", "io-std", "signal"]
version = "1.45"
[dependencies.tokio-stream]
version = "0.1"
[dependencies.toml]
version = "0.9"
[dependencies.tower-http]
features = ["cors"]
version = "0.6"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1.10"
[dependencies.walkdir]
version = "2.5"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
features = ["html_reports", "async_tokio"]
version = "0.8"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.proptest]
version = "1.9.0"
[dev-dependencies.serial_test]
version = "3.2.0"
[dev-dependencies.tempfile]
version = "3.23"
[features]
default = []
vendored-openssl = ["git2/vendored-openssl"]
[lib]
name = "prodigy"
path = "src/lib.rs"
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(never)"]
level = "warn"
priority = 0
[package]
authors = ["Glen Baker <iepathos@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["development-tools", "command-line-utilities"]
description = "Turn ad-hoc Claude sessions into reproducible development pipelines with parallel AI agents"
edition = "2021"
keywords = ["ai", "claude", "code-review", "automation", "development"]
license = "MIT"
name = "prodigy"
readme = "README.md"
repository = "https://github.com/iepathos/prodigy"
version = "0.4.4"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true
[[test]]
name = "agent_result_serialization_test"
path = "tests/agent_result_serialization_test.rs"
[[test]]
name = "checkpoint_interrupt_integration_test"
path = "tests/checkpoint_interrupt_integration_test.rs"
[[test]]
name = "checkpoint_resume_integration_test"
path = "tests/checkpoint_resume_integration_test.rs"
[[test]]
name = "claude_streaming_test"
path = "tests/claude_streaming_test.rs"
[[test]]
name = "cli_integration_tests"
path = "tests/cli_integration_tests.rs"
[[test]]
name = "concurrent_resume_test"
path = "tests/concurrent_resume_test.rs"
[[test]]
name = "dlq_agent_integration_test"
path = "tests/dlq_agent_integration_test.rs"
[[test]]
name = "documentation_gap_detection_test"
path = "tests/documentation_gap_detection_test.rs"
[[test]]
name = "effect_composition_integration_test"
path = "tests/effect_composition_integration_test.rs"
[[test]]
name = "environment_workflow_test"
path = "tests/environment_workflow_test.rs"
[[test]]
name = "error_context_preservation_test"
path = "tests/error_context_preservation_test.rs"
[[test]]
name = "error_handling_test"
path = "tests/error_handling_test.rs"
[[test]]
name = "formatting_consistency"
path = "tests/formatting_consistency.rs"
[[test]]
name = "io_separation_test"
path = "tests/io_separation_test.rs"
[[test]]
name = "mapreduce_command_input_test"
path = "tests/mapreduce_command_input_test.rs"
[[test]]
name = "mapreduce_commit_validation_integration_test"
path = "tests/mapreduce_commit_validation_integration_test.rs"
[[test]]
name = "mapreduce_env_execution_test"
path = "tests/mapreduce_env_execution_test.rs"
[[test]]
name = "mapreduce_env_integration_test"
path = "tests/mapreduce_env_integration_test.rs"
[[test]]
name = "mapreduce_phases_integration_test"
path = "tests/mapreduce_phases_integration_test.rs"
[[test]]
name = "mapreduce_resume_integration_test"
path = "tests/mapreduce_resume_integration_test.rs"
[[test]]
name = "mapreduce_worktree_architecture_integration_test"
path = "tests/mapreduce_worktree_architecture_integration_test.rs"
[[test]]
name = "memory_usage"
path = "tests/memory_usage.rs"
[[test]]
name = "merge_workflow_integration"
path = "tests/merge_workflow_integration.rs"
[[test]]
name = "pure_function_property_tests"
path = "tests/pure_function_property_tests.rs"
[[test]]
name = "resume_deduplication_integration_test"
path = "tests/resume_deduplication_integration_test.rs"
[[test]]
name = "resume_dlq_lock_integration_test"
path = "tests/resume_dlq_lock_integration_test.rs"
[[test]]
name = "resume_executor_test"
path = "tests/resume_executor_test.rs"
[[test]]
name = "setup_worktree_isolation_test"
path = "tests/setup_worktree_isolation_test.rs"
[[test]]
name = "timeout_integration_test"
path = "tests/timeout_integration_test.rs"
[[test]]
name = "workflow_composition_test"
path = "tests/workflow_composition_test.rs"
[[test]]
name = "workflow_execution_baseline"
path = "tests/workflow_execution_baseline.rs"
[[test]]
name = "workflow_failed_resume_integration_test"
path = "tests/workflow_failed_resume_integration_test.rs"
[[test]]
name = "workflow_failed_resume_test"
path = "tests/workflow_failed_resume_test.rs"
[[test]]
name = "workflow_failure_resume_e2e_test"
path = "tests/workflow_failure_resume_e2e_test.rs"
[[test]]
name = "worktree_cleanup_integration"
path = "tests/worktree_cleanup_integration.rs"
[[test]]
name = "write_file_integration_test"
path = "tests/write_file_integration_test.rs"