dirge-agent 0.12.5

Minimalistic coding agent written in Rust, optimized for memory footprint and performance
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
//! dirge-kwz — end-to-end integration tests for `run_agent_loop`
//! outside the `h7_smoke` provider-stream harness.
//!
//! These tests drive the full loop via mock `StreamFn`s + recording
//! `LoopTool`s. They exercise:
//!   1. single-turn happy path event sequence
//!   2. tool-call → result → second turn flow
//!   3. parallel tool-call ordering invariants
//!   4. storm-breaker tripping on 3rd identical call
//!   5. AbortSignal cancellation mid-stream
//!   6. repair-exhaustion arming the escalation stream
//!
//! Mock patterns mirror `run_tests.rs` (canned StreamFn factories,
//! inline LoopTool impls). The intent is end-to-end coverage of the
//! `run_agent_loop` public API as the loop's primary consumers will
//! drive it.

use super::*;
use crate::agent::agent_loop::message::{StreamEvent, UserMessage};
use crate::agent::agent_loop::result::LoopToolResult;
use crate::agent::agent_loop::stream::StreamFn;
use crate::agent::agent_loop::tool::{AbortSignal, LoopTool, LoopToolUpdate};
use crate::agent::agent_loop::types::{ConvertToLlmFn, LoopConfig, ToolExecutionMode};
use serde_json::Value;
use std::future::Future;
use std::pin::Pin;
use std::sync::Mutex;
use std::sync::atomic::{AtomicUsize, Ordering};
use tokio::sync::mpsc;

// ---------------------------------------------------------------
// Helpers — copy-paste-adapted from run_tests.rs.
// ---------------------------------------------------------------

fn identity_converter() -> ConvertToLlmFn {
    std::sync::Arc::new(|messages: &[Value]| {
        messages
            .iter()
            .filter(|m| {
                let role = m.get("role").and_then(|r| r.as_str()).unwrap_or("");
                matches!(role, "user" | "assistant" | "tool" | "toolResult")
            })
            .cloned()
            .collect()
    })
}

fn build_config() -> LoopConfig {
    LoopConfig {
        convert_to_llm: identity_converter(),
        transform_context: None,
        compaction_hooks: None,
        get_api_key: None,
        api_key: None,
        tool_execution: ToolExecutionMode::Parallel,
        before_tool_call: None,
        after_tool_call: None,
        prepare_next_turn: None,
        should_stop_after_turn: None,
        get_steering_messages: None,
        get_followup_messages: None,
        reasoning: None,
        thinking_budgets: None,
        headers: std::collections::HashMap::new(),
        metadata: std::collections::HashMap::new(),
        request_timeout: None,
        provider_name: None,
        model_name: None,
        compact_model: None,
        storm_mutating_tools: None,
        storm_exempt_tools: None,
        repair_stats: std::sync::Arc::new(
            crate::agent::agent_loop::tool_input_repair::RepairStats::new(),
        ),
        truncation_notes: std::sync::Arc::new(std::sync::Mutex::new(
            std::collections::HashMap::new(),
        )),
        tool_def_filter: None,
        dynamic_tool_search: false,
        escalation_stream_fn: None,
        escalation_provider_name: None,
        escalation_pending: std::sync::Arc::new(std::sync::Mutex::new(None)),
        escalation_max_per_session: 3,
        escalation_remaining: std::sync::Arc::new(std::sync::atomic::AtomicUsize::new(3)),
        file_touch_tracker: None,
        verifier: None,
        critic_fn: None,
        goal: None,
        max_turns: None,
    }
}

fn empty_context() -> Context {
    Context {
        system_prompt: String::new(),
        messages: Vec::new(),
        tools: Vec::new(),
    }
}

fn user(text: &str) -> LoopMessage {
    LoopMessage::User(UserMessage {
        content: text.to_string(),
    })
}

fn text_response(text: &str) -> AssistantMessage {
    AssistantMessage::new(
        vec![ContentBlock::Text {
            text: text.to_string(),
        }],
        StopReason::Stop,
    )
}

fn tool_use_response(id: &str, name: &str, args: Value) -> AssistantMessage {
    AssistantMessage::new(
        vec![ContentBlock::ToolCall {
            id: id.to_string(),
            name: name.to_string(),
            arguments: args,
        }],
        StopReason::ToolUse,
    )
}

fn multi_tool_use_response(calls: Vec<(&str, &str, Value)>) -> AssistantMessage {
    let content = calls
        .into_iter()
        .map(|(id, name, args)| ContentBlock::ToolCall {
            id: id.to_string(),
            name: name.to_string(),
            arguments: args,
        })
        .collect();
    AssistantMessage::new(content, StopReason::ToolUse)
}

async fn drain(rx: &mut mpsc::Receiver<LoopEvent>) -> Vec<LoopEvent> {
    let mut out = Vec::new();
    while let Some(e) = rx.recv().await {
        out.push(e);
    }
    out
}

/// Recording mock tool — records (id, args) per call and returns a
/// pre-canned content payload. The execution mode can be configured
/// so the same impl works for sequential and parallel batch tests.
#[derive(Debug)]
struct RecordingTool {
    name_str: String,
    mode: Option<ToolExecutionMode>,
    parameters: Value,
    /// (id, args) per call.
    calls: std::sync::Arc<Mutex<Vec<(String, Value)>>>,
    /// Per-call optional sleep so we can sequence completion order
    /// in the parallel test.
    sleep_ms: u64,
}

impl RecordingTool {
    fn new(name: &str) -> Self {
        Self {
            name_str: name.to_string(),
            mode: None,
            parameters: serde_json::json!({"type": "object"}),
            calls: std::sync::Arc::new(Mutex::new(Vec::new())),
            sleep_ms: 0,
        }
    }

    fn with_sleep_ms(mut self, ms: u64) -> Self {
        self.sleep_ms = ms;
        self
    }

    fn calls(&self) -> Vec<(String, Value)> {
        self.calls.lock().unwrap().clone()
    }
}

impl LoopTool for RecordingTool {
    fn name(&self) -> &str {
        &self.name_str
    }
    fn description(&self) -> &str {
        "Recording mock tool"
    }
    fn label(&self) -> &str {
        "Recording"
    }
    fn parameters(&self) -> &Value {
        &self.parameters
    }
    fn execution_mode(&self) -> Option<ToolExecutionMode> {
        self.mode
    }
    fn execute<'a>(
        &'a self,
        id: &'a str,
        args: Value,
        _signal: AbortSignal,
        _on_update: LoopToolUpdate,
    ) -> Pin<Box<dyn Future<Output = Result<LoopToolResult, String>> + Send + 'a>> {
        let calls = self.calls.clone();
        let id = id.to_string();
        let sleep_ms = self.sleep_ms;
        Box::pin(async move {
            if sleep_ms > 0 {
                tokio::time::sleep(std::time::Duration::from_millis(sleep_ms)).await;
            }
            calls.lock().unwrap().push((id.clone(), args.clone()));
            Ok(LoopToolResult {
                content: vec![serde_json::json!({"type": "text", "text": "ok"})],
                details: args,
                terminate: None,
            })
        })
    }
}

/// Build a StreamFn that emits a scripted sequence of StreamEvent
/// batches — one batch per LLM call. Each batch is a Vec yielded
/// by `futures::stream::iter`.
fn scripted_stream(batches: Vec<Vec<StreamEvent>>) -> StreamFn {
    let counter = std::sync::Arc::new(AtomicUsize::new(0));
    let batches = std::sync::Arc::new(batches);
    std::sync::Arc::new(move |_ctx, _opts| {
        let n = counter.fetch_add(1, Ordering::SeqCst);
        let batch = batches.get(n).cloned().unwrap_or_else(|| {
            vec![StreamEvent::Done {
                reason: StopReason::Stop,
                message: AssistantMessage::new(
                    vec![ContentBlock::Text {
                        text: "end".to_string(),
                    }],
                    StopReason::Stop,
                ),
                usage: None,
            }]
        });
        Box::pin(futures::stream::iter(batch))
    })
}

// ===============================================================
// 1. Single-turn happy path
// ===============================================================

/// Mock stream emits `Start` → text deltas → `Done`. Loop should
/// emit: AgentStart, TurnStart, MessageStart (user), MessageEnd
/// (user), MessageStart (assistant), MessageEnd (assistant),
/// TurnEnd, AgentEnd.
#[tokio::test]
async fn kwz_single_turn_happy_path_event_sequence() {
    let starting = AssistantMessage::new(Vec::new(), StopReason::Stop);
    let partial_a = AssistantMessage::new(
        vec![ContentBlock::Text {
            text: "Hello".to_string(),
        }],
        StopReason::Stop,
    );
    let partial_b = AssistantMessage::new(
        vec![ContentBlock::Text {
            text: "Hello world".to_string(),
        }],
        StopReason::Stop,
    );

    let stream = scripted_stream(vec![vec![
        StreamEvent::Start {
            partial: starting.clone(),
        },
        StreamEvent::Delta {
            partial: partial_a.clone(),
            phase: super::message::DeltaPhase::TextStart,
        },
        StreamEvent::Delta {
            partial: partial_b.clone(),
            phase: super::message::DeltaPhase::TextDelta,
        },
        StreamEvent::Done {
            reason: StopReason::Stop,
            message: partial_b.clone(),
            usage: None,
        },
    ]]);

    let (tx, mut rx) = mpsc::channel::<LoopEvent>(64);
    let messages = run_agent_loop(
        vec![user("hi")],
        empty_context(),
        build_config(),
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None, // memory_provider — test default
    )
    .await;
    drop(tx);

    let events = drain(&mut rx).await;
    let kinds: Vec<&str> = events.iter().map(|e| e.kind()).collect();

    // Strictly assert the required event types in the order they
    // should fire. `message_update` events fire between
    // message_start and message_end for the assistant turn; we
    // allow them but anchor the sequence by the bracketed events.
    let agent_start = kinds
        .iter()
        .position(|k| *k == "agent_start")
        .expect("agent_start fires");
    let turn_start = kinds
        .iter()
        .position(|k| *k == "turn_start")
        .expect("turn_start fires");
    let turn_end = kinds
        .iter()
        .position(|k| *k == "turn_end")
        .expect("turn_end fires");
    let agent_end = kinds
        .iter()
        .position(|k| *k == "agent_end")
        .expect("agent_end fires");

    assert!(agent_start < turn_start, "agent_start before turn_start");
    assert!(turn_start < turn_end, "turn_start before turn_end");
    assert!(turn_end < agent_end, "turn_end before agent_end");

    // Two message_start / message_end pairs: one for user prompt,
    // one for the assistant. (Plus message_update events between.)
    let starts = kinds.iter().filter(|k| **k == "message_start").count();
    let ends = kinds.iter().filter(|k| **k == "message_end").count();
    assert_eq!(starts, 2, "user + assistant message_start; got {kinds:?}");
    assert_eq!(ends, 2, "user + assistant message_end; got {kinds:?}");

    // Returned transcript: user + assistant.
    assert_eq!(messages.len(), 2);
    assert_eq!(messages[0].role(), "user");
    assert_eq!(messages[1].role(), "assistant");
}

// ===============================================================
// 2. Tool-call turn
// ===============================================================

/// Mock stream: turn 1 emits tool call; loop dispatches against
/// RecordingTool; turn 2 emits final text. Assert tool invoked
/// once with the right args; second LLM call happened.
#[tokio::test]
async fn kwz_tool_call_turn_dispatches_and_continues() {
    let tool = std::sync::Arc::new(RecordingTool::new("echo"));
    let mut ctx = empty_context();
    ctx.tools.push(tool.clone());

    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("call-1", "echo", serde_json::json!({"a": 1})),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
    ]);

    let (tx, mut rx) = mpsc::channel::<LoopEvent>(128);
    let messages = run_agent_loop(
        vec![user("call echo")],
        ctx,
        build_config(),
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None, // memory_provider — test default
    )
    .await;
    drop(tx);

    // Tool invoked exactly once with the original args.
    let calls = tool.calls();
    assert_eq!(calls.len(), 1, "echo invoked once");
    assert_eq!(calls[0].0, "call-1");
    assert_eq!(calls[0].1, serde_json::json!({"a": 1}));

    // Second assistant turn ran (text_response landed).
    // Roles: user, assistant(tool_use), toolResult, assistant(text).
    let roles: Vec<&'static str> = messages.iter().map(|m| m.role()).collect();
    assert_eq!(roles, vec!["user", "assistant", "toolResult", "assistant"]);

    // Required events.
    let kinds: Vec<&str> = drain(&mut rx).await.iter().map(|e| e.kind()).collect();
    for required in [
        "agent_start",
        "tool_execution_start",
        "tool_execution_end",
        "agent_end",
    ] {
        assert!(kinds.contains(&required), "missing {required}: {kinds:?}");
    }
    // AgentEnd fires.
    assert_eq!(kinds.last().copied(), Some("agent_end"));
}

// ===============================================================
// 3. Parallel tool calls
// ===============================================================

/// Two parallel tool calls in one assistant message. Both invoked,
/// both ToolResult events land. Source-order assertions on the
/// message_start / message_end side; completion-order doesn't
/// matter for this test (we just verify ordering invariants).
#[tokio::test]
async fn kwz_parallel_tool_calls_both_dispatched() {
    let tool = std::sync::Arc::new(RecordingTool::new("echo").with_sleep_ms(20));
    let mut ctx = empty_context();
    ctx.tools.push(tool.clone());

    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: multi_tool_use_response(vec![
                ("call-A", "echo", serde_json::json!({"v": 1})),
                ("call-B", "echo", serde_json::json!({"v": 2})),
            ]),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
    ]);

    let mut cfg = build_config();
    cfg.tool_execution = ToolExecutionMode::Parallel;

    let (tx, mut rx) = mpsc::channel::<LoopEvent>(256);
    let _messages = run_agent_loop(
        vec![user("parallel")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None, // memory_provider — test default
    )
    .await;
    drop(tx);

    // Tool invoked twice with distinct ids + args.
    let calls = tool.calls();
    assert_eq!(calls.len(), 2, "echo invoked twice");
    let ids: std::collections::HashSet<&str> = calls.iter().map(|(i, _)| i.as_str()).collect();
    assert!(ids.contains("call-A"), "saw call-A");
    assert!(ids.contains("call-B"), "saw call-B");

    let events = drain(&mut rx).await;

    // Both tool_execution_end events present.
    let exec_end_count = events
        .iter()
        .filter(|e| matches!(e, LoopEvent::ToolExecutionEnd { .. }))
        .count();
    assert_eq!(exec_end_count, 2, "both tool_execution_end events fire");

    // Tool-result message_start/end events fire in SOURCE order
    // (per pi spec, tools.rs:822). Verify the first ToolResult
    // message_end refers to call-A, the second to call-B.
    let tr_message_end_ids: Vec<String> = events
        .iter()
        .filter_map(|e| match e {
            LoopEvent::MessageEnd {
                message: LoopMessage::ToolResult(t),
            } => Some(t.tool_call_id.clone()),
            _ => None,
        })
        .collect();
    assert_eq!(
        tr_message_end_ids,
        vec!["call-A".to_string(), "call-B".to_string()],
        "tool-result message_end fires in source order",
    );

    // Both ToolResult message_starts/ends precede the next
    // assistant turn's message_start. Locate the LAST ToolResult
    // message_end and the FIRST assistant message_start AFTER it.
    let last_tr_end_idx = events
        .iter()
        .rposition(|e| {
            matches!(
                e,
                LoopEvent::MessageEnd {
                    message: LoopMessage::ToolResult(_)
                }
            )
        })
        .expect("at least one tool-result message_end fired");
    let next_assistant_start_after =
        events
            .iter()
            .enumerate()
            .skip(last_tr_end_idx + 1)
            .find(|(_, e)| {
                matches!(
                    e,
                    LoopEvent::MessageStart {
                        message: LoopMessage::Assistant(_),
                    },
                )
            });
    assert!(
        next_assistant_start_after.is_some(),
        "an assistant MessageStart fires AFTER both tool-result message_ends",
    );
}

// ===============================================================
// 4. Storm breaker trips
// ===============================================================

/// Issue 3 identical tool calls across 3 turns. The storm breaker
/// keeps a sliding window across the inner loop (it's reset per
/// outer-loop user turn, not per inner turn). The 3rd identical
/// call should be suppressed.
///
/// Contract surprise found while writing this test: the storm
/// breaker's `reset()` fires at OUTER-loop boundaries, not inner
/// turns. Within a single user turn, identical repeats DO
/// accumulate. So driving 3 consecutive tool-use turns with the
/// same call against the same tool name + args should trip on the
/// 3rd. With Reasonix-style "self_corrected" logic, the third
/// turn gets stubbed with a guard-text result rather than the
/// model's call being dispatched.
#[tokio::test]
async fn kwz_storm_breaker_trips_on_repeat() {
    let tool = std::sync::Arc::new(RecordingTool::new("dup"));
    let mut ctx = empty_context();
    ctx.tools.push(tool.clone());

    // Add `dup` to mutating list so the storm breaker counts the
    // calls (storm-exempt tools never trip). Built-in non-mutating
    // tool names like "read" are exempt by default.
    let mut cfg = build_config();
    cfg.storm_mutating_tools = Some(vec!["dup".to_string()]);

    // Five turns of identical tool calls; the breaker should
    // suppress the 3rd onward.
    let identical = || tool_use_response("call-x", "dup", serde_json::json!({"k": "v"}));
    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: identical(),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: identical(),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: identical(),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: identical(),
            usage: None,
        }],
        // Final: text response so the loop exits cleanly if any
        // pending state remains.
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
    ]);

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let messages = run_agent_loop(
        vec![user("repeat")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None, // memory_provider — test default
    )
    .await;
    drop(tx);

    // Underlying tool was dispatched on the first 2 calls but NOT
    // on the 3rd identical call. The breaker's "all_suppressed +
    // !turn_self_corrected" path stubs the 3rd call with a guard
    // result, so the underlying tool sees at most 2 invocations.
    let invocations = tool.calls().len();
    assert!(
        invocations <= 2,
        "storm breaker should suppress identical calls past the threshold; \
         tool was invoked {invocations} times",
    );
    assert!(
        invocations >= 2,
        "first two identical calls should reach the tool",
    );

    // The transcript must include at least one tool-result message
    // (either from the real dispatch or from the breaker's guard
    // stub).
    let tool_result_count = messages
        .iter()
        .filter(|m| matches!(m, LoopMessage::ToolResult(_)))
        .count();
    assert!(
        tool_result_count >= 2,
        "at least 2 tool-result messages should land",
    );

    // At least one tool result should carry the guard-text content
    // showing the breaker spoke up (matches the canonical guard
    // string emitted by run.rs).
    let saw_guard = messages.iter().any(|m| match m {
        LoopMessage::ToolResult(t) => t.content.iter().any(|c| match c {
            ContentBlock::Text { text } => text.contains("repeat-loop guard"),
            _ => false,
        }),
        _ => false,
    });
    assert!(
        saw_guard,
        "expected the storm breaker's guard text to land in at least one tool result",
    );
}

/// F4 — in-session reflexion memory. When the storm guard fires, the
/// abandoned approach is recorded and the guard text carries the
/// running list of dead ends. Driving one storm should produce a guard
/// whose text includes the abandoned-approaches block naming the looped
/// tool, proving the reflexion buffer is wired into the guard (not just
/// a standalone module).
#[tokio::test]
async fn reflexion_buffer_surfaces_abandoned_approach_in_guard() {
    let tool = std::sync::Arc::new(RecordingTool::new("dup"));
    let mut ctx = empty_context();
    ctx.tools.push(tool.clone());

    let mut cfg = build_config();
    cfg.storm_mutating_tools = Some(vec!["dup".to_string()]);

    let identical = || tool_use_response("call-x", "dup", serde_json::json!({"k": "v"}));
    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: identical(),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: identical(),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: identical(),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
    ]);

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let messages = run_agent_loop(
        vec![user("repeat")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None,
    )
    .await;
    drop(tx);

    let saw_reflexion = messages.iter().any(|m| match m {
        LoopMessage::ToolResult(t) => t.content.iter().any(|c| match c {
            ContentBlock::Text { text } => {
                text.contains("abandoned this run") && text.contains("dup(")
            }
            _ => false,
        }),
        _ => false,
    });
    assert!(
        saw_reflexion,
        "guard text should carry the reflexion buffer's abandoned-approaches block naming dup(...)",
    );
}

/// F6 — pre-finalization verifier gate. The agent edits a code file then
/// tries to finalize without running anything; the gate must inject the
/// one-time "verify before done" nudge, which re-enters the loop. Proves
/// the gate is wired through run_agent_loop end-to-end.
#[tokio::test]
async fn verifier_gate_nudges_when_code_edited_without_running() {
    let tool = std::sync::Arc::new(RecordingTool::new("edit"));
    let mut ctx = empty_context();
    ctx.tools.push(tool.clone());

    let mut cfg = build_config();
    cfg.verifier = Some(crate::agent::agent_loop::verifier::VerifierGate::new());

    let stream = scripted_stream(vec![
        // Edit a code file...
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("call-1", "edit", serde_json::json!({"path": "src/x.rs"})),
            usage: None,
        }],
        // ...then immediately try to finish.
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("all done"),
            usage: None,
        }],
        // After the nudge re-enters the loop, finish for real.
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("verified, done"),
            usage: None,
        }],
    ]);

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let messages = run_agent_loop(
        vec![user("change x")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None,
    )
    .await;
    drop(tx);

    let saw_nudge = messages.iter().any(|m| match m {
        LoopMessage::User(u) => u.content.contains("[verify-before-done]"),
        _ => false,
    });
    assert!(
        saw_nudge,
        "verifier gate should inject the verify-before-done nudge into the loop",
    );
}

/// The complement: editing code AND running a shell command suppresses
/// the nudge — the gate stays silent when the agent did verify.
#[tokio::test]
async fn verifier_gate_silent_when_a_command_ran() {
    let edit_tool = std::sync::Arc::new(RecordingTool::new("edit"));
    let bash_tool = std::sync::Arc::new(RecordingTool::new("bash"));
    let mut ctx = empty_context();
    ctx.tools.push(edit_tool);
    ctx.tools.push(bash_tool);

    let mut cfg = build_config();
    cfg.verifier = Some(crate::agent::agent_loop::verifier::VerifierGate::new());
    cfg.tool_execution = ToolExecutionMode::Sequential;

    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("c1", "edit", serde_json::json!({"path": "src/x.rs"})),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("c2", "bash", serde_json::json!({"command": "cargo test"})),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
    ]);

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let messages = run_agent_loop(
        vec![user("change x")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None,
    )
    .await;
    drop(tx);

    let saw_nudge = messages.iter().any(|m| match m {
        LoopMessage::User(u) => u.content.contains("[verify-before-done]"),
        _ => false,
    });
    assert!(
        !saw_nudge,
        "no nudge expected when the agent ran a command after editing",
    );
}

/// A tool that returns a failing bash-style result: `Ok` content with an
/// `Exit code: N` line, exactly as the bash tool emits on a non-zero exit.
/// Used to drive the verifier gate's "red build" path end-to-end.
#[derive(Debug)]
struct FailingBashTool {
    parameters: Value,
}

impl FailingBashTool {
    fn new() -> Self {
        Self {
            parameters: serde_json::json!({"type": "object"}),
        }
    }
}

impl LoopTool for FailingBashTool {
    fn name(&self) -> &str {
        "bash"
    }
    fn description(&self) -> &str {
        "Failing bash mock"
    }
    fn label(&self) -> &str {
        "bash"
    }
    fn parameters(&self) -> &Value {
        &self.parameters
    }
    fn execution_mode(&self) -> Option<ToolExecutionMode> {
        None
    }
    fn execute<'a>(
        &'a self,
        _id: &'a str,
        args: Value,
        _signal: AbortSignal,
        _on_update: LoopToolUpdate,
    ) -> Pin<Box<dyn Future<Output = Result<LoopToolResult, String>> + Send + 'a>> {
        Box::pin(async move {
            Ok(LoopToolResult {
                content: vec![serde_json::json!({
                    "type": "text",
                    "text": "running tests...\ntest result: FAILED\nExit code: 101",
                })],
                details: args,
                terminate: None,
            })
        })
    }
}

/// F6 tier 2 — a build/test command that FAILS after a code edit must
/// produce the fix-it nudge (not silence), proving the outcome-aware
/// path is wired through run_agent_loop.
#[tokio::test]
async fn verifier_gate_nudges_on_failing_build_after_edit() {
    let edit_tool = std::sync::Arc::new(RecordingTool::new("edit"));
    let bash_tool = std::sync::Arc::new(FailingBashTool::new());
    let mut ctx = empty_context();
    ctx.tools.push(edit_tool);
    ctx.tools.push(bash_tool);

    let mut cfg = build_config();
    cfg.verifier = Some(crate::agent::agent_loop::verifier::VerifierGate::new());
    cfg.tool_execution = ToolExecutionMode::Sequential;

    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("c1", "edit", serde_json::json!({"path": "src/x.rs"})),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("c2", "bash", serde_json::json!({"command": "cargo test"})),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
    ]);

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let messages = run_agent_loop(
        vec![user("change x")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None,
    )
    .await;
    drop(tx);

    let nudge = messages.iter().find_map(|m| match m {
        LoopMessage::User(u) if u.content.contains("[verify-before-done]") => {
            Some(u.content.clone())
        }
        _ => None,
    });
    let nudge = nudge.expect("a verify nudge should fire after a failing build");
    assert!(
        nudge.contains("failed") && nudge.contains("red build"),
        "the nudge should be the red-build fix-it variant, got: {nudge}",
    );
}

/// F6 tier 3 — when a critic is configured and the run used tools, a
/// bounded LLM critique runs at finalization. An "INCOMPLETE" verdict
/// injects the issues and re-enters the loop exactly once.
#[tokio::test]
async fn critic_reenters_loop_on_incomplete_verdict() {
    use std::sync::Arc;
    let tool = Arc::new(RecordingTool::new("edit"));
    let mut ctx = empty_context();
    ctx.tools.push(tool);

    let mut cfg = build_config();
    cfg.tool_execution = ToolExecutionMode::Sequential;
    cfg.critic_fn = Some(Arc::new(|_prompt| {
        Box::pin(async { Ok("VERDICT: INCOMPLETE\n- you never ran the tests".to_string()) })
    }));

    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("c1", "edit", serde_json::json!({"path": "src/x.rs"})),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("now really done"),
            usage: None,
        }],
    ]);

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let messages = run_agent_loop(
        vec![user("change x")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None,
    )
    .await;
    drop(tx);

    let critic_msgs: Vec<&String> = messages
        .iter()
        .filter_map(|m| match m {
            LoopMessage::User(u) if u.content.contains("[critic]") => Some(&u.content),
            _ => None,
        })
        .collect();
    assert_eq!(critic_msgs.len(), 1, "critic should fire exactly once");
    assert!(
        critic_msgs[0].contains("never ran the tests"),
        "critique issues should be injected: {}",
        critic_msgs[0]
    );
}

/// A "COMPLETE" verdict stays silent — the run finalizes without the
/// critic injecting anything.
#[tokio::test]
async fn critic_silent_on_complete_verdict() {
    use std::sync::Arc;
    let tool = Arc::new(RecordingTool::new("edit"));
    let mut ctx = empty_context();
    ctx.tools.push(tool);

    let mut cfg = build_config();
    cfg.tool_execution = ToolExecutionMode::Sequential;
    cfg.critic_fn = Some(Arc::new(|_p| {
        Box::pin(async { Ok("VERDICT: COMPLETE".to_string()) })
    }));

    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("c1", "edit", serde_json::json!({"path": "src/x.rs"})),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
    ]);

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let messages = run_agent_loop(
        vec![user("change x")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None,
    )
    .await;
    drop(tx);

    assert!(
        !messages
            .iter()
            .any(|m| matches!(m, LoopMessage::User(u) if u.content.contains("[critic]"))),
        "a COMPLETE verdict should not inject a critic message",
    );
}

/// Phase D — F1 (few-shot exemplars) and F6 (verifier gate) compose in a
/// single realistic run without interfering. A code-edit task should:
///   1. inject exemplars into the FIRST LLM call (F1), and
///   2. after the model edits code and tries to finish, surface the
///      verify-before-done nudge in a LATER LLM call (F6).
/// A custom factory inspects exactly what each LLM call received, so this
/// proves both features are live end-to-end in the same run.
#[tokio::test]
async fn exemplars_and_verifier_compose_in_one_run() {
    use std::sync::Arc;

    let tool = Arc::new(RecordingTool::new("edit"));
    let mut ctx = empty_context();
    ctx.tools.push(tool);

    let mut cfg = build_config();
    cfg.verifier = Some(crate::agent::agent_loop::verifier::VerifierGate::new());
    cfg.tool_execution = ToolExecutionMode::Sequential;

    let saw_exemplars = Arc::new(Mutex::new(false));
    let saw_nudge = Arc::new(Mutex::new(false));
    let se = saw_exemplars.clone();
    let sn = saw_nudge.clone();
    let counter = Arc::new(AtomicUsize::new(0));

    let factory: StreamFn = Arc::new(move |llm_ctx, _opts| {
        let n = counter.fetch_add(1, Ordering::SeqCst);
        let has = |needle: &str| {
            llm_ctx.messages.iter().any(|m| {
                m.get("content")
                    .and_then(|c| c.as_str())
                    .map(|s| s.contains(needle))
                    == Some(true)
            })
        };
        if n == 0 {
            *se.lock().unwrap() = has("[Tool-use examples]");
        }
        if n == 2 {
            *sn.lock().unwrap() = has("[verify-before-done]");
        }
        let msg = if n == 0 {
            tool_use_response("c1", "edit", serde_json::json!({"path": "src/auth.rs"}))
        } else {
            text_response("done")
        };
        let reason = msg.stop_reason;
        Box::pin(futures::stream::iter(vec![StreamEvent::Done {
            reason,
            message: msg,
            usage: None,
        }]))
    });

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let _messages = run_agent_loop(
        vec![user("change the handle_login function in src")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &factory,
        None,
        None,
    )
    .await;
    drop(tx);

    assert!(
        *saw_exemplars.lock().unwrap(),
        "F1: exemplars should be injected into the first LLM call for a code-edit task",
    );
    assert!(
        *saw_nudge.lock().unwrap(),
        "F6: verify-before-done nudge should reach a later LLM call after edit-without-run",
    );
}

// ===============================================================
// 5. AbortSignal mid-turn
// ===============================================================

/// Cancel the signal mid-tool. The loop should exit cleanly (no
/// panic, no hang) — bounded by a hard timeout so a regression
/// can't lock the test runner.
#[tokio::test]
async fn kwz_abort_signal_mid_turn_exits_cleanly() {
    // A tool that polls the signal — sleep is long enough that the
    // signal cancellation should hit while it's running.
    #[derive(Debug)]
    struct SlowTool;
    impl LoopTool for SlowTool {
        fn name(&self) -> &str {
            "slow"
        }
        fn description(&self) -> &str {
            "Slow"
        }
        fn label(&self) -> &str {
            "Slow"
        }
        fn parameters(&self) -> &Value {
            static EMPTY: std::sync::OnceLock<Value> = std::sync::OnceLock::new();
            EMPTY.get_or_init(|| serde_json::json!({"type": "object"}))
        }
        fn execute<'a>(
            &'a self,
            _id: &'a str,
            _args: Value,
            _signal: AbortSignal,
            _on_update: LoopToolUpdate,
        ) -> Pin<Box<dyn Future<Output = Result<LoopToolResult, String>> + Send + 'a>> {
            Box::pin(async move {
                tokio::time::sleep(std::time::Duration::from_secs(30)).await;
                Ok(LoopToolResult::default())
            })
        }
    }

    let mut ctx = empty_context();
    ctx.tools.push(std::sync::Arc::new(SlowTool));

    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("call-1", "slow", serde_json::json!({})),
            usage: None,
        }],
        // Second turn shouldn't be reached.
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("should not appear"),
            usage: None,
        }],
    ]);

    let mut cfg = build_config();
    cfg.tool_execution = ToolExecutionMode::Sequential;

    let signal = AbortSignal::new();
    let signal_clone = signal.clone();

    let (tx, _rx) = mpsc::channel::<LoopEvent>(64);
    let task = tokio::spawn(async move {
        run_agent_loop(
            vec![user("start")],
            ctx,
            cfg,
            signal_clone,
            &tx,
            &stream,
            None,
            None, // memory_provider — test default
        )
        .await
    });

    // Let the loop reach the tool dispatch then cancel.
    for _ in 0..5 {
        tokio::task::yield_now().await;
    }
    signal.cancel();

    // Hard bound — the abort-on-cancel path in tools.rs races
    // execute against the signal poll, so the tool's 30s sleep
    // must not lock us out.
    let outcome = tokio::time::timeout(std::time::Duration::from_secs(2), task).await;
    assert!(
        outcome.is_ok(),
        "loop must exit within 2s of signal cancel — got {outcome:?}",
    );
}

// ===============================================================
// 6. Repair-exhaustion arms escalation
// ===============================================================

/// Install an escalation_stream_fn; first stream emits a tool call
/// with args that fail schema validation AND cannot be repaired
/// (we use a tool whose parameters schema requires a field we
/// omit). Verify: `EscalationActivated` event fires; the SECOND
/// LLM call goes through `escalation_stream_fn`.
#[tokio::test]
async fn kwz_repair_exhaustion_arms_escalation_stream() {
    // Tool with a strict schema: requires `name` (string).
    #[derive(Debug)]
    struct StrictTool;
    impl LoopTool for StrictTool {
        fn name(&self) -> &str {
            "strict"
        }
        fn description(&self) -> &str {
            "Strict"
        }
        fn label(&self) -> &str {
            "Strict"
        }
        fn parameters(&self) -> &Value {
            static SCHEMA: std::sync::OnceLock<Value> = std::sync::OnceLock::new();
            SCHEMA.get_or_init(|| {
                serde_json::json!({
                    "type": "object",
                    "properties": {
                        "name": { "type": "string" },
                    },
                    "required": ["name"],
                })
            })
        }
        fn execute<'a>(
            &'a self,
            _id: &'a str,
            args: Value,
            _signal: AbortSignal,
            _on_update: LoopToolUpdate,
        ) -> Pin<Box<dyn Future<Output = Result<LoopToolResult, String>> + Send + 'a>> {
            Box::pin(async move {
                Ok(LoopToolResult {
                    content: vec![serde_json::json!({"type": "text", "text": "ok"})],
                    details: args,
                    terminate: None,
                })
            })
        }
    }

    let mut ctx = empty_context();
    ctx.tools.push(std::sync::Arc::new(StrictTool));

    // Default (primary) stream: first call emits a tool call with
    // args missing `name`. Escalation stream: emits a final text
    // response. The SECOND LLM call should route through
    // escalation_stream_fn, not the default.
    let default_calls = std::sync::Arc::new(AtomicUsize::new(0));
    let escalation_calls = std::sync::Arc::new(AtomicUsize::new(0));

    let default_calls_clone = default_calls.clone();
    let default_stream: StreamFn = std::sync::Arc::new(move |_ctx, _opts| {
        let n = default_calls_clone.fetch_add(1, Ordering::SeqCst);
        // Call 0: invalid tool call (missing required `name`).
        // Subsequent calls (shouldn't occur): bail with text.
        let batch = if n == 0 {
            vec![StreamEvent::Done {
                reason: StopReason::ToolUse,
                message: tool_use_response("call-1", "strict", serde_json::json!({"bogus": 1})),
                usage: None,
            }]
        } else {
            vec![StreamEvent::Done {
                reason: StopReason::Stop,
                message: text_response("default-fallback"),
                usage: None,
            }]
        };
        Box::pin(futures::stream::iter(batch))
    });

    let escalation_calls_clone = escalation_calls.clone();
    let escalation_stream: StreamFn = std::sync::Arc::new(move |_ctx, _opts| {
        escalation_calls_clone.fetch_add(1, Ordering::SeqCst);
        Box::pin(futures::stream::iter(vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("escalation-done"),
            usage: None,
        }]))
    });

    let mut cfg = build_config();
    cfg.escalation_stream_fn = Some(escalation_stream);
    cfg.escalation_provider_name = Some("alt-provider".to_string());

    let (tx, mut rx) = mpsc::channel::<LoopEvent>(256);
    let _messages = run_agent_loop(
        vec![user("go")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &default_stream,
        None,
        None, // memory_provider — test default
    )
    .await;
    drop(tx);

    // The default stream ran once (the failing tool-call turn);
    // the escalation stream ran once (the next turn).
    assert_eq!(
        default_calls.load(Ordering::SeqCst),
        1,
        "default stream invoked exactly once",
    );
    assert_eq!(
        escalation_calls.load(Ordering::SeqCst),
        1,
        "escalation stream invoked exactly once",
    );

    // EscalationActivated event fired with the configured provider
    // and a RepairExhausted reason for "strict".
    let events = drain(&mut rx).await;
    let mut saw_escalation = false;
    for e in &events {
        if let LoopEvent::EscalationActivated { provider, reason } = e {
            assert_eq!(provider, "alt-provider");
            match reason {
                super::message::EscalationReason::RepairExhausted { tool } => {
                    assert_eq!(tool, "strict");
                }
                other => panic!("expected RepairExhausted, got {other:?}"),
            }
            saw_escalation = true;
        }
    }
    assert!(saw_escalation, "expected EscalationActivated event");
}

// ===============================================================
// dirge-nqr — max_turns cap actually terminates the run
// ===============================================================

/// LoopConfig.max_turns = Some(2). The mock stream emits a tool
/// call on EVERY turn (would otherwise loop forever). After two
/// assistant turns complete, the loop should terminate with the
/// max-turns notice appended to new_messages.
#[tokio::test]
async fn nqr_max_turns_cap_terminates_run() {
    let tool = std::sync::Arc::new(RecordingTool::new("echo"));
    let mut ctx = empty_context();
    ctx.tools.push(tool.clone());

    // Stream emits tool calls indefinitely — the cap should bite.
    let calls = std::sync::Arc::new(std::sync::atomic::AtomicUsize::new(0));
    let calls_clone = calls.clone();
    let stream: StreamFn = std::sync::Arc::new(move |_ctx, _opts| {
        let n = calls_clone.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
        let id = format!("call-{n}");
        Box::pin(futures::stream::iter(vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response(&id, "echo", serde_json::json!({"i": n})),
            usage: None,
        }]))
    });

    let mut cfg = build_config();
    cfg.max_turns = Some(2);

    let (tx, mut rx) = mpsc::channel::<LoopEvent>(128);
    let messages = run_agent_loop(
        vec![user("loop forever")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None, // memory_provider — test default
    )
    .await;
    drop(tx);

    // Stream invoked exactly max_turns times (no more).
    assert_eq!(calls.load(std::sync::atomic::Ordering::SeqCst), 2);

    // Last message is the dirge-nqr cap-reached notice.
    let last = messages.last().expect("at least one message");
    let role = last.role();
    assert_eq!(role, "user");
    let LoopMessage::User(u) = last else {
        panic!("expected user message, got {role:?}");
    };
    assert!(
        u.content.contains("Max agent turns"),
        "cap notice missing: {:?}",
        u.content
    );

    // The cap is surfaced to the user as a SystemNotice (a `<system>`
    // log line), NOT as a MessageStart { User } (which would render with
    // the `<you>` prefix as if the user typed it).
    let events = drain(&mut rx).await;
    let notice = events.iter().find_map(|e| match e {
        LoopEvent::SystemNotice { content } => Some(content.clone()),
        _ => None,
    });
    assert!(
        notice
            .as_deref()
            .is_some_and(|c| c.contains("Max agent turns")),
        "expected a SystemNotice carrying the cap message, events: {:?}",
        events.iter().map(|e| e.kind()).collect::<Vec<_>>()
    );
    // The cap text must NOT be emitted as a user MessageStart/MessageEnd.
    let leaked_as_user = events.iter().any(|e| match e {
        LoopEvent::MessageStart {
            message: LoopMessage::User(u),
        }
        | LoopEvent::MessageEnd {
            message: LoopMessage::User(u),
        } => u.content.contains("Max agent turns"),
        _ => false,
    });
    assert!(
        !leaked_as_user,
        "cap notice must not be emitted as a <you> user message"
    );

    // agent_end still fires after the cap.
    let kinds: Vec<&str> = events.iter().map(|e| e.kind()).collect();
    assert_eq!(kinds.last().copied(), Some("agent_end"));
}

/// Default behavior (max_turns = None) is unchanged: the loop
/// runs until the stream itself stops asking for tool calls.
#[tokio::test]
async fn nqr_unlimited_when_max_turns_none() {
    let tool = std::sync::Arc::new(RecordingTool::new("echo"));
    let mut ctx = empty_context();
    ctx.tools.push(tool.clone());

    // Tool call, then text response — no cap should be needed.
    let stream = scripted_stream(vec![
        vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response("call-1", "echo", serde_json::json!({})),
            usage: None,
        }],
        vec![StreamEvent::Done {
            reason: StopReason::Stop,
            message: text_response("done"),
            usage: None,
        }],
    ]);

    let cfg = build_config(); // max_turns: None
    let (tx, _rx) = mpsc::channel::<LoopEvent>(128);
    let messages = run_agent_loop(
        vec![user("hi")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None, // memory_provider — test default
    )
    .await;

    // No cap notice present.
    for m in &messages {
        if let LoopMessage::User(u) = m {
            assert!(
                !u.content.contains("Max agent turns"),
                "unexpected cap notice"
            );
        }
    }
}

// dirge-st8r — a fresh USER steering message resets the turn budget so
// active human steering isn't killed by the runaway-loop cost cap.

/// With max_turns=3 and a stream that loops forever, the run normally
/// stops after exactly 3 turns. A single user steer mid-run resets the
/// counter, buying a fresh budget — so the stream is invoked MORE than 3
/// times. (Genuine runaway loops are still caught by the storm breaker;
/// the cap is only a cost ceiling for autonomous runs.)
#[tokio::test]
async fn st8r_user_steering_resets_turn_budget() {
    let tool = std::sync::Arc::new(RecordingTool::new("echo"));
    let mut ctx = empty_context();
    ctx.tools.push(tool.clone());

    let calls = std::sync::Arc::new(std::sync::atomic::AtomicUsize::new(0));
    let calls_clone = calls.clone();
    let stream: StreamFn = std::sync::Arc::new(move |_ctx, _opts| {
        let n = calls_clone.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
        let id = format!("call-{n}");
        Box::pin(futures::stream::iter(vec![StreamEvent::Done {
            reason: StopReason::ToolUse,
            message: tool_use_response(&id, "echo", serde_json::json!({"i": n})),
            usage: None,
        }]))
    });

    // Steering hook: deliver ONE user message on its 3rd invocation
    // (after a couple of turns, post the pre-loop poll), then nothing.
    // Mirrors a human interjecting mid-run.
    let polls = std::sync::Arc::new(std::sync::atomic::AtomicUsize::new(0));
    let polls_clone = polls.clone();
    let steering: crate::agent::agent_loop::hooks::GetSteeringMessagesFn =
        std::sync::Arc::new(move || {
            let n = polls_clone.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
            Box::pin(async move {
                if n == 2 {
                    vec![user("keep going — focus on the parser")]
                } else {
                    Vec::new()
                }
            })
        });

    let mut cfg = build_config();
    cfg.max_turns = Some(3);
    cfg.get_steering_messages = Some(steering);

    let (tx, _rx) = mpsc::channel::<LoopEvent>(256);
    let _ = run_agent_loop(
        vec![user("start")],
        ctx,
        cfg,
        AbortSignal::new(),
        &tx,
        &stream,
        None,
        None,
    )
    .await;
    drop(tx);

    let total = calls.load(std::sync::atomic::Ordering::SeqCst);
    assert!(
        total > 3,
        "user steering must reset the turn budget — expected >3 stream calls (cap=3), got {total}"
    );
}