nika 0.20.0

Semantic YAML workflow engine for AI tasks - DAG execution, MCP integration, multi-provider LLM support
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
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
//! Task Action Types - the 5 action verbs (v0.2)
//!
//! Defines the task action variants:
//! - `InferParams`: One-shot LLM call
//! - `ExecParams`: Shell command execution
//! - `FetchParams`: HTTP request
//! - `InvokeParams`: MCP tool call / resource read (v0.2)
//! - `AgentParams`: Agentic execution with tool calling (v0.2)
//!
//! ## Shorthand Syntax (v0.5.1)
//!
//! `infer:` and `exec:` support shorthand string syntax:
//! ```yaml
//! # Shorthand
//! infer: "Generate a headline"
//! exec: "echo hello"
//!
//! # Full form (equivalent)
//! infer:
//!   prompt: "Generate a headline"
//! exec:
//!   command: "echo hello"
//! ```

use rustc_hash::FxHashMap;
use serde::{Deserialize, Deserializer, Serialize};

use crate::ast::{AgentParams, InvokeParams};

/// Expected response format for infer tasks (v0.10+)
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default, Deserialize, Serialize)]
#[serde(rename_all = "lowercase")]
pub enum ResponseFormat {
    /// Plain text response (default)
    #[default]
    Text,
    /// JSON response
    Json,
    /// Markdown response
    Markdown,
}

/// Infer action - one-shot LLM call
///
/// Supports shorthand: `infer: "prompt"` or full form `infer: { prompt: "..." }`
///
/// ## LLM Control Options (v0.15.0)
/// - `temperature`: Control randomness (0.0-2.0, default varies by model)
/// - `max_tokens`: Limit output length
/// - `system`: System prompt to prepend
///
/// ## Extended Thinking (v0.18.0)
/// - `extended_thinking`: Enable Claude's extended thinking for deeper reasoning
/// - `thinking_budget`: Token budget for extended thinking (1024-65536, default 4096)
#[derive(Debug, Clone, Default)]
pub struct InferParams {
    pub prompt: String,
    /// Override provider for this task
    pub provider: Option<String>,
    /// Override model for this task
    pub model: Option<String>,
    /// Temperature for sampling (0.0 = deterministic, 2.0 = maximum randomness)
    pub temperature: Option<f64>,
    /// Maximum tokens to generate
    pub max_tokens: Option<u32>,
    /// System prompt to set context for the LLM
    pub system: Option<String>,
    /// Expected response format (v0.10+): json, text, markdown
    pub response_format: Option<ResponseFormat>,
    /// Enable extended thinking for deeper reasoning (Claude only, v0.18.0)
    pub extended_thinking: Option<bool>,
    /// Token budget for extended thinking (1024-65536, default 4096, Claude only, v0.18.0)
    pub thinking_budget: Option<u64>,
}

impl<'de> Deserialize<'de> for InferParams {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        #[derive(Deserialize)]
        #[serde(untagged)]
        enum InferParamsHelper {
            Short(String),
            Full {
                prompt: String,
                #[serde(default)]
                provider: Option<String>,
                #[serde(default)]
                model: Option<String>,
                #[serde(default)]
                temperature: Option<f64>,
                #[serde(default)]
                max_tokens: Option<u32>,
                #[serde(default)]
                system: Option<String>,
                #[serde(default)]
                response_format: Option<ResponseFormat>,
                #[serde(default)]
                extended_thinking: Option<bool>,
                #[serde(default)]
                thinking_budget: Option<u64>,
            },
        }

        match InferParamsHelper::deserialize(deserializer)? {
            InferParamsHelper::Short(prompt) => Ok(InferParams {
                prompt,
                provider: None,
                model: None,
                temperature: None,
                max_tokens: None,
                system: None,
                response_format: None,
                extended_thinking: None,
                thinking_budget: None,
            }),
            InferParamsHelper::Full {
                prompt,
                provider,
                model,
                temperature,
                max_tokens,
                system,
                response_format,
                extended_thinking,
                thinking_budget,
            } => Ok(InferParams {
                prompt,
                provider,
                model,
                temperature,
                max_tokens,
                system,
                response_format,
                extended_thinking,
                thinking_budget,
            }),
        }
    }
}

impl InferParams {
    /// Validate infer parameters.
    ///
    /// # Errors
    ///
    /// Returns an error string if:
    /// - `prompt` is empty or whitespace-only
    /// - `temperature` is outside valid range (0.0..=2.0)
    /// - `extended_thinking` is true with non-Claude provider
    /// - `thinking_budget` is outside valid range (1024..=65536)
    ///
    /// # v0.17.5
    /// Added to prevent confusing LLM errors from empty prompts.
    ///
    /// # v0.18.0
    /// Added extended_thinking and thinking_budget validation.
    pub fn validate(&self) -> Result<(), String> {
        if self.prompt.trim().is_empty() {
            return Err("Infer prompt cannot be empty".to_string());
        }

        if let Some(temp) = self.temperature {
            if !(0.0..=2.0).contains(&temp) {
                return Err(format!(
                    "temperature must be between 0.0 and 2.0, got {}",
                    temp
                ));
            }
        }

        // Validate extended_thinking requires Claude provider (v0.18.0)
        if self.extended_thinking == Some(true) {
            if let Some(ref provider) = self.provider {
                if provider != "claude" {
                    return Err(format!(
                        "extended_thinking only supported for claude provider, got '{}'",
                        provider
                    ));
                }
            }
            // If provider is None, will inherit workflow default (validation deferred to runtime)
        }

        // Validate thinking_budget range (v0.18.0)
        if let Some(budget) = self.thinking_budget {
            if !(1024..=65536).contains(&budget) {
                return Err(format!(
                    "thinking_budget must be between 1024 and 65536, got {}",
                    budget
                ));
            }
        }

        Ok(())
    }

    /// Get effective thinking budget (v0.18.0).
    ///
    /// Returns the configured `thinking_budget` if set, otherwise returns
    /// the default value (4096).
    pub fn effective_thinking_budget(&self) -> u64 {
        self.thinking_budget.unwrap_or(4096)
    }
}

/// Exec action - shell command
///
/// Supports shorthand: `exec: "command"` or full form `exec: { command: "...", shell: true }`
///
/// ## Shell Field (v0.15.0 Security)
/// - `shell: None` (default) → Shell-free execution via shlex parsing
/// - `shell: Some(true)` → Execute via shell (opt-in for pipes, env vars)
/// - `shell: Some(false)` → Explicitly shell-free
#[derive(Debug, Clone)]
pub struct ExecParams {
    pub command: String,
    /// Whether to execute via shell. None means shell-free (default, secure).
    pub shell: Option<bool>,
    /// Timeout in seconds for command execution
    pub timeout: Option<u64>,
    /// Working directory for command execution
    pub cwd: Option<String>,
}

impl<'de> Deserialize<'de> for ExecParams {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        #[derive(Deserialize)]
        #[serde(untagged)]
        enum ExecParamsHelper {
            Short(String),
            Full {
                command: String,
                #[serde(default)]
                shell: Option<bool>,
                #[serde(default)]
                timeout: Option<u64>,
                #[serde(default)]
                cwd: Option<String>,
            },
        }

        match ExecParamsHelper::deserialize(deserializer)? {
            ExecParamsHelper::Short(command) => Ok(ExecParams {
                command,
                shell: None,
                timeout: None,
                cwd: None,
            }),
            ExecParamsHelper::Full {
                command,
                shell,
                timeout,
                cwd,
            } => Ok(ExecParams {
                command,
                shell,
                timeout,
                cwd,
            }),
        }
    }
}

/// Configuration for retry behavior with exponential backoff
#[derive(Debug, Clone, Deserialize, Default, PartialEq)]
pub struct RetryConfig {
    /// Maximum number of retry attempts (default: 3)
    #[serde(default = "default_max_attempts")]
    pub max_attempts: u32,

    /// Initial backoff in milliseconds (default: 1000)
    #[serde(default = "default_backoff_ms")]
    pub backoff_ms: u64,

    /// Backoff multiplier for exponential backoff (default: 2.0)
    #[serde(default = "default_multiplier")]
    pub multiplier: f64,
}

fn default_max_attempts() -> u32 {
    3
}

fn default_backoff_ms() -> u64 {
    1000
}

fn default_multiplier() -> f64 {
    2.0
}

/// Fetch action - HTTP request
#[derive(Debug, Clone, Deserialize)]
pub struct FetchParams {
    pub url: String,
    #[serde(default = "default_method")]
    pub method: String,
    #[serde(default)]
    pub headers: FxHashMap<String, String>,
    pub body: Option<String>,
    /// Request timeout in seconds (matches JSON schema)
    pub timeout: Option<u64>,
    /// Optional retry configuration for failed requests
    #[serde(default)]
    pub retry: Option<RetryConfig>,
}

fn default_method() -> String {
    "GET".to_string()
}

/// The 5 task action types (v0.2)
///
/// Each variant corresponds to a YAML verb:
/// - `infer:` - LLM inference (one-shot)
/// - `exec:` - Shell command execution
/// - `fetch:` - HTTP request
/// - `invoke:` - MCP tool call or resource read
/// - `agent:` - Agentic execution with tool calling loop
#[derive(Debug, Clone, Deserialize)]
#[serde(untagged)]
pub enum TaskAction {
    Infer { infer: InferParams },
    Exec { exec: ExecParams },
    Fetch { fetch: FetchParams },
    Invoke { invoke: InvokeParams },
    Agent { agent: AgentParams },
}

impl TaskAction {
    /// Get the verb name for this action (infer, exec, fetch, invoke, agent)
    pub fn verb_name(&self) -> &'static str {
        match self {
            TaskAction::Infer { .. } => "infer",
            TaskAction::Exec { .. } => "exec",
            TaskAction::Fetch { .. } => "fetch",
            TaskAction::Invoke { .. } => "invoke",
            TaskAction::Agent { .. } => "agent",
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::serde_yaml;
    use serde_json::json;

    // =========================================================================
    // InferParams Tests
    // =========================================================================

    #[test]
    fn test_infer_params_shorthand_deserialize() {
        let yaml = r#"
infer: "Generate a headline for QR Code AI"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "Generate a headline for QR Code AI");
                assert!(infer.provider.is_none());
                assert!(infer.model.is_none());
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_full_form_deserialize() {
        let yaml = r#"
infer:
  prompt: "Generate a headline"
  provider: claude
  model: claude-sonnet-4-6
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "Generate a headline");
                assert_eq!(infer.provider, Some("claude".to_string()));
                assert_eq!(infer.model, Some("claude-sonnet-4-6".to_string()));
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_full_form_only_prompt() {
        let yaml = r#"
infer:
  prompt: "Generate a headline"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "Generate a headline");
                assert!(infer.provider.is_none());
                assert!(infer.model.is_none());
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_multiline_prompt_shorthand() {
        let yaml = r#"
infer: |
  Generate a comprehensive headline for QR Code AI.
  Include value proposition and key benefit.
  Keep under 100 characters.
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert!(infer.prompt.contains("Generate a comprehensive headline"));
                assert!(infer.prompt.contains("value proposition"));
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_with_provider_only() {
        let yaml = r#"
infer:
  prompt: "Test"
  provider: openai
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.provider, Some("openai".to_string()));
                assert!(infer.model.is_none());
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_with_model_only() {
        let yaml = r#"
infer:
  prompt: "Test"
  model: gpt-4
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert!(infer.provider.is_none());
                assert_eq!(infer.model, Some("gpt-4".to_string()));
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    // =========================================================================
    // InferParams Validation Tests (v0.17.5)
    // =========================================================================

    #[test]
    fn test_infer_params_validate_ok() {
        let params = InferParams {
            prompt: "Generate something".to_string(),
            provider: None,
            model: None,
            temperature: Some(0.7),
            max_tokens: None,
            system: None,
            response_format: None,
            extended_thinking: None,
            thinking_budget: None,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_infer_params_validate_empty_prompt() {
        let params = InferParams {
            prompt: "".to_string(),
            ..Default::default()
        };
        let result = params.validate();
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("empty"));
    }

    #[test]
    fn test_infer_params_validate_whitespace_only_prompt() {
        let params = InferParams {
            prompt: "   \n\t  ".to_string(),
            ..Default::default()
        };
        let result = params.validate();
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("empty"));
    }

    #[test]
    fn test_infer_params_validate_temperature_too_low() {
        let params = InferParams {
            prompt: "Test".to_string(),
            temperature: Some(-0.1),
            ..Default::default()
        };
        let result = params.validate();
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("temperature"));
    }

    #[test]
    fn test_infer_params_validate_temperature_too_high() {
        let params = InferParams {
            prompt: "Test".to_string(),
            temperature: Some(2.5),
            ..Default::default()
        };
        let result = params.validate();
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("temperature"));
    }

    #[test]
    fn test_infer_params_validate_temperature_boundary_valid() {
        // 0.0 and 2.0 are valid boundary values
        let params_min = InferParams {
            prompt: "Test".to_string(),
            temperature: Some(0.0),
            ..Default::default()
        };
        assert!(params_min.validate().is_ok());

        let params_max = InferParams {
            prompt: "Test".to_string(),
            temperature: Some(2.0),
            ..Default::default()
        };
        assert!(params_max.validate().is_ok());
    }

    // =========================================================================
    // InferParams LLM Control Options Tests (v0.15.0)
    // =========================================================================

    #[test]
    fn test_infer_params_with_temperature() {
        let yaml = r#"
infer:
  prompt: "Be creative"
  temperature: 0.9
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "Be creative");
                assert_eq!(infer.temperature, Some(0.9));
                assert!(infer.max_tokens.is_none());
                assert!(infer.system.is_none());
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_with_max_tokens() {
        let yaml = r#"
infer:
  prompt: "Short answer"
  max_tokens: 100
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "Short answer");
                assert_eq!(infer.max_tokens, Some(100));
                assert!(infer.temperature.is_none());
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_with_system_prompt() {
        let yaml = r#"
infer:
  prompt: "Explain quantum computing"
  system: "You are a physics professor explaining to undergraduates."
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "Explain quantum computing");
                assert_eq!(
                    infer.system,
                    Some("You are a physics professor explaining to undergraduates.".to_string())
                );
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_full_llm_control() {
        let yaml = r#"
infer:
  prompt: "Write a haiku"
  provider: openai
  model: gpt-4o
  temperature: 0.7
  max_tokens: 50
  system: "You are a Japanese poetry master."
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "Write a haiku");
                assert_eq!(infer.provider, Some("openai".to_string()));
                assert_eq!(infer.model, Some("gpt-4o".to_string()));
                assert_eq!(infer.temperature, Some(0.7));
                assert_eq!(infer.max_tokens, Some(50));
                assert_eq!(
                    infer.system,
                    Some("You are a Japanese poetry master.".to_string())
                );
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_shorthand_defaults_llm_options() {
        let yaml = r#"
infer: "Simple prompt"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "Simple prompt");
                assert!(infer.temperature.is_none());
                assert!(infer.max_tokens.is_none());
                assert!(infer.system.is_none());
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_temperature_zero() {
        let yaml = r#"
infer:
  prompt: "Deterministic output"
  temperature: 0.0
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.temperature, Some(0.0));
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    // =========================================================================
    // ExecParams Tests
    // =========================================================================

    #[test]
    fn test_exec_params_shorthand_deserialize() {
        let yaml = r#"
exec: "npm run build"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Exec { exec } => {
                assert_eq!(exec.command, "npm run build");
            }
            _ => panic!("Expected TaskAction::Exec"),
        }
    }

    #[test]
    fn test_exec_params_full_form_deserialize() {
        let yaml = r#"
exec:
  command: "npm run build"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Exec { exec } => {
                assert_eq!(exec.command, "npm run build");
            }
            _ => panic!("Expected TaskAction::Exec"),
        }
    }

    #[test]
    fn test_exec_params_complex_command() {
        let yaml = r#"
exec: "cargo test --lib -- --test-threads=1 --nocapture"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Exec { exec } => {
                assert!(exec.command.contains("cargo test"));
                assert!(exec.command.contains("--test-threads=1"));
            }
            _ => panic!("Expected TaskAction::Exec"),
        }
    }

    #[test]
    fn test_exec_params_with_pipes_and_redirects() {
        let yaml = r#"
exec: "cat file.txt | grep pattern > output.txt"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Exec { exec } => {
                assert!(exec.command.contains("grep pattern"));
            }
            _ => panic!("Expected TaskAction::Exec"),
        }
    }

    // =========================================================================
    // ExecParams Shell Field Tests (v0.15.0 Security)
    // =========================================================================

    #[test]
    fn test_exec_params_shell_field_default_none() {
        let yaml = r#"
exec:
  command: "echo hello"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Exec { exec } => {
                assert_eq!(exec.command, "echo hello");
                assert_eq!(exec.shell, None); // None means shell-free (default)
            }
            _ => panic!("Expected TaskAction::Exec"),
        }
    }

    #[test]
    fn test_exec_params_shell_true_explicit() {
        let yaml = r#"
exec:
  command: "echo $HOME && ls | grep foo"
  shell: true
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Exec { exec } => {
                assert!(exec.command.contains("$HOME"));
                assert_eq!(exec.shell, Some(true));
            }
            _ => panic!("Expected TaskAction::Exec"),
        }
    }

    #[test]
    fn test_exec_params_shell_false_explicit() {
        let yaml = r#"
exec:
  command: "echo hello"
  shell: false
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Exec { exec } => {
                assert_eq!(exec.shell, Some(false));
            }
            _ => panic!("Expected TaskAction::Exec"),
        }
    }

    // =========================================================================
    // FetchParams Tests
    // =========================================================================

    #[test]
    fn test_fetch_params_minimal() {
        let yaml = r#"
fetch:
  url: "https://api.example.com/data"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Fetch { fetch } => {
                assert_eq!(fetch.url, "https://api.example.com/data");
                assert_eq!(fetch.method, "GET");
                assert!(fetch.headers.is_empty());
                assert!(fetch.body.is_none());
            }
            _ => panic!("Expected TaskAction::Fetch"),
        }
    }

    #[test]
    fn test_fetch_params_with_method() {
        let yaml = r#"
fetch:
  url: "https://api.example.com/data"
  method: "POST"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Fetch { fetch } => {
                assert_eq!(fetch.method, "POST");
            }
            _ => panic!("Expected TaskAction::Fetch"),
        }
    }

    #[test]
    fn test_fetch_params_default_method_get() {
        let yaml = r#"
fetch:
  url: "https://api.example.com/data"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Fetch { fetch } => {
                assert_eq!(fetch.method, "GET");
            }
            _ => panic!("Expected TaskAction::Fetch"),
        }
    }

    #[test]
    fn test_fetch_params_with_headers() {
        let yaml = r#"
fetch:
  url: "https://api.example.com/data"
  method: "GET"
  headers:
    Authorization: "Bearer token123"
    Content-Type: "application/json"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Fetch { fetch } => {
                assert_eq!(fetch.headers.len(), 2);
                assert_eq!(
                    fetch.headers.get("Authorization"),
                    Some(&"Bearer token123".to_string())
                );
                assert_eq!(
                    fetch.headers.get("Content-Type"),
                    Some(&"application/json".to_string())
                );
            }
            _ => panic!("Expected TaskAction::Fetch"),
        }
    }

    #[test]
    fn test_fetch_params_with_body() {
        let yaml = r#"
fetch:
  url: "https://api.example.com/data"
  method: "POST"
  body: '{"key": "value"}'
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Fetch { fetch } => {
                assert_eq!(fetch.body, Some(r#"{"key": "value"}"#.to_string()));
            }
            _ => panic!("Expected TaskAction::Fetch"),
        }
    }

    #[test]
    fn test_fetch_params_complete() {
        let yaml = r#"
fetch:
  url: "https://api.example.com/users"
  method: "POST"
  headers:
    Authorization: "Bearer token"
    Content-Type: "application/json"
  body: '{"name": "Alice"}'
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Fetch { fetch } => {
                assert_eq!(fetch.url, "https://api.example.com/users");
                assert_eq!(fetch.method, "POST");
                assert_eq!(fetch.headers.len(), 2);
                assert_eq!(fetch.body, Some(r#"{"name": "Alice"}"#.to_string()));
            }
            _ => panic!("Expected TaskAction::Fetch"),
        }
    }

    // =========================================================================
    // InvokeParams Tests
    // =========================================================================

    #[test]
    fn test_invoke_params_tool_call() {
        let yaml = r#"
invoke:
  mcp: novanet
  tool: novanet_generate
  params:
    entity: qr-code
    locale: fr-FR
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Invoke { invoke } => {
                assert_eq!(invoke.mcp, "novanet");
                assert_eq!(invoke.tool, Some("novanet_generate".to_string()));
                assert_eq!(
                    invoke.params,
                    Some(json!({"entity": "qr-code", "locale": "fr-FR"}))
                );
                assert!(invoke.resource.is_none());
            }
            _ => panic!("Expected TaskAction::Invoke"),
        }
    }

    #[test]
    fn test_invoke_params_resource_read() {
        let yaml = r#"
invoke:
  mcp: novanet
  resource: entity://qr-code/fr-FR
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Invoke { invoke } => {
                assert_eq!(invoke.mcp, "novanet");
                assert!(invoke.tool.is_none());
                assert_eq!(invoke.resource, Some("entity://qr-code/fr-FR".to_string()));
                assert!(invoke.params.is_none());
            }
            _ => panic!("Expected TaskAction::Invoke"),
        }
    }

    #[test]
    fn test_invoke_params_tool_without_params() {
        let yaml = r#"
invoke:
  mcp: test_server
  tool: simple_tool
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Invoke { invoke } => {
                assert_eq!(invoke.mcp, "test_server");
                assert_eq!(invoke.tool, Some("simple_tool".to_string()));
                assert!(invoke.params.is_none());
            }
            _ => panic!("Expected TaskAction::Invoke"),
        }
    }

    // =========================================================================
    // AgentParams Tests
    // =========================================================================

    #[test]
    fn test_agent_params_minimal() {
        let yaml = r#"
agent:
  prompt: "Generate content for homepage"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert_eq!(agent.prompt, "Generate content for homepage");
                assert!(agent.system.is_none());
                assert!(agent.provider.is_none());
                assert!(agent.model.is_none());
                assert!(agent.mcp.is_empty());
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    #[test]
    fn test_agent_params_with_mcp() {
        let yaml = r#"
agent:
  prompt: "Generate with MCP tools"
  mcp:
    - novanet
    - perplexity
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert_eq!(agent.mcp.len(), 2);
                assert!(agent.mcp.contains(&"novanet".to_string()));
                assert!(agent.mcp.contains(&"perplexity".to_string()));
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    #[test]
    fn test_agent_params_with_max_turns() {
        let yaml = r#"
agent:
  prompt: "Test prompt"
  max_turns: 5
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert_eq!(agent.max_turns, Some(5));
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    #[test]
    fn test_agent_params_with_stop_conditions() {
        let yaml = r#"
agent:
  prompt: "Test prompt"
  stop_conditions:
    - "GENERATION_COMPLETE"
    - "ERROR"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert_eq!(agent.stop_conditions.len(), 2);
                assert!(agent
                    .stop_conditions
                    .contains(&"GENERATION_COMPLETE".to_string()));
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    #[test]
    fn test_agent_params_with_extended_thinking() {
        let yaml = r#"
agent:
  prompt: "Test prompt"
  extended_thinking: true
  thinking_budget: 8192
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert_eq!(agent.extended_thinking, Some(true));
                assert_eq!(agent.thinking_budget, Some(8192));
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    #[test]
    fn test_agent_params_with_provider_and_model() {
        let yaml = r#"
agent:
  prompt: "Test prompt"
  provider: claude
  model: claude-sonnet-4-6
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert_eq!(agent.provider, Some("claude".to_string()));
                assert_eq!(agent.model, Some("claude-sonnet-4-6".to_string()));
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    #[test]
    fn test_agent_params_complete() {
        let yaml = r#"
agent:
  prompt: "Generate landing page content"
  system: "You are a web content expert"
  provider: claude
  model: claude-sonnet-4-6
  mcp:
    - novanet
  max_turns: 10
  token_budget: 10000
  stop_conditions:
    - "CONTENT_READY"
  scope: full
  extended_thinking: true
  thinking_budget: 4096
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert_eq!(agent.prompt, "Generate landing page content");
                assert_eq!(
                    agent.system,
                    Some("You are a web content expert".to_string())
                );
                assert_eq!(agent.provider, Some("claude".to_string()));
                assert_eq!(agent.model, Some("claude-sonnet-4-6".to_string()));
                assert_eq!(agent.mcp.len(), 1);
                assert_eq!(agent.max_turns, Some(10));
                assert_eq!(agent.token_budget, Some(10000));
                assert_eq!(agent.stop_conditions.len(), 1);
                assert_eq!(agent.scope, Some("full".to_string()));
                assert_eq!(agent.extended_thinking, Some(true));
                assert_eq!(agent.thinking_budget, Some(4096));
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    // =========================================================================
    // TaskAction::verb_name() Tests
    // =========================================================================

    #[test]
    fn test_verb_name_infer() {
        let action = TaskAction::Infer {
            infer: InferParams {
                prompt: "test".to_string(),
                ..Default::default()
            },
        };
        assert_eq!(action.verb_name(), "infer");
    }

    #[test]
    fn test_verb_name_exec() {
        let action = TaskAction::Exec {
            exec: ExecParams {
                command: "echo test".to_string(),
                shell: None,
                timeout: None,
                cwd: None,
            },
        };
        assert_eq!(action.verb_name(), "exec");
    }

    #[test]
    fn test_verb_name_fetch() {
        let action = TaskAction::Fetch {
            fetch: FetchParams {
                url: "https://example.com".to_string(),
                method: "GET".to_string(),
                headers: FxHashMap::default(),
                body: None,
                timeout: None,
                retry: None,
            },
        };
        assert_eq!(action.verb_name(), "fetch");
    }

    #[test]
    fn test_verb_name_invoke() {
        let action = TaskAction::Invoke {
            invoke: InvokeParams {
                mcp: "test".to_string(),
                tool: Some("test_tool".to_string()),
                params: None,
                resource: None,
            },
        };
        assert_eq!(action.verb_name(), "invoke");
    }

    #[test]
    fn test_verb_name_agent() {
        let action = TaskAction::Agent {
            agent: AgentParams {
                prompt: "test".to_string(),
                ..Default::default()
            },
        };
        assert_eq!(action.verb_name(), "agent");
    }

    // =========================================================================
    // Mixed Action Type Tests
    // =========================================================================

    #[test]
    fn test_parse_multiple_action_types() {
        let infer_yaml = r#"infer: "test""#;
        let exec_yaml = r#"exec: "test""#;
        let fetch_yaml = r#"fetch: { url: "http://example.com" }"#;

        let infer_action: TaskAction = serde_yaml::from_str(infer_yaml).unwrap();
        let exec_action: TaskAction = serde_yaml::from_str(exec_yaml).unwrap();
        let fetch_action: TaskAction = serde_yaml::from_str(fetch_yaml).unwrap();

        assert_eq!(infer_action.verb_name(), "infer");
        assert_eq!(exec_action.verb_name(), "exec");
        assert_eq!(fetch_action.verb_name(), "fetch");
    }

    // =========================================================================
    // Edge Cases and Error Handling
    // =========================================================================

    #[test]
    fn test_infer_params_empty_prompt() {
        let yaml = r#"
infer: ""
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert_eq!(infer.prompt, "");
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_exec_params_empty_command() {
        let yaml = r#"
exec: ""
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Exec { exec } => {
                assert_eq!(exec.command, "");
            }
            _ => panic!("Expected TaskAction::Exec"),
        }
    }

    #[test]
    fn test_fetch_params_empty_headers() {
        let yaml = r#"
fetch:
  url: "https://example.com"
  headers: {}
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Fetch { fetch } => {
                assert!(fetch.headers.is_empty());
            }
            _ => panic!("Expected TaskAction::Fetch"),
        }
    }

    #[test]
    fn test_agent_params_empty_mcp_list() {
        let yaml = r#"
agent:
  prompt: "test"
  mcp: []
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert!(agent.mcp.is_empty());
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    #[test]
    fn test_agent_params_empty_stop_conditions() {
        let yaml = r#"
agent:
  prompt: "test"
  stop_conditions: []
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Agent { agent } => {
                assert!(agent.stop_conditions.is_empty());
            }
            _ => panic!("Expected TaskAction::Agent"),
        }
    }

    // =========================================================================
    // Special Characters and Unicode Tests
    // =========================================================================

    #[test]
    fn test_infer_params_special_characters() {
        let yaml = r#"
infer: "Generate content with special chars: !@#$%^&*()"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert!(infer.prompt.contains("!@#$%^&*()"));
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_infer_params_unicode() {
        let yaml = r#"
infer: "Generate content en français: résumé, café, naïve"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Infer { infer } => {
                assert!(infer.prompt.contains("français"));
                assert!(infer.prompt.contains("résumé"));
            }
            _ => panic!("Expected TaskAction::Infer"),
        }
    }

    #[test]
    fn test_fetch_params_url_with_query_string() {
        let yaml = r#"
fetch:
  url: "https://api.example.com/search?q=rust&limit=10&offset=5"
"#;
        let action: TaskAction = serde_yaml::from_str(yaml).unwrap();
        match action {
            TaskAction::Fetch { fetch } => {
                assert!(fetch.url.contains("search?q=rust"));
                assert!(fetch.url.contains("limit=10"));
            }
            _ => panic!("Expected TaskAction::Fetch"),
        }
    }

    // =========================================================================
    // Cloning Tests
    // =========================================================================

    #[test]
    fn test_infer_action_clone() {
        let action = TaskAction::Infer {
            infer: InferParams {
                prompt: "test".to_string(),
                provider: Some("claude".to_string()),
                model: Some("claude-sonnet-4-6".to_string()),
                ..Default::default()
            },
        };
        let cloned = action.clone();
        assert_eq!(action.verb_name(), cloned.verb_name());
    }

    #[test]
    fn test_all_action_types_cloneable() {
        let infer = TaskAction::Infer {
            infer: InferParams {
                prompt: "test".to_string(),
                ..Default::default()
            },
        };
        let exec = TaskAction::Exec {
            exec: ExecParams {
                command: "echo".to_string(),
                shell: None,
                timeout: None,
                cwd: None,
            },
        };
        let fetch = TaskAction::Fetch {
            fetch: FetchParams {
                url: "http://example.com".to_string(),
                method: "GET".to_string(),
                headers: FxHashMap::default(),
                body: None,
                timeout: None,
                retry: None,
            },
        };

        let _ = infer.clone();
        let _ = exec.clone();
        let _ = fetch.clone();
    }
}