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
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
//! YAML workflow validator to check format and suggest improvements

use anyhow::{Context, Result};
use serde_yaml::Value;
use std::fs;
use std::path::Path;

pub struct YamlValidator {
    check_simplified: bool,
}

#[derive(Debug)]
pub struct ValidationResult {
    pub is_valid: bool,
    pub issues: Vec<String>,
    pub suggestions: Vec<String>,
}

impl YamlValidator {
    pub fn new(check_simplified: bool) -> Self {
        Self { check_simplified }
    }

    /// Validate a YAML workflow file
    pub fn validate_file(&self, path: &Path) -> Result<ValidationResult> {
        // Read the file
        let content = fs::read_to_string(path)
            .with_context(|| format!("Failed to read file: {}", path.display()))?;

        // Parse YAML
        let yaml: Value = serde_yaml::from_str(&content)
            .with_context(|| format!("Failed to parse YAML: {}", path.display()))?;

        let mut issues = Vec::new();
        let mut suggestions = Vec::new();

        // Check if it's a MapReduce workflow
        if let Value::Mapping(ref root) = yaml {
            if let Some(Value::String(mode)) = root.get("mode") {
                if mode == "mapreduce" {
                    self.validate_mapreduce_workflow(root, &mut issues, &mut suggestions)?;
                }
            }
        }

        // Check if it's a regular workflow
        if let Value::Sequence(ref steps) = yaml {
            self.validate_regular_workflow(steps, &mut issues, &mut suggestions)?;
        }

        let is_valid = issues.is_empty();

        Ok(ValidationResult {
            is_valid,
            issues,
            suggestions,
        })
    }

    /// Validate required fields in map section
    fn validate_map_section(map: &serde_yaml::Mapping) -> Result<Vec<String>> {
        let mut issues = Vec::new();

        if !map.contains_key("input") {
            issues.push("Map section missing required field 'input'".to_string());
        }
        if !map.contains_key("json_path") {
            issues.push("Map section missing required field 'json_path'".to_string());
        }

        Ok(issues)
    }

    /// Validate agent_template structure and syntax
    /// Returns (issues, suggestions)
    fn validate_agent_template(
        template: &Value,
        check_simplified: bool,
    ) -> Result<(Vec<String>, Vec<String>)> {
        let mut issues = Vec::new();
        let mut suggestions = Vec::new();

        if check_simplified {
            match template {
                Value::Sequence(_) => {
                    // Good - simplified syntax
                }
                Value::Mapping(template_map) => {
                    if template_map.contains_key("commands") {
                        issues.push("MapReduce workflow uses nested 'commands' syntax. Use simplified syntax with commands directly under 'agent_template'".to_string());
                        suggestions.push("Run 'prodigy migrate-yaml' to automatically convert to simplified syntax".to_string());
                    }
                }
                _ => {
                    issues.push("Invalid agent_template structure".to_string());
                }
            }
        }

        Ok((issues, suggestions))
    }

    /// Check for deprecated parameters in map section
    fn check_deprecated_map_params(map: &serde_yaml::Mapping) -> (Vec<String>, Vec<String>) {
        let mut issues = Vec::new();
        let mut suggestions = Vec::new();

        if map.contains_key("timeout_per_agent") {
            issues.push(
                "Error: Deprecated parameter 'timeout_per_agent' is no longer supported"
                    .to_string(),
            );
            suggestions.push("Remove 'timeout_per_agent' from your workflow file. See MIGRATION.md for updated syntax.".to_string());
        }
        if map.contains_key("retry_on_failure") {
            issues.push(
                "Error: Deprecated parameter 'retry_on_failure' is no longer supported".to_string(),
            );
            suggestions.push("Remove 'retry_on_failure' from your workflow file. See MIGRATION.md for updated syntax.".to_string());
        }

        (issues, suggestions)
    }

    /// Validate reduce section structure and syntax
    /// Returns (issues, suggestions)
    fn validate_reduce_section(
        reduce: &Value,
        check_simplified: bool,
    ) -> (Vec<String>, Vec<String>) {
        let mut issues = Vec::new();
        let mut suggestions = Vec::new();

        if check_simplified {
            match reduce {
                Value::Sequence(_) => {
                    // Good - simplified syntax
                }
                Value::Mapping(reduce_map) => {
                    if reduce_map.contains_key("commands") {
                        issues.push("Reduce section uses nested 'commands' syntax. Use simplified syntax with commands directly under 'reduce'".to_string());
                        suggestions.push("Run 'prodigy migrate-yaml' to automatically convert to simplified syntax".to_string());
                    }
                }
                _ => {
                    issues.push("Invalid reduce structure".to_string());
                }
            }
        }

        (issues, suggestions)
    }

    /// Validate required top-level fields
    fn validate_required_fields(workflow: &serde_yaml::Mapping) -> Vec<String> {
        let mut issues = Vec::new();

        if !workflow.contains_key("name") {
            issues.push("Missing required field 'name'".to_string());
        }

        issues
    }

    /// Validate MapReduce workflow structure
    fn validate_mapreduce_workflow(
        &self,
        workflow: &serde_yaml::Mapping,
        issues: &mut Vec<String>,
        suggestions: &mut Vec<String>,
    ) -> Result<()> {
        // Check for required fields
        let mut required_field_issues = Self::validate_required_fields(workflow);
        issues.append(&mut required_field_issues);

        // Check map section
        if let Some(Value::Mapping(map)) = workflow.get("map") {
            let mut map_issues = Self::validate_map_section(map)?;
            issues.append(&mut map_issues);

            if let Some(agent_template) = map.get("agent_template") {
                let (mut template_issues, mut template_suggestions) =
                    Self::validate_agent_template(agent_template, self.check_simplified)?;
                issues.append(&mut template_issues);
                suggestions.append(&mut template_suggestions);
            } else {
                issues.push("Map section missing required field 'agent_template'".to_string());
            }

            let (mut deprecated_issues, mut deprecated_suggestions) =
                Self::check_deprecated_map_params(map);
            issues.append(&mut deprecated_issues);
            suggestions.append(&mut deprecated_suggestions);
        } else {
            issues.push("Missing required 'map' section for MapReduce workflow".to_string());
        }

        // Check reduce section
        if let Some(reduce) = workflow.get("reduce") {
            let (mut reduce_issues, mut reduce_suggestions) =
                Self::validate_reduce_section(reduce, self.check_simplified);
            issues.append(&mut reduce_issues);
            suggestions.append(&mut reduce_suggestions);
        }

        // Check for common issues in command definitions
        self.check_commands_recursive(&Value::Mapping(workflow.clone()), issues, suggestions)?;

        Ok(())
    }

    /// Validate regular workflow structure
    fn validate_regular_workflow(
        &self,
        steps: &[Value],
        issues: &mut Vec<String>,
        suggestions: &mut Vec<String>,
    ) -> Result<()> {
        if steps.is_empty() {
            issues.push("Workflow has no steps defined".to_string());
        }

        for (idx, step) in steps.iter().enumerate() {
            if let Value::Mapping(step_map) = step {
                // Check for command type
                let has_command = step_map.contains_key("claude")
                    || step_map.contains_key("shell")
                    || step_map.contains_key("test")
                    || step_map.contains_key("analyze");

                if !has_command {
                    issues.push(format!("Step {} has no command defined", idx + 1));
                }

                // Check for deprecated 'test' command
                if step_map.contains_key("test") {
                    issues.push(format!(
                        "Step {} uses deprecated 'test' command type",
                        idx + 1
                    ));
                    suggestions.push("Replace 'test:' with 'shell:' for test commands".to_string());
                }
            } else {
                issues.push(format!("Step {} is not a valid mapping", idx + 1));
            }
        }

        Ok(())
    }

    /// Recursively check commands for issues
    fn check_commands_recursive(
        &self,
        value: &Value,
        issues: &mut Vec<String>,
        suggestions: &mut Vec<String>,
    ) -> Result<()> {
        Self::check_commands_recursive_impl(value, issues, suggestions)
    }

    fn check_commands_recursive_impl(
        value: &Value,
        issues: &mut Vec<String>,
        suggestions: &mut Vec<String>,
    ) -> Result<()> {
        match value {
            Value::Mapping(map) => {
                // Check for on_failure with deprecated parameters
                if let Some(Value::Mapping(on_failure)) = map.get("on_failure") {
                    if on_failure.contains_key("max_attempts") {
                        issues.push("Error: Deprecated parameter 'max_attempts' in on_failure is no longer supported".to_string());
                        suggestions.push("Remove 'max_attempts' from on_failure. See MIGRATION.md for updated syntax.".to_string());
                    }
                    if on_failure.contains_key("fail_workflow") {
                        issues.push("Error: Deprecated parameter 'fail_workflow' in on_failure is no longer supported".to_string());
                        suggestions.push("Remove 'fail_workflow' from on_failure. See MIGRATION.md for updated syntax.".to_string());
                    }
                }

                // Recurse into all values
                for (_key, val) in map.iter() {
                    Self::check_commands_recursive_impl(val, issues, suggestions)?;
                }
            }
            Value::Sequence(seq) => {
                // Recurse into all items
                for item in seq.iter() {
                    Self::check_commands_recursive_impl(item, issues, suggestions)?;
                }
            }
            _ => {}
        }
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::fs;
    use tempfile::NamedTempFile;

    /// Helper function to create a temp file with YAML content
    fn create_temp_yaml(content: &str) -> Result<NamedTempFile> {
        let temp_file = NamedTempFile::new()?;
        fs::write(temp_file.path(), content)?;
        Ok(temp_file)
    }

    #[test]
    fn test_validator_creation() {
        let validator = YamlValidator::new(true);
        assert!(validator.check_simplified);

        let validator = YamlValidator::new(false);
        assert!(!validator.check_simplified);
    }

    #[test]
    fn test_missing_name_field() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Missing required field 'name'")));

        Ok(())
    }

    #[test]
    fn test_missing_map_section() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Missing required 'map' section")));

        Ok(())
    }

    #[test]
    fn test_missing_input_field() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Map section missing required field 'input'")));

        Ok(())
    }

    #[test]
    fn test_missing_json_path_field() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  agent_template:
    - claude: "/process ${item}"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Map section missing required field 'json_path'")));

        Ok(())
    }

    #[test]
    fn test_missing_agent_template_field() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Map section missing required field 'agent_template'")));

        Ok(())
    }

    #[test]
    fn test_simplified_syntax_agent_template_valid() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"
    - shell: "echo done"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(result.is_valid);
        assert!(result.issues.is_empty());

        Ok(())
    }

    #[test]
    fn test_nested_commands_syntax_in_agent_template() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    commands:
      - claude: "/process ${item}"
      - shell: "echo done"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("nested 'commands' syntax")));
        assert!(result
            .suggestions
            .iter()
            .any(|s| s.contains("prodigy migrate-yaml")));

        Ok(())
    }

    #[test]
    fn test_invalid_agent_template_structure() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template: "invalid string"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Invalid agent_template structure")));

        Ok(())
    }

    #[test]
    fn test_deprecated_timeout_per_agent() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"
  timeout_per_agent: 300
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Deprecated parameter 'timeout_per_agent'")));
        assert!(result
            .suggestions
            .iter()
            .any(|s| s.contains("Remove 'timeout_per_agent'")));

        Ok(())
    }

    #[test]
    fn test_deprecated_retry_on_failure() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"
  retry_on_failure: true
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Deprecated parameter 'retry_on_failure'")));
        assert!(result
            .suggestions
            .iter()
            .any(|s| s.contains("Remove 'retry_on_failure'")));

        Ok(())
    }

    #[test]
    fn test_simplified_reduce_syntax_valid() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"

reduce:
  - claude: "/summarize ${map.results}"
  - shell: "echo complete"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(result.is_valid);
        assert!(result.issues.is_empty());

        Ok(())
    }

    #[test]
    fn test_nested_commands_syntax_in_reduce() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"

reduce:
  commands:
    - claude: "/summarize ${map.results}"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Reduce section uses nested 'commands' syntax")));
        assert!(result
            .suggestions
            .iter()
            .any(|s| s.contains("prodigy migrate-yaml")));

        Ok(())
    }

    #[test]
    fn test_invalid_reduce_structure() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"

reduce: "invalid string"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Invalid reduce structure")));

        Ok(())
    }

    #[test]
    fn test_valid_mapreduce_workflow() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"
    - shell: "test ${item.path}"

reduce:
  - claude: "/summarize ${map.results}"
  - shell: "echo 'Complete'"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(result.is_valid);
        assert!(result.issues.is_empty());

        Ok(())
    }

    #[test]
    fn test_check_simplified_false_skips_syntax_checks() -> Result<()> {
        let validator = YamlValidator::new(false);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    commands:
      - claude: "/process ${item}"

reduce:
  commands:
    - claude: "/summarize ${map.results}"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        // Should be valid when check_simplified is false
        assert!(result.is_valid);
        assert!(result.issues.is_empty());

        Ok(())
    }

    #[test]
    fn test_deprecated_on_failure_max_attempts() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"
      on_failure:
        max_attempts: 3
        claude: "/fix ${item}"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Deprecated parameter 'max_attempts' in on_failure")));

        Ok(())
    }

    #[test]
    fn test_deprecated_on_failure_fail_workflow() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
name: test-workflow
mode: mapreduce

map:
  input: "items.json"
  json_path: "$.items[*]"
  agent_template:
    - claude: "/process ${item}"
      on_failure:
        fail_workflow: true
        claude: "/fix ${item}"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result
            .issues
            .iter()
            .any(|i| i.contains("Deprecated parameter 'fail_workflow' in on_failure")));

        Ok(())
    }

    #[test]
    fn test_regular_workflow_validation() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"
- claude: "/command one"
- shell: "echo hello"
"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(result.is_valid);
        assert!(result.issues.is_empty());

        Ok(())
    }

    #[test]
    fn test_regular_workflow_empty_steps() -> Result<()> {
        let validator = YamlValidator::new(true);

        let yaml_content = r#"[]"#;

        let temp_file = create_temp_yaml(yaml_content)?;
        let result = validator.validate_file(temp_file.path())?;

        assert!(!result.is_valid);
        assert!(result.issues.iter().any(|i| i.contains("no steps defined")));

        Ok(())
    }

    // Tests for extracted functions

    #[test]
    fn test_validate_map_section_all_fields_present() -> Result<()> {
        let yaml_content = r#"
input: "items.json"
json_path: "$.items[*]"
agent_template:
  - claude: "/test"
"#;
        let map: serde_yaml::Mapping = serde_yaml::from_str(yaml_content)?;
        let issues = YamlValidator::validate_map_section(&map)?;
        assert!(issues.is_empty());
        Ok(())
    }

    #[test]
    fn test_validate_map_section_missing_input() -> Result<()> {
        let yaml_content = r#"
json_path: "$.items[*]"
agent_template:
  - claude: "/test"
"#;
        let map: serde_yaml::Mapping = serde_yaml::from_str(yaml_content)?;
        let issues = YamlValidator::validate_map_section(&map)?;
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("missing required field 'input'"));
        Ok(())
    }

    #[test]
    fn test_validate_map_section_missing_json_path() -> Result<()> {
        let yaml_content = r#"
input: "items.json"
agent_template:
  - claude: "/test"
"#;
        let map: serde_yaml::Mapping = serde_yaml::from_str(yaml_content)?;
        let issues = YamlValidator::validate_map_section(&map)?;
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("missing required field 'json_path'"));
        Ok(())
    }

    #[test]
    fn test_validate_agent_template_simplified_valid() -> Result<()> {
        let yaml_content = r#"
- claude: "/test"
- shell: "echo done"
"#;
        let template: Value = serde_yaml::from_str(yaml_content)?;
        let (issues, suggestions) = YamlValidator::validate_agent_template(&template, true)?;
        assert!(issues.is_empty());
        assert!(suggestions.is_empty());
        Ok(())
    }

    #[test]
    fn test_validate_agent_template_nested_commands() -> Result<()> {
        let yaml_content = r#"
commands:
  - claude: "/test"
"#;
        let template: Value = serde_yaml::from_str(yaml_content)?;
        let (issues, suggestions) = YamlValidator::validate_agent_template(&template, true)?;
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("nested 'commands' syntax"));
        assert_eq!(suggestions.len(), 1);
        assert!(suggestions[0].contains("prodigy migrate-yaml"));
        Ok(())
    }

    #[test]
    fn test_validate_agent_template_invalid_structure() -> Result<()> {
        let template = Value::String("invalid".to_string());
        let (issues, suggestions) = YamlValidator::validate_agent_template(&template, true)?;
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("Invalid agent_template structure"));
        assert!(suggestions.is_empty());
        Ok(())
    }

    #[test]
    fn test_check_deprecated_map_params_none() {
        let yaml_content = r#"
input: "items.json"
json_path: "$.items[*]"
"#;
        let map: serde_yaml::Mapping = serde_yaml::from_str(yaml_content).unwrap();
        let (issues, suggestions) = YamlValidator::check_deprecated_map_params(&map);
        assert!(issues.is_empty());
        assert!(suggestions.is_empty());
    }

    #[test]
    fn test_check_deprecated_map_params_timeout_per_agent() {
        let yaml_content = r#"
input: "items.json"
json_path: "$.items[*]"
timeout_per_agent: 300
"#;
        let map: serde_yaml::Mapping = serde_yaml::from_str(yaml_content).unwrap();
        let (issues, suggestions) = YamlValidator::check_deprecated_map_params(&map);
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("timeout_per_agent"));
        assert_eq!(suggestions.len(), 1);
        assert!(suggestions[0].contains("Remove 'timeout_per_agent'"));
    }

    #[test]
    fn test_check_deprecated_map_params_retry_on_failure() {
        let yaml_content = r#"
input: "items.json"
json_path: "$.items[*]"
retry_on_failure: true
"#;
        let map: serde_yaml::Mapping = serde_yaml::from_str(yaml_content).unwrap();
        let (issues, suggestions) = YamlValidator::check_deprecated_map_params(&map);
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("retry_on_failure"));
        assert_eq!(suggestions.len(), 1);
        assert!(suggestions[0].contains("Remove 'retry_on_failure'"));
    }

    #[test]
    fn test_validate_reduce_section_simplified_valid() {
        let yaml_content = r#"
- claude: "/summarize"
- shell: "echo done"
"#;
        let reduce: Value = serde_yaml::from_str(yaml_content).unwrap();
        let (issues, suggestions) = YamlValidator::validate_reduce_section(&reduce, true);
        assert!(issues.is_empty());
        assert!(suggestions.is_empty());
    }

    #[test]
    fn test_validate_reduce_section_nested_commands() {
        let yaml_content = r#"
commands:
  - claude: "/summarize"
"#;
        let reduce: Value = serde_yaml::from_str(yaml_content).unwrap();
        let (issues, suggestions) = YamlValidator::validate_reduce_section(&reduce, true);
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("nested 'commands' syntax"));
        assert_eq!(suggestions.len(), 1);
        assert!(suggestions[0].contains("prodigy migrate-yaml"));
    }

    #[test]
    fn test_validate_reduce_section_invalid_structure() {
        let reduce = Value::String("invalid".to_string());
        let (issues, suggestions) = YamlValidator::validate_reduce_section(&reduce, true);
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("Invalid reduce structure"));
        assert!(suggestions.is_empty());
    }

    #[test]
    fn test_validate_reduce_section_check_simplified_false() {
        let yaml_content = r#"
commands:
  - claude: "/summarize"
"#;
        let reduce: Value = serde_yaml::from_str(yaml_content).unwrap();
        let (issues, suggestions) = YamlValidator::validate_reduce_section(&reduce, false);
        assert!(issues.is_empty());
        assert!(suggestions.is_empty());
    }

    #[test]
    fn test_validate_required_fields_all_present() {
        let yaml_content = r#"
name: "test-workflow"
mode: mapreduce
"#;
        let workflow: serde_yaml::Mapping = serde_yaml::from_str(yaml_content).unwrap();
        let issues = YamlValidator::validate_required_fields(&workflow);
        assert!(issues.is_empty());
    }

    #[test]
    fn test_validate_required_fields_missing_name() {
        let yaml_content = r#"
mode: mapreduce
"#;
        let workflow: serde_yaml::Mapping = serde_yaml::from_str(yaml_content).unwrap();
        let issues = YamlValidator::validate_required_fields(&workflow);
        assert_eq!(issues.len(), 1);
        assert!(issues[0].contains("Missing required field 'name'"));
    }
}