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
14
# Example: Standard sequential workflow
# This demonstrates a simple workflow with multiple steps
- shell: echo "Starting code analysis..."
- shell: find . -name "*.rs" -type f | wc -l | xargs -I {} echo "Found {} Rust files"
- shell: echo "Running cargo check..."
- shell: cargo check --quiet 2>&1 || echo "Check completed"
- shell: echo "Checking documentation..."
- shell: |
    if [ -f README.md ]; then
      echo "README.md exists"
    else
      echo "README.md not found"
    fi
- shell: echo "Workflow complete"