nika 0.35.4

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
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
use rustc_hash::FxHashMap;

use crate::ast::AgentParams;
use crate::event::{EventKind, EventLog};

use crate::runtime::rig_agent_loop::types::{
    GuardrailCheckResult, RigAgentLoopResult, RigAgentStatus,
};
use crate::runtime::rig_agent_loop::RigAgentLoop;

#[test]
fn test_rig_agent_status_variants() {
    let status = RigAgentStatus::NaturalCompletion;
    assert_eq!(status, RigAgentStatus::NaturalCompletion);

    let status = RigAgentStatus::MaxTurnsReached;
    assert_eq!(status, RigAgentStatus::MaxTurnsReached);
}

#[test]
fn test_rig_agent_loop_result_debug() {
    let result = RigAgentLoopResult {
        status: RigAgentStatus::NaturalCompletion,
        turns: 1,
        final_output: serde_json::json!({}),
        total_tokens: 50,
        confidence: None,
        retry_count: 0,
        guardrails_passed: true,
        cost_usd: 0.0,
        partial_result: None,
    };
    let debug = format!("{:?}", result);
    assert!(debug.contains("NaturalCompletion"));
}

// ========================================================================
// Completion Detection Tests
// ========================================================================

#[test]
fn test_check_completion_signal() {
    use crate::runtime::builtin::COMPLETION_MARKER;

    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Should detect completion marker
    let response_with_marker = format!(
        r#"{{"completed": true, "marker": "{}"}}"#,
        COMPLETION_MARKER
    );
    assert!(agent.check_completion_signal(&response_with_marker));

    // Should not detect without marker
    assert!(!agent.check_completion_signal("Task completed successfully"));
    assert!(!agent.check_completion_signal(r#"{"completed": true}"#));
}

#[test]
fn test_determine_status_explicit_completion() {
    use crate::runtime::builtin::COMPLETION_MARKER;

    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Explicit completion has highest priority
    let response = format!(r#"Result: {{"marker": "{}"}}"#, COMPLETION_MARKER);
    assert_eq!(
        agent.determine_status(&response),
        RigAgentStatus::ExplicitCompletion
    );
}

#[test]
fn test_determine_status_natural_completion() {
    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Natural completion (no marker, no stop condition)
    assert_eq!(
        agent.determine_status("Task completed normally"),
        RigAgentStatus::NaturalCompletion
    );
}

#[test]
fn test_determine_status_explicit_over_natural() {
    use crate::runtime::builtin::COMPLETION_MARKER;

    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // When marker present, explicit completion wins over natural
    let response = format!("Result with marker: {}", COMPLETION_MARKER);
    assert_eq!(
        agent.determine_status(&response),
        RigAgentStatus::ExplicitCompletion
    );
}

#[test]
fn test_explicit_completion_status_canonical_str() {
    assert_eq!(
        RigAgentStatus::ExplicitCompletion.as_canonical_str(),
        "tool_complete"
    );
}

// ========================================================================
// Confidence-Based Completion Tests
// ========================================================================

#[test]
fn test_determine_status_high_confidence() {
    use crate::ast::completion::{CompletionConfig, CompletionMode, ConfidenceConfig};
    use crate::runtime::builtin::COMPLETION_MARKER;

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Completion response with confidence >= threshold
    let response = format!(
        r#"{{"completed": true, "result": "done", "confidence": 0.95, "marker": "{}"}}"#,
        COMPLETION_MARKER
    );
    let status = agent.determine_status(&response);
    assert!(
        matches!(status, RigAgentStatus::HighConfidence(c) if c == 0.95),
        "Expected HighConfidence(0.95), got {:?}",
        status
    );
}

#[test]
fn test_determine_status_low_confidence() {
    use crate::ast::completion::{CompletionConfig, CompletionMode, ConfidenceConfig};
    use crate::runtime::builtin::COMPLETION_MARKER;

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Completion response with confidence < threshold
    let response = format!(
        r#"{{"completed": true, "result": "done", "confidence": 0.5, "marker": "{}"}}"#,
        COMPLETION_MARKER
    );
    let status = agent.determine_status(&response);
    assert!(
        matches!(status, RigAgentStatus::LowConfidence(c) if c == 0.5),
        "Expected LowConfidence(0.5), got {:?}",
        status
    );
}

#[test]
fn test_determine_status_no_confidence_defaults_to_explicit() {
    use crate::ast::completion::{CompletionConfig, CompletionMode, ConfidenceConfig};
    use crate::runtime::builtin::COMPLETION_MARKER;

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Completion response without confidence
    let response = format!(
        r#"{{"completed": true, "result": "done", "marker": "{}"}}"#,
        COMPLETION_MARKER
    );
    let status = agent.determine_status(&response);
    assert_eq!(
        status,
        RigAgentStatus::ExplicitCompletion,
        "No confidence should default to ExplicitCompletion"
    );
}

#[test]
fn test_confidence_status_helper_methods() {
    // HighConfidence is completed
    let high = RigAgentStatus::HighConfidence(0.95);
    assert!(high.is_completed());
    assert!(!high.requires_retry());
    assert_eq!(high.confidence(), Some(0.95));
    assert_eq!(high.as_canonical_str(), "tool_complete_high");

    // LowConfidence requires retry
    let low = RigAgentStatus::LowConfidence(0.5);
    assert!(!low.is_completed());
    assert!(low.requires_retry());
    assert_eq!(low.confidence(), Some(0.5));
    assert_eq!(low.as_canonical_str(), "tool_complete_low");

    // Other statuses have no confidence
    assert_eq!(RigAgentStatus::NaturalCompletion.confidence(), None);
    assert_eq!(RigAgentStatus::ExplicitCompletion.confidence(), None);
}

#[test]
fn test_get_confidence_threshold_default() {
    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Default threshold is 0.8
    assert_eq!(agent.get_confidence_threshold(), 0.8);
}

#[test]
fn test_get_confidence_threshold_custom() {
    use crate::ast::completion::{CompletionConfig, CompletionMode, ConfidenceConfig};

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.9,
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    assert_eq!(agent.get_confidence_threshold(), 0.9);
}

// ========================================================================
// Retry Logic Tests
// ========================================================================

#[test]
fn test_should_retry_returns_false_for_non_low_confidence() {
    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Non-LowConfidence statuses should not retry
    assert!(!agent.should_retry(&RigAgentStatus::NaturalCompletion, 0));
    assert!(!agent.should_retry(&RigAgentStatus::ExplicitCompletion, 0));
    assert!(!agent.should_retry(&RigAgentStatus::HighConfidence(0.9), 0));
    assert!(!agent.should_retry(&RigAgentStatus::MaxTurnsReached, 0));
}

#[test]
fn test_should_retry_with_retry_action() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, LowConfidenceAction,
        OnLowConfidenceConfig,
    };

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                on_low: OnLowConfidenceConfig {
                    action: LowConfidenceAction::Retry,
                    max_retries: 3,
                    feedback: None,
                },
                routing: None,
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Should retry when under max_retries
    assert!(agent.should_retry(&RigAgentStatus::LowConfidence(0.5), 0));
    assert!(agent.should_retry(&RigAgentStatus::LowConfidence(0.5), 1));
    assert!(agent.should_retry(&RigAgentStatus::LowConfidence(0.5), 2));

    // Should NOT retry when at or above max_retries
    assert!(!agent.should_retry(&RigAgentStatus::LowConfidence(0.5), 3));
    assert!(!agent.should_retry(&RigAgentStatus::LowConfidence(0.5), 4));
}

#[test]
fn test_should_retry_with_accept_action() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, LowConfidenceAction,
        OnLowConfidenceConfig,
    };

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                on_low: OnLowConfidenceConfig {
                    action: LowConfidenceAction::Accept,
                    max_retries: 3,
                    feedback: None,
                },
                routing: None,
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Accept action should never retry
    assert!(!agent.should_retry(&RigAgentStatus::LowConfidence(0.5), 0));
}

#[test]
fn test_should_retry_with_escalate_action() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, LowConfidenceAction,
        OnLowConfidenceConfig,
    };

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                on_low: OnLowConfidenceConfig {
                    action: LowConfidenceAction::Escalate,
                    max_retries: 3,
                    feedback: None,
                },
                routing: None,
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Escalate action should never retry
    assert!(!agent.should_retry(&RigAgentStatus::LowConfidence(0.5), 0));
}

#[test]
fn test_should_retry_without_confidence_config() {
    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default() // No completion config
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Without config, should not retry (no on_low config)
    assert!(!agent.should_retry(&RigAgentStatus::LowConfidence(0.5), 0));
}

#[test]
fn test_get_retry_feedback_default() {
    use crate::ast::completion::{CompletionConfig, CompletionMode, ConfidenceConfig};

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    let feedback = agent.get_retry_feedback(0.5);
    assert!(feedback.contains("RETRY"));
    assert!(feedback.contains("0.50")); // Confidence value
    assert!(feedback.contains("0.80")); // Threshold value
}

#[test]
fn test_get_retry_feedback_custom() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, LowConfidenceAction,
        OnLowConfidenceConfig,
    };

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                on_low: OnLowConfidenceConfig {
                    action: LowConfidenceAction::Retry,
                    max_retries: 2,
                    feedback: Some("Please verify your sources and provide citations".to_string()),
                },
                routing: None,
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    let feedback = agent.get_retry_feedback(0.6);
    assert!(feedback.contains("RETRY"));
    assert!(feedback.contains("0.60")); // Confidence value
    assert!(feedback.contains("verify your sources")); // Custom feedback
}

#[test]
fn test_get_low_confidence_config_present() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, LowConfidenceAction,
        OnLowConfidenceConfig,
    };

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                on_low: OnLowConfidenceConfig {
                    action: LowConfidenceAction::Retry,
                    max_retries: 5,
                    feedback: Some("Custom".to_string()),
                },
                routing: None,
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    let config = agent.get_low_confidence_config().unwrap();
    assert_eq!(config.action, LowConfidenceAction::Retry);
    assert_eq!(config.max_retries, 5);
    assert_eq!(config.feedback, Some("Custom".to_string()));
}

#[test]
fn test_get_low_confidence_config_absent() {
    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    assert!(agent.get_low_confidence_config().is_none());
}

// ========================================================================
// Confidence Routing Tests
// ========================================================================

#[test]
fn test_apply_routing_without_config_uses_threshold() {
    use crate::ast::completion::{CompletionConfig, CompletionMode, ConfidenceConfig};

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.8,
                routing: None, // No routing configured
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // High confidence (>= threshold)
    let status = agent.apply_routing(0.85);
    assert!(
        matches!(status, RigAgentStatus::HighConfidence(c) if c == 0.85),
        "Expected HighConfidence(0.85), got {:?}",
        status
    );

    // Low confidence (< threshold)
    let status = agent.apply_routing(0.5);
    assert!(
        matches!(status, RigAgentStatus::LowConfidence(c) if c == 0.5),
        "Expected LowConfidence(0.5), got {:?}",
        status
    );
}

#[test]
fn test_apply_routing_with_high_medium_low_routes() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, ConfidenceRoute, ConfidenceRouting,
        RouteAction,
    };

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.7,
                routing: Some(ConfidenceRouting {
                    high: ConfidenceRoute {
                        min: Some(0.85),
                        action: RouteAction::Accept,
                        escalate_to: None,
                    },
                    medium: ConfidenceRoute {
                        min: Some(0.7),
                        action: RouteAction::AcceptWithFlag,
                        escalate_to: None,
                    },
                    low: ConfidenceRoute {
                        min: None,
                        action: RouteAction::Escalate,
                        escalate_to: Some("human".to_string()),
                    },
                }),
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // High confidence route (>= 0.85)
    let status = agent.apply_routing(0.92);
    assert!(
        matches!(status, RigAgentStatus::HighConfidence(c) if c == 0.92),
        "Expected HighConfidence for 0.92, got {:?}",
        status
    );

    // Medium confidence route (>= 0.7, < 0.85)
    let status = agent.apply_routing(0.75);
    assert!(
        matches!(status, RigAgentStatus::FlaggedForReview(c) if c == 0.75),
        "Expected FlaggedForReview for 0.75, got {:?}",
        status
    );

    // Low confidence route (< 0.7)
    let status = agent.apply_routing(0.5);
    assert!(
        matches!(status, RigAgentStatus::Escalated(c) if c == 0.5),
        "Expected Escalated for 0.5, got {:?}",
        status
    );
}

#[test]
fn test_apply_routing_retry_action() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, ConfidenceRoute, ConfidenceRouting,
        RouteAction,
    };

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.7,
                routing: Some(ConfidenceRouting {
                    high: ConfidenceRoute {
                        min: Some(0.9),
                        action: RouteAction::Accept,
                        escalate_to: None,
                    },
                    medium: ConfidenceRoute {
                        min: Some(0.7),
                        action: RouteAction::AcceptWithFlag,
                        escalate_to: None,
                    },
                    low: ConfidenceRoute {
                        min: None,
                        action: RouteAction::Retry, // Low confidence -> retry
                        escalate_to: None,
                    },
                }),
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Low confidence with Retry action
    let status = agent.apply_routing(0.5);
    assert!(
        matches!(status, RigAgentStatus::LowConfidence(c) if c == 0.5),
        "Expected LowConfidence for Retry action, got {:?}",
        status
    );
}

#[test]
fn test_route_action_to_status_all_variants() {
    use crate::ast::completion::RouteAction;

    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    assert!(matches!(
        agent.route_action_to_status(&RouteAction::Accept, 0.9),
        RigAgentStatus::HighConfidence(c) if c == 0.9
    ));

    assert!(matches!(
        agent.route_action_to_status(&RouteAction::AcceptWithFlag, 0.75),
        RigAgentStatus::FlaggedForReview(c) if c == 0.75
    ));

    assert!(matches!(
        agent.route_action_to_status(&RouteAction::Retry, 0.5),
        RigAgentStatus::LowConfidence(c) if c == 0.5
    ));

    assert!(matches!(
        agent.route_action_to_status(&RouteAction::Escalate, 0.3),
        RigAgentStatus::Escalated(c) if c == 0.3
    ));
}

#[test]
fn test_get_confidence_routing_present() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, ConfidenceRoute, ConfidenceRouting,
        RouteAction,
    };

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.7,
                routing: Some(ConfidenceRouting {
                    high: ConfidenceRoute {
                        min: Some(0.9),
                        action: RouteAction::Accept,
                        escalate_to: None,
                    },
                    medium: ConfidenceRoute {
                        min: Some(0.7),
                        action: RouteAction::AcceptWithFlag,
                        escalate_to: None,
                    },
                    low: ConfidenceRoute {
                        min: None,
                        action: RouteAction::Escalate,
                        escalate_to: Some("human".to_string()),
                    },
                }),
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    let routing = agent.get_confidence_routing();
    assert!(routing.is_some());

    let r = routing.unwrap();
    assert_eq!(r.high.min, Some(0.9));
    assert_eq!(r.high.action, RouteAction::Accept);
    assert_eq!(r.low.escalate_to, Some("human".to_string()));
}

#[test]
fn test_get_confidence_routing_absent() {
    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    assert!(agent.get_confidence_routing().is_none());
}

#[test]
fn test_flagged_and_escalated_status_properties() {
    // FlaggedForReview
    let flagged = RigAgentStatus::FlaggedForReview(0.75);
    assert_eq!(flagged.as_canonical_str(), "tool_complete_flagged");
    assert_eq!(flagged.confidence(), Some(0.75));
    assert!(!flagged.requires_retry());

    // Escalated
    let escalated = RigAgentStatus::Escalated(0.4);
    assert_eq!(escalated.as_canonical_str(), "escalated");
    assert_eq!(escalated.confidence(), Some(0.4));
    assert!(!escalated.requires_retry());
}

#[test]
fn test_determine_status_with_routing() {
    use crate::ast::completion::{
        CompletionConfig, CompletionMode, ConfidenceConfig, ConfidenceRoute, ConfidenceRouting,
        RouteAction,
    };
    use crate::runtime::builtin::COMPLETION_MARKER;

    let params = AgentParams {
        prompt: "Test".to_string(),
        completion: Some(CompletionConfig {
            mode: CompletionMode::Explicit,
            confidence: Some(ConfidenceConfig {
                threshold: 0.7,
                routing: Some(ConfidenceRouting {
                    high: ConfidenceRoute {
                        min: Some(0.85),
                        action: RouteAction::Accept,
                        escalate_to: None,
                    },
                    medium: ConfidenceRoute {
                        min: Some(0.7),
                        action: RouteAction::AcceptWithFlag,
                        escalate_to: None,
                    },
                    low: ConfidenceRoute {
                        min: None,
                        action: RouteAction::Escalate,
                        escalate_to: Some("supervisor".to_string()),
                    },
                }),
                ..Default::default()
            }),
            ..Default::default()
        }),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Medium confidence -> FlaggedForReview
    let response = format!(
        r#"{{"completed": true, "result": "done", "confidence": 0.78, "marker": "{}"}}"#,
        COMPLETION_MARKER
    );
    let status = agent.determine_status(&response);
    assert!(
        matches!(status, RigAgentStatus::FlaggedForReview(c) if (c - 0.78).abs() < 0.001),
        "Expected FlaggedForReview(0.78), got {:?}",
        status
    );

    // Low confidence -> Escalated
    let response = format!(
        r#"{{"completed": true, "result": "done", "confidence": 0.5, "marker": "{}"}}"#,
        COMPLETION_MARKER
    );
    let status = agent.determine_status(&response);
    assert!(
        matches!(status, RigAgentStatus::Escalated(c) if (c - 0.5).abs() < 0.001),
        "Expected Escalated(0.5), got {:?}",
        status
    );
}

// ========================================================================
// Extended Thinking Tests
// ========================================================================

#[test]
fn test_agent_loop_with_extended_thinking_creates_successfully() {
    let params = AgentParams {
        prompt: "Analyze this problem step by step".to_string(),
        extended_thinking: Some(true),
        provider: Some("claude".to_string()),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("thinking-test".to_string(), params, event_log, mcp_clients);

    assert!(
        agent.is_ok(),
        "Agent with extended_thinking should be created"
    );
}

#[test]
fn test_agent_loop_extended_thinking_false_creates_successfully() {
    let params = AgentParams {
        prompt: "Simple query".to_string(),
        extended_thinking: Some(false),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new(
        "no-thinking-test".to_string(),
        params,
        event_log,
        mcp_clients,
    );

    assert!(
        agent.is_ok(),
        "Agent with extended_thinking: false should be created"
    );
}

#[test]
fn test_agent_loop_extended_thinking_none_creates_successfully() {
    let params = AgentParams {
        prompt: "Default behavior".to_string(),
        extended_thinking: None,
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("default-test".to_string(), params, event_log, mcp_clients);

    assert!(
        agent.is_ok(),
        "Agent with extended_thinking: None should be created"
    );
}

#[test]
fn test_agent_loop_with_system_prompt_and_thinking() {
    let params = AgentParams {
        prompt: "What is 2+2?".to_string(),
        system: Some("You are a math tutor. Think step by step.".to_string()),
        extended_thinking: Some(true),
        provider: Some("claude".to_string()),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new(
        "system-thinking-test".to_string(),
        params,
        event_log,
        mcp_clients,
    );

    assert!(
        agent.is_ok(),
        "Agent with system prompt and thinking should be created"
    );
}

// ========================================================================
// GuardrailCheckResult Tests
// ========================================================================

#[test]
fn test_guardrail_check_result_all_passed() {
    let result = GuardrailCheckResult::AllPassed;
    assert!(result.is_passed());
    assert!(!result.should_retry());
    assert!(!result.should_escalate());
    assert!(!result.should_fail());
}

#[test]
fn test_guardrail_check_result_failed_retry() {
    let result = GuardrailCheckResult::FailedRetry;
    assert!(!result.is_passed());
    assert!(result.should_retry());
    assert!(!result.should_escalate());
    assert!(!result.should_fail());
}

#[test]
fn test_guardrail_check_result_failed_escalate() {
    let result = GuardrailCheckResult::FailedEscalate;
    assert!(!result.is_passed());
    assert!(!result.should_retry());
    assert!(result.should_escalate());
    assert!(!result.should_fail());
}

#[test]
fn test_guardrail_check_result_failed_immediate() {
    let result = GuardrailCheckResult::FailedImmediate;
    assert!(!result.is_passed());
    assert!(!result.should_retry());
    assert!(!result.should_escalate());
    assert!(result.should_fail());
}

#[test]
fn test_check_guardrails_empty_returns_all_passed() {
    let params = AgentParams {
        prompt: "Test".to_string(),
        guardrails: vec![], // No guardrails
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    let result = agent.check_guardrails("Any output");
    assert_eq!(result, GuardrailCheckResult::AllPassed);
}

#[test]
fn test_check_guardrails_passing() {
    use crate::ast::guardrails::{GuardrailConfig, LengthGuardrail, OnFailure};

    let params = AgentParams {
        prompt: "Test".to_string(),
        guardrails: vec![GuardrailConfig::Length(LengthGuardrail {
            id: Some("word-count".to_string()),
            min_words: Some(2),
            max_words: Some(10),
            min_chars: None,
            max_chars: None,
            message: None,
            on_failure: OnFailure::Retry,
        })],
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Output has 4 words, within bounds
    let result = agent.check_guardrails("This is a test");
    assert_eq!(result, GuardrailCheckResult::AllPassed);
}

#[test]
fn test_check_guardrails_failed_retry() {
    use crate::ast::guardrails::{GuardrailConfig, LengthGuardrail, OnFailure};

    let params = AgentParams {
        prompt: "Test".to_string(),
        guardrails: vec![GuardrailConfig::Length(LengthGuardrail {
            id: Some("word-count".to_string()),
            min_words: Some(10), // Requires at least 10 words
            max_words: None,
            min_chars: None,
            max_chars: None,
            message: None,
            on_failure: OnFailure::Retry, // Default
        })],
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Output has only 4 words
    let result = agent.check_guardrails("This is a test");
    assert_eq!(result, GuardrailCheckResult::FailedRetry);
}

#[test]
fn test_check_guardrails_failed_escalate() {
    use crate::ast::guardrails::{GuardrailConfig, LengthGuardrail, OnFailure};

    let params = AgentParams {
        prompt: "Test".to_string(),
        guardrails: vec![GuardrailConfig::Length(LengthGuardrail {
            id: Some("word-count".to_string()),
            min_words: Some(10), // Requires at least 10 words
            max_words: None,
            min_chars: None,
            max_chars: None,
            message: None,
            on_failure: OnFailure::Escalate, // Escalate on failure
        })],
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Output has only 4 words
    let result = agent.check_guardrails("This is a test");
    assert_eq!(result, GuardrailCheckResult::FailedEscalate);
}

#[test]
fn test_check_guardrails_failed_immediate() {
    use crate::ast::guardrails::{GuardrailConfig, LengthGuardrail, OnFailure};

    let params = AgentParams {
        prompt: "Test".to_string(),
        guardrails: vec![GuardrailConfig::Length(LengthGuardrail {
            id: Some("word-count".to_string()),
            min_words: Some(10), // Requires at least 10 words
            max_words: None,
            min_chars: None,
            max_chars: None,
            message: None,
            on_failure: OnFailure::Fail, // Fail immediately
        })],
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Output has only 4 words
    let result = agent.check_guardrails("This is a test");
    assert_eq!(result, GuardrailCheckResult::FailedImmediate);
}

#[test]
fn test_check_guardrails_priority_immediate_over_escalate() {
    use crate::ast::guardrails::{GuardrailConfig, LengthGuardrail, OnFailure};

    let params = AgentParams {
        prompt: "Test".to_string(),
        guardrails: vec![
            GuardrailConfig::Length(LengthGuardrail {
                id: Some("escalate-guard".to_string()),
                min_words: Some(10),
                max_words: None,
                min_chars: None,
                max_chars: None,
                message: None,
                on_failure: OnFailure::Escalate,
            }),
            GuardrailConfig::Length(LengthGuardrail {
                id: Some("fail-guard".to_string()),
                min_words: Some(20), // This will also fail
                max_words: None,
                min_chars: None,
                max_chars: None,
                message: None,
                on_failure: OnFailure::Fail, // Higher priority
            }),
        ],
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Output has only 4 words, both guardrails fail
    // But Fail has higher priority than Escalate
    let result = agent.check_guardrails("This is a test");
    assert_eq!(result, GuardrailCheckResult::FailedImmediate);
}

#[test]
fn test_check_guardrails_priority_escalate_over_retry() {
    use crate::ast::guardrails::{GuardrailConfig, LengthGuardrail, OnFailure};

    let params = AgentParams {
        prompt: "Test".to_string(),
        guardrails: vec![
            GuardrailConfig::Length(LengthGuardrail {
                id: Some("retry-guard".to_string()),
                min_words: Some(10),
                max_words: None,
                min_chars: None,
                max_chars: None,
                message: None,
                on_failure: OnFailure::Retry,
            }),
            GuardrailConfig::Length(LengthGuardrail {
                id: Some("escalate-guard".to_string()),
                min_words: Some(20),
                max_words: None,
                min_chars: None,
                max_chars: None,
                message: None,
                on_failure: OnFailure::Escalate, // Higher priority
            }),
        ],
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Output has only 4 words, both guardrails fail
    // But Escalate has higher priority than Retry
    let result = agent.check_guardrails("This is a test");
    assert_eq!(result, GuardrailCheckResult::FailedEscalate);
}

#[test]
fn test_check_guardrails_emits_escalation_event() {
    use crate::ast::guardrails::{GuardrailConfig, LengthGuardrail, OnFailure};

    let params = AgentParams {
        prompt: "Test".to_string(),
        guardrails: vec![GuardrailConfig::Length(LengthGuardrail {
            id: Some("escalate-guard".to_string()),
            min_words: Some(10),
            max_words: None,
            min_chars: None,
            max_chars: None,
            message: Some("Output too short".to_string()),
            on_failure: OnFailure::Escalate,
        })],
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();

    let agent =
        RigAgentLoop::new("test".to_string(), params, event_log.clone(), mcp_clients).unwrap();

    // Output has only 4 words
    let result = agent.check_guardrails("This is a test");
    assert_eq!(result, GuardrailCheckResult::FailedEscalate);

    // Verify events were emitted
    let events = event_log.events();
    assert!(
        events.len() >= 2,
        "Should have at least 2 events (failed + escalation)"
    );

    // Check for GuardrailFailed event
    let has_failed = events
        .iter()
        .any(|e| matches!(e.kind, EventKind::GuardrailFailed { .. }));
    assert!(has_failed, "Should have GuardrailFailed event");

    // Check for GuardrailEscalation event
    let has_escalation = events
        .iter()
        .any(|e| matches!(e.kind, EventKind::GuardrailEscalation { .. }));
    assert!(has_escalation, "Should have GuardrailEscalation event");
}

// ========================================================================
// Wave 2: Deep Audit - Bug-Proving Tests
// ========================================================================

// ---- BUG: chat_continue() missing Gemini check ----
// chat_continue() error message claims GEMINI_API_KEY is supported,
// but no `has_key("GEMINI_API_KEY")` check exists.
// This test proves that even when GEMINI_API_KEY is the only key set,
// chat_continue returns an error instead of dispatching to Gemini.
//
// FIX: Add `if has_key("GEMINI_API_KEY") { return self.chat_continue_gemini(prompt).await; }`
// before the Err(...) in chat_continue(), and implement chat_continue_gemini().
#[tokio::test]
async fn wave2_chat_continue_missing_gemini_dispatch() {
    // Temporarily set ONLY GEMINI_API_KEY (clear all others)
    // Save originals
    let keys = [
        "ANTHROPIC_API_KEY",
        "OPENAI_API_KEY",
        "MISTRAL_API_KEY",
        "GROQ_API_KEY",
        "DEEPSEEK_API_KEY",
    ];
    let saved: Vec<Option<String>> = keys.iter().map(|k| std::env::var(k).ok()).collect();

    // Clear all LLM keys
    for key in &keys {
        std::env::remove_var(key);
    }
    // Set only Gemini
    let saved_gemini = std::env::var("GEMINI_API_KEY").ok();
    std::env::set_var("GEMINI_API_KEY", "test-gemini-key-for-audit");

    let params = AgentParams {
        prompt: "Test Gemini dispatch".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();
    let mut agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    let result = agent.chat_continue("Hello").await;

    // Restore env
    for (i, key) in keys.iter().enumerate() {
        match &saved[i] {
            Some(v) => std::env::set_var(key, v),
            None => std::env::remove_var(key),
        }
    }
    match saved_gemini {
        Some(v) => std::env::set_var("GEMINI_API_KEY", v),
        None => std::env::remove_var("GEMINI_API_KEY"),
    }

    // BUG: This SHOULD attempt to use Gemini (and fail at API call since key is fake).
    // Instead, it returns AgentValidationError because Gemini is not checked.
    // If the bug were fixed, this would be an AgentExecutionError (failed API call),
    // not an AgentValidationError.
    let err = result.expect_err("Should get an error (either validation or execution)");
    let err_str = err.to_string();

    // The bug: error is "chat_continue requires one of: ..." which mentions GEMINI_API_KEY
    // but never actually checks for it. If the bug were fixed, we would NOT get
    // this specific validation error.
    assert!(
        !err_str.contains("chat_continue requires one of"),
        "BUG PROVEN: chat_continue() does not check GEMINI_API_KEY despite listing it \
         in the error message. Got validation error: {}",
        err_str
    );
}

// ---- BUG: chat_continue whitespace inconsistency ----
// chat_continue() uses `!v.is_empty()` but core::providers::has_env_key() uses
// `!v.trim().is_empty()`. A key set to "   " (whitespace only) will pass
// chat_continue's check but fail at the provider level.
//
// FIX: Change `let has_key = |key: &str| std::env::var(key).is_ok_and(|v| !v.is_empty());`
// to `let has_key = |key: &str| std::env::var(key).is_ok_and(|v| !v.trim().is_empty());`
#[test]
fn wave2_chat_continue_whitespace_key_inconsistency() {
    // Simulate the two different checks
    let whitespace_only = "   ";

    // chat_continue's check: is_ok_and(|v| !v.is_empty())
    let chat_continue_accepts = !whitespace_only.is_empty();

    // core::providers::has_env_key check: is_ok_and(|v| !v.trim().is_empty())
    let core_providers_accepts = !whitespace_only.trim().is_empty();

    // BUG: chat_continue accepts whitespace-only keys, but the provider will reject them.
    // This means chat_continue dispatches to a provider that will fail at connection time,
    // giving a confusing error message instead of falling through to the next provider.
    assert_ne!(
        chat_continue_accepts, core_providers_accepts,
        "BUG PROVEN: chat_continue and core::providers disagree on whitespace-only keys. \
         chat_continue_accepts={}, core_providers_accepts={}",
        chat_continue_accepts, core_providers_accepts
    );
}

// ---- BUG: chat_continue_mistral/groq/deepseek hardcode NaturalCompletion ----
// These methods set `let status = RigAgentStatus::NaturalCompletion` instead of
// calling `self.determine_status(&response)`. This means if the agent calls
// nika:complete (which inserts COMPLETION_MARKER), the status is still NaturalCompletion
// instead of ExplicitCompletion.
//
// FIX: Replace `let status = RigAgentStatus::NaturalCompletion;` with
// `let status = self.determine_status(&response);` in all three methods.
#[test]
fn wave2_determine_status_detects_completion_but_mistral_ignores_it() {
    use crate::runtime::builtin::COMPLETION_MARKER;

    // Create agent to test determine_status
    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();
    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // A response containing the completion marker should be ExplicitCompletion
    let response_with_marker = format!("Task done. {}", COMPLETION_MARKER);
    let status = agent.determine_status(&response_with_marker);
    assert_eq!(
        status,
        RigAgentStatus::ExplicitCompletion,
        "determine_status correctly detects completion"
    );

    // BUG: Mistral/Groq/DeepSeek chat_continue methods hardcode NaturalCompletion
    // instead of calling determine_status(). We prove the bug by showing the code path:
    // Line 316 in chat.rs: `let status = RigAgentStatus::NaturalCompletion;`
    // Line 378 in chat.rs: `let status = RigAgentStatus::NaturalCompletion;`
    // Line 443 in chat.rs: `let status = RigAgentStatus::NaturalCompletion;`
    //
    // If the response contained a completion marker, these methods would still
    // report NaturalCompletion. We prove this by showing Claude/OpenAI DO call
    // determine_status but Mistral/Groq/DeepSeek do NOT.
    let hardcoded_status = RigAgentStatus::NaturalCompletion;
    assert_ne!(
        hardcoded_status, status,
        "BUG PROVEN: Mistral/Groq/DeepSeek hardcode NaturalCompletion ({:?}) \
         even when determine_status would return {:?} for a response with COMPLETION_MARKER",
        hardcoded_status, status
    );
}

// NOTE: test_turn_count_increments_correctly and
// wave2_turn_index_ambiguous_with_odd_history deleted — they called
// ChatAgentLoop methods (add_to_history, push_message, turn_count)
// on RigAgentLoop which doesn't have them. Broken audit tests.

// ---- BUG: MaxTurnsReached is a dead variant ----
// RigAgentStatus::MaxTurnsReached exists as a variant but is NEVER returned by
// determine_status() or any other code path. The variant exists on types.rs line 31,
// is_limit_reached() checks for it, but nothing ever produces it.
//
// FIX: Either remove the dead variant, or wire it up in the agent loop to check
// actual turn count against max_turns.
#[test]
fn wave2_max_turns_reached_never_produced() {
    // MaxTurnsReached variant exists and has methods
    let status = RigAgentStatus::MaxTurnsReached;
    assert!(
        status.is_limit_reached(),
        "MaxTurnsReached should be a limit"
    );
    assert_eq!(status.as_canonical_str(), "max_turns");
    assert!(!status.is_completed());

    // Verify determine_status never returns MaxTurnsReached
    // by testing every possible output pattern
    let params = AgentParams {
        prompt: "Test".to_string(),
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();
    let agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Test various outputs - none should return MaxTurnsReached
    let test_outputs = vec![
        "",
        "Hello world",
        "max_turns exceeded",
        "Maximum turns reached",
        "Too many iterations",
    ];

    for output in &test_outputs {
        let status = agent.determine_status(output);
        assert_ne!(
            status,
            RigAgentStatus::MaxTurnsReached,
            "determine_status should never return MaxTurnsReached"
        );
    }

    // Also check with completion marker - it returns ExplicitCompletion, not MaxTurnsReached
    use crate::runtime::builtin::COMPLETION_MARKER;
    let output_with_marker = format!("Done {}", COMPLETION_MARKER);
    let status = agent.determine_status(&output_with_marker);
    assert_ne!(
        status,
        RigAgentStatus::MaxTurnsReached,
        "Even with completion marker, MaxTurnsReached is never produced"
    );

    // BUG PROVEN: MaxTurnsReached is dead code. The variant exists, has utility methods
    // (is_limit_reached, as_canonical_str), but is never returned by any code path.
    // Similarly, TokenBudgetExceeded, CostLimitReached, DurationLimitReached, and
    // PartialCompletion are never produced by determine_status().
    //
    // Explicitly assert the dead variants exist but are unreachable:
    let dead_variants = vec![
        RigAgentStatus::MaxTurnsReached,
        RigAgentStatus::TokenBudgetExceeded,
        RigAgentStatus::CostLimitReached,
        RigAgentStatus::DurationLimitReached,
        RigAgentStatus::PartialCompletion,
    ];
    for variant in &dead_variants {
        // These variants exist and have string representations...
        let _ = variant.as_canonical_str();
        // ...but they are never produced. This test documents the dead code.
    }
}

// ---- BUG: Token u32 overflow in run_generic_provider_impl ----
// In providers.rs lines 400-401 and 447-448:
//   total_input_tokens += result.input_tokens;
//   total_output_tokens += result.output_tokens;
// These are u32 additions that can overflow with large values.
// Then on line 479:
//   total_tokens: (total_input_tokens + total_output_tokens) as u64,
// This performs the addition in u32 space BEFORE widening to u64.
//
// FIX: Use u64 for total_input_tokens and total_output_tokens, or use
// checked_add/saturating_add, and compute:
//   total_tokens: (total_input_tokens as u64) + (total_output_tokens as u64),
#[test]
fn wave2_token_overflow_u32_addition_before_widening() {
    // Simulate the arithmetic from run_generic_provider_impl
    let total_input_tokens: u32 = u32::MAX - 100; // 4_294_967_195
    let total_output_tokens: u32 = u32::MAX - 200; // 4_294_967_095

    // The code does: (total_input_tokens + total_output_tokens) as u64
    // This overflows in u32 space, then the garbage value is cast to u64
    let buggy_result = (total_input_tokens.wrapping_add(total_output_tokens)) as u64;

    // Correct result using u64 arithmetic
    let correct_result = (total_input_tokens as u64) + (total_output_tokens as u64);

    // BUG PROVEN: The wrapping u32 addition produces a wrong value when widened to u64
    assert_ne!(
        buggy_result, correct_result,
        "BUG PROVEN: u32 overflow before widening to u64. \
         Buggy: {}, Correct: {}",
        buggy_result, correct_result
    );

    // Also demonstrate the per-turn accumulation overflow
    let total: u32 = u32::MAX - 50;
    let result_tokens: u32 = 100;
    // In real code: total_input_tokens += result.input_tokens
    // This panics in debug mode, wraps in release mode
    let overflowed = total.checked_add(result_tokens);
    assert!(
        overflowed.is_none(),
        "BUG PROVEN: u32 accumulation overflows when tokens exceed u32::MAX"
    );
}

// ---- BUG: Tools consumed on single use via std::mem::take ----
// In providers.rs line 110 (run_claude) and line 187 (run_openai) and line 372 (generic):
//   let tools = std::mem::take(&mut self.tools);
// After the first call, self.tools is empty Vec. A second call runs with zero tools silently.
//
// FIX: Either document this as "single-use" and prevent second calls (add a `consumed` flag),
// or clone tools instead of taking them.
#[test]
fn wave2_tools_consumed_after_first_take() {
    let params = AgentParams {
        prompt: "Test".to_string(),
        tools: vec!["nika:log".to_string()],
        ..Default::default()
    };
    let event_log = EventLog::new();
    let mcp_clients = FxHashMap::default();
    let mut agent = RigAgentLoop::new("test".to_string(), params, event_log, mcp_clients).unwrap();

    // Agent should have tools (at minimum nika:log)
    let initial_count = agent.tool_count();
    assert!(
        initial_count > 0,
        "Agent should have at least 1 tool after construction"
    );

    // Simulate what run_claude/run_openai/run_generic_provider_impl do:
    // `let tools = std::mem::take(&mut self.tools);`
    let taken_tools = std::mem::take(&mut agent.tools);
    assert_eq!(taken_tools.len(), initial_count);

    // BUG: After taking, tools is empty. A second run_* call would have zero tools.
    let second_count = agent.tool_count();
    assert_eq!(
        second_count, 0,
        "BUG PROVEN: After std::mem::take, tools is empty. \
         A second run_claude()/run_openai() call would silently run with zero tools. \
         Initial: {}, After take: {}",
        initial_count, second_count
    );
}

// ---- BUG: run_claude and run_openai total_tokens overflow ----
// In providers.rs lines 161 and 237:
//   total_tokens: (result.input_tokens + result.output_tokens) as u64,
// This performs u32 + u32 which can overflow before cast to u64.
//
// FIX: Use (result.input_tokens as u64) + (result.output_tokens as u64)
#[test]
fn wave2_streaming_result_token_overflow() {
    // StreamingResult is pub(super) so we test the arithmetic directly.
    // The type uses u32 for input_tokens and output_tokens.
    let input_tokens: u32 = u32::MAX; // 4_294_967_295
    let output_tokens: u32 = u32::MAX; // 4_294_967_295

    // The buggy code pattern from providers.rs:
    //   total_tokens: (result.input_tokens + result.output_tokens) as u64
    // This overflows u32 before widening to u64
    let buggy = input_tokens.wrapping_add(output_tokens) as u64;

    // Correct: widen first, then add
    let correct = (input_tokens as u64) + (output_tokens as u64);

    assert_ne!(
        buggy, correct,
        "BUG PROVEN: u32 token addition overflows before u64 cast. \
         Buggy: {}, Correct: {}",
        buggy, correct
    );
}

// ---- BUG: max_tokens hardcoded to 8192 ignoring params.effective_max_tokens() ----
// In streaming.rs line 60: `let request = request_builder.max_tokens(8192).build();`
// In chat.rs lines 131, 219, 294, 356, 421: `.max_tokens(8192)`
// AgentParams has max_tokens field and effective_max_tokens() method, but they are ignored.
//
// FIX: Use `self.params.effective_max_tokens().unwrap_or(8192)` instead of hardcoded 8192.
#[test]
fn wave2_max_tokens_hardcoded_ignores_params() {
    // AgentParams supports max_tokens configuration
    let params = AgentParams {
        prompt: "Test".to_string(),
        max_tokens: Some(16384), // User wants 16k tokens
        ..Default::default()
    };

    // The effective_max_tokens() method exists and returns the configured value
    let effective = params.effective_max_tokens();
    assert_eq!(
        effective,
        Some(16384),
        "effective_max_tokens should return the configured value"
    );

    // BUG: The streaming/chat code ignores this and uses hardcoded 8192.
    // We can't directly test the internal builder value, but we CAN prove
    // that the params have max_tokens=16384 while the code would use 8192.
    let hardcoded_value: u64 = 8192;
    let user_configured: u64 = effective.unwrap() as u64;
    assert_ne!(
        hardcoded_value, user_configured,
        "BUG PROVEN: User configured max_tokens={} but streaming/chat code \
         hardcodes max_tokens={}. The effective_max_tokens() method exists \
         but is not called in streaming.rs or chat.rs (except thinking.rs which does it correctly).",
        user_configured, hardcoded_value
    );
}