vtcode-core 0.136.7

Core library for VT Code - a Rust-based terminal coding agent
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
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
    use super::*;
    use crate::config::TimeoutsConfig;
    use crate::config::ToolDocumentationMode as ConfigToolDocumentationMode;
    use crate::config::ToolsConfig;
    use crate::constants::tools;
    use crate::tool_policy::{ToolConstraints, ToolPolicy, ToolPolicyConfig};
    use crate::tools::handlers::{SessionSurface, SessionToolsConfig, ToolModelCapabilities, ToolProfile};
    use crate::tools::registry::mcp_helpers::normalize_mcp_tool_identifier;
    use anyhow::Result;
    use async_trait::async_trait;
    use futures::future::BoxFuture;
    use serde_json::Value;
    use serde_json::json;
    use std::fs;
    use std::time::Duration;
    use tempfile::TempDir;
    use vtcode_commons::canonicalize;

    const CUSTOM_TOOL_NAME: &str = "custom_test_tool";
    const SLOW_TIMEOUT_TOOL_NAME: &str = "slow_timeout_test_tool";
    const REENTRANT_TOOL_NAME: &str = "reentrant_guard_test_tool";
    const MUTUAL_REENTRANT_TOOL_A: &str = "mutual_reentrant_tool_a";
    const MUTUAL_REENTRANT_TOOL_B: &str = "mutual_reentrant_tool_b";
    const REPLACE_DISPATCH_TOOL_NAME: &str = "replace_dispatch_test_tool";

    struct CustomEchoTool;
    struct SlowTimeoutTool;

    #[async_trait]
    impl Tool for CustomEchoTool {
        async fn execute(&self, args: Value) -> Result<Value> {
            Ok(json!({
                "success": true,
                "args": args,
            }))
        }

        fn name(&self) -> &str {
            CUSTOM_TOOL_NAME
        }

        fn description(&self) -> &str {
            "Custom echo tool for testing"
        }
    }

    #[async_trait]
    impl Tool for SlowTimeoutTool {
        async fn execute(&self, _args: Value) -> Result<Value> {
            tokio::time::sleep(Duration::from_millis(1_100)).await;
            Ok(json!({
                "ok": true,
            }))
        }

        fn name(&self) -> &str {
            SLOW_TIMEOUT_TOOL_NAME
        }

        fn description(&self) -> &str {
            "Tool that intentionally exceeds low timeout ceilings"
        }
    }

    fn reentrant_tool_executor<'a>(registry: &'a ToolRegistry, args: Value) -> BoxFuture<'a, Result<Value>> {
        Box::pin(async move { registry.execute_tool_ref(REENTRANT_TOOL_NAME, &args).await })
    }

    fn mutual_reentrant_tool_a_executor<'a>(registry: &'a ToolRegistry, args: Value) -> BoxFuture<'a, Result<Value>> {
        Box::pin(async move { registry.execute_tool_ref(MUTUAL_REENTRANT_TOOL_B, &args).await })
    }

    fn mutual_reentrant_tool_b_executor<'a>(registry: &'a ToolRegistry, args: Value) -> BoxFuture<'a, Result<Value>> {
        Box::pin(async move { registry.execute_tool_ref(MUTUAL_REENTRANT_TOOL_A, &args).await })
    }

    fn replacement_first_executor<'a>(_registry: &'a ToolRegistry, _args: Value) -> BoxFuture<'a, Result<Value>> {
        Box::pin(async move { Ok(json!({"version": 1})) })
    }

    fn replacement_second_executor<'a>(_registry: &'a ToolRegistry, _args: Value) -> BoxFuture<'a, Result<Value>> {
        Box::pin(async move { Ok(json!({"version": 2})) })
    }

    fn catalogue_race_executor<'a>(_registry: &'a ToolRegistry, _args: Value) -> BoxFuture<'a, Result<Value>> {
        Box::pin(async { Ok(json!({"status": "ok"})) })
    }

    fn advanced_session_tools_config() -> SessionToolsConfig {
        SessionToolsConfig::full_public(
            SessionSurface::Interactive,
            CapabilityLevel::CodeSearch,
            ConfigToolDocumentationMode::Full,
            ToolModelCapabilities::default(),
        )
        .with_tool_profile(ToolProfile::AdvancedVtCode)
    }

    async fn policy_catalogue_test_hooks(registry: &ToolRegistry) -> Arc<policy::PolicyCatalogueTestHooks> {
        registry.policy_gateway.full_auto_catalogue_test_hooks()
    }

    async fn wait_for_catalogue_pause(pause: &policy::PolicyCatalogueTestPause) {
        tokio::time::timeout(Duration::from_secs(5), pause.wait_until_reached())
            .await
            .expect("catalogue operation reached the controlled pause");
    }

    async fn assert_catalogue_task_remains_pending<T>(task: &mut tokio::task::JoinHandle<T>, task_name: &str) {
        tokio::select! {
            outcome = &mut *task => match outcome {
                Ok(_) => panic!("{task_name} completed while catalogue refresh was paused"),
                Err(error) => panic!(
                    "{task_name} failed while catalogue refresh was paused: {error}"
                ),
            },
            () = tokio::time::sleep(Duration::from_millis(50)) => {}
        }
    }

    #[tokio::test]
    async fn registers_builtin_tools() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        let available = registry.available_tools().await;

        assert!(available.contains(&tools::EXEC_COMMAND.to_string()));
        assert!(available.contains(&tools::WRITE_STDIN.to_string()));
        assert!(available.contains(&tools::APPLY_PATCH.to_string()));
        assert!(!available.contains(&tools::CODE_SEARCH.to_string()));
        assert!(!available.contains(&tools::UNIFIED_SEARCH.to_string()));
        assert!(!available.contains(&tools::UNIFIED_FILE.to_string()));
        assert!(!available.contains(&tools::UNIFIED_EXEC.to_string()));
        assert!(!available.contains(&tools::READ_FILE.to_string()));
        assert!(!available.contains(&tools::WRITE_FILE.to_string()));
        assert!(!available.contains(&tools::DELETE_FILE.to_string()));
        assert!(!available.contains(&tools::MOVE_FILE.to_string()));
        assert!(!available.contains(&tools::COPY_FILE.to_string()));
        assert!(!available.contains(&tools::RUN_PTY_CMD.to_string()));
        Ok(())
    }

    #[tokio::test]
    async fn request_user_input_aliases_are_not_registered() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        assert!(registry.get_tool(tools::REQUEST_USER_INPUT).is_some());
        assert!(registry.get_tool(tools::ASK_QUESTIONS).is_none());
        assert!(registry.get_tool(tools::ASK_USER_QUESTION).is_none());

        Ok(())
    }

    #[tokio::test]
    async fn public_tool_projections_stay_in_sync() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        let config = SessionToolsConfig::full_public(
            SessionSurface::Interactive,
            CapabilityLevel::CodeSearch,
            ConfigToolDocumentationMode::Full,
            ToolModelCapabilities::default(),
        );

        let names = registry
            .public_tool_names(SessionSurface::Interactive, CapabilityLevel::CodeSearch)
            .await;
        let schema_names = registry
            .schema_entries(config.clone())
            .await
            .into_iter()
            .map(|entry| entry.name)
            .collect::<Vec<_>>();
        let declaration_names = registry
            .function_declarations(config.clone())
            .await
            .into_iter()
            .map(|entry| entry.name)
            .collect::<Vec<_>>();
        let model_tool_names = registry
            .model_tools(config)
            .await
            .into_iter()
            .map(|tool| tool.function_name().to_string())
            .collect::<Vec<_>>();

        assert_eq!(schema_names, names);
        assert_eq!(declaration_names, names);
        assert_eq!(model_tool_names, names);
        assert_eq!(
            names,
            vec![
                tools::APPLY_PATCH.to_string(),
                tools::EXEC_COMMAND.to_string(),
                tools::WRITE_STDIN.to_string(),
            ]
        );
        for removed_tool in [
            tools::UNIFIED_EXEC,
            tools::UNIFIED_FILE,
            tools::UNIFIED_SEARCH,
            tools::LIST_FILES,
            tools::READ_FILE,
            tools::WRITE_FILE,
            tools::DELETE_FILE,
            tools::MOVE_FILE,
            tools::COPY_FILE,
        ] {
            assert!(
                registry.get_tool_schema(removed_tool).await.is_none(),
                "{removed_tool} schema should not be discoverable"
            );
            assert!(!registry.has_tool(removed_tool).await, "{removed_tool} should not be reported as available");
        }

        let code_search_schema = registry
            .get_tool_schema(tools::CODE_SEARCH)
            .await
            .expect("code_search schema should be discoverable on request");
        let code_search_parameters = &code_search_schema["parameters"];
        assert_eq!(code_search_parameters["required"], json!(["query"]));
        assert_eq!(code_search_parameters["additionalProperties"], false);
        let mut property_names = code_search_parameters["properties"]
            .as_object()
            .expect("code_search properties")
            .keys()
            .map(String::as_str)
            .collect::<Vec<_>>();
        property_names.sort_unstable();
        assert_eq!(property_names, ["file_types", "max_results", "path", "query", "result_types"]);

        Ok(())
    }

    #[tokio::test]
    async fn advanced_profile_exposes_code_search_without_removed_public_names() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        let config = SessionToolsConfig::full_public(
            SessionSurface::Interactive,
            CapabilityLevel::CodeSearch,
            ConfigToolDocumentationMode::Full,
            ToolModelCapabilities::default(),
        )
        .with_tool_profile(ToolProfile::AdvancedVtCode);

        let names = registry
            .schema_entries(config.clone())
            .await
            .into_iter()
            .map(|entry| entry.name)
            .collect::<Vec<_>>();
        assert!(names.contains(&tools::CODE_SEARCH.to_string()), "advanced profile should expose code_search");
        for removed_tool in [
            tools::UNIFIED_EXEC,
            tools::UNIFIED_FILE,
            tools::UNIFIED_SEARCH,
            tools::READ_FILE,
            tools::WRITE_FILE,
            tools::DELETE_FILE,
            tools::MOVE_FILE,
            tools::COPY_FILE,
        ] {
            assert!(
                !names.contains(&removed_tool.to_string()),
                "{removed_tool} must not be exposed in the advanced profile"
            );
        }

        let model_tool_names = registry
            .model_tools(config)
            .await
            .into_iter()
            .map(|tool| tool.function_name().to_string())
            .collect::<Vec<_>>();
        assert!(model_tool_names.contains(&tools::CODE_SEARCH.to_string()));
        assert!(!model_tool_names.contains(&tools::UNIFIED_SEARCH.to_string()));

        Ok(())
    }

    #[tokio::test]
    async fn public_routing_keeps_aliases_private_and_rebuilds_on_dynamic_updates() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let test_file = temp_dir.path().join("alias-read.txt");
        fs::write(&test_file, "via alias\n")?;

        let err = registry
            .execute_public_tool_ref(tools::READ_FILE, &json!({"path": test_file.to_string_lossy().to_string()}))
            .await
            .expect_err("read_file should not resolve through public routing");
        assert!(err.to_string().contains("Unknown tool"));

        registry
            .register_tool(
                ToolRegistration::from_tool_instance(CUSTOM_TOOL_NAME, CapabilityLevel::CodeSearch, CustomEchoTool)
                    .with_description("Custom echo tool for testing")
                    .with_parameter_schema(json!({
                        "type": "object",
                        "properties": {
                            "input": {"type": "string"}
                        }
                    }))
                    .with_aliases(["custom_tool_alias"]),
            )
            .await?;

        registry.allow_all_tools().await?;

        let public_names = registry
            .public_tool_names(SessionSurface::Interactive, CapabilityLevel::CodeSearch)
            .await;
        assert!(!public_names.contains(&CUSTOM_TOOL_NAME.to_string()));
        assert!(!public_names.contains(&"custom_tool_alias".to_string()));

        let schema_names = registry
            .schema_entries(SessionToolsConfig::full_public(
                SessionSurface::Interactive,
                CapabilityLevel::CodeSearch,
                ConfigToolDocumentationMode::Full,
                ToolModelCapabilities::default(),
            ))
            .await
            .into_iter()
            .map(|entry| entry.name)
            .collect::<Vec<_>>();
        assert!(!schema_names.contains(&CUSTOM_TOOL_NAME.to_string()));
        assert!(!schema_names.contains(&"custom_tool_alias".to_string()));

        let dynamic_result = registry
            .execute_public_tool_ref("custom_tool_alias", &json!({"input": "value"}))
            .await?;
        assert_eq!(dynamic_result["success"].as_bool(), Some(true));

        registry.unregister_tool(CUSTOM_TOOL_NAME).await?;

        let public_names = registry
            .public_tool_names(SessionSurface::Interactive, CapabilityLevel::CodeSearch)
            .await;
        assert!(!public_names.contains(&CUSTOM_TOOL_NAME.to_string()));

        let err = registry
            .execute_public_tool_ref("custom_tool_alias", &json!({"input": "value"}))
            .await
            .expect_err("alias should be removed with the registration");
        assert!(err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn allows_registering_custom_tools() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry
            .register_tool(
                ToolRegistration::from_tool_instance(CUSTOM_TOOL_NAME, CapabilityLevel::CodeSearch, CustomEchoTool)
                    .with_parameter_schema(json!({
                        "type": "object",
                        "properties": {
                            "input": {"type": "string"}
                        }
                    })),
            )
            .await?;

        registry.allow_all_tools().await?;

        let available = registry.available_tools().await;
        assert!(!available.contains(&CUSTOM_TOOL_NAME.to_string()));

        let response = registry.execute_tool(CUSTOM_TOOL_NAME, json!({"input": "value"})).await?;
        assert!(response["success"].as_bool().unwrap_or(false));
        Ok(())
    }

    #[tokio::test]
    async fn dynamic_tool_registration_keeps_policy_catalog_in_sync() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let policy_path = temp_dir.path().join("tool-policy.json");
        let policy_manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(&policy_path).await?;
        let registry = ToolRegistry::new_with_custom_policy(temp_dir.path().to_path_buf(), policy_manager).await;

        registry
            .register_tool(ToolRegistration::from_tool_instance(
                CUSTOM_TOOL_NAME,
                CapabilityLevel::CodeSearch,
                CustomEchoTool,
            ))
            .await?;

        let config: ToolPolicyConfig = serde_json::from_str(&fs::read_to_string(&policy_path)?)?;
        assert!(config.available_tools.contains(&CUSTOM_TOOL_NAME.to_string()));

        registry.unregister_tool(CUSTOM_TOOL_NAME).await?;

        let config: ToolPolicyConfig = serde_json::from_str(&fs::read_to_string(&policy_path)?)?;
        assert!(!config.available_tools.contains(&CUSTOM_TOOL_NAME.to_string()));

        Ok(())
    }

    #[tokio::test]
    async fn duplicate_registration_replaces_schema_and_runtime_dispatch() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry
            .register_tool(
                ToolRegistration::new(
                    REPLACE_DISPATCH_TOOL_NAME,
                    CapabilityLevel::CodeSearch,
                    false,
                    replacement_first_executor,
                )
                .with_description("first version")
                .with_parameter_schema(json!({
                    "type": "object",
                    "properties": {
                        "old": {"type": "string"}
                    }
                })),
            )
            .await?;
        registry
            .register_tool(
                ToolRegistration::new(
                    REPLACE_DISPATCH_TOOL_NAME,
                    CapabilityLevel::CodeSearch,
                    false,
                    replacement_second_executor,
                )
                .with_description("second version")
                .with_parameter_schema(json!({
                    "type": "object",
                    "properties": {
                        "new": {"type": "string"}
                    }
                })),
            )
            .await?;
        registry.allow_all_tools().await?;

        let schema = registry
            .get_tool_schema(REPLACE_DISPATCH_TOOL_NAME)
            .await
            .expect("replacement schema should be present");
        assert_eq!(schema.pointer("/parameters/properties/new/type"), Some(&json!("string")));
        assert!(schema.pointer("/parameters/properties/old").is_none());

        let response = registry.execute_tool(REPLACE_DISPATCH_TOOL_NAME, json!({})).await?;
        assert_eq!(response.get("version"), Some(&json!(2)));

        Ok(())
    }

    #[tokio::test]
    async fn executes_prevalidated_tool_path() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry
            .register_tool(ToolRegistration::from_tool_instance(
                CUSTOM_TOOL_NAME,
                CapabilityLevel::CodeSearch,
                CustomEchoTool,
            ))
            .await?;
        registry.allow_all_tools().await?;

        let args = json!({"input": "value"});
        let response = registry.execute_tool_ref_prevalidated(CUSTOM_TOOL_NAME, &args).await?;
        assert!(response["success"].as_bool().unwrap_or(false));

        Ok(())
    }

    #[tokio::test]
    async fn harness_exec_reuses_public_output_normalization() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let response = registry
            .execute_harness_command_session(json!({
                "action": "run",
                "command": "printf vtcode",
                "tty": false,
                "yield_time_ms": 1000
            }))
            .await?;

        assert_eq!(response["output"].as_str(), Some("vtcode"));
        assert!(response.get("stdout").is_none());

        Ok(())
    }

    #[tokio::test]
    async fn harness_terminal_runs_retain_completed_sessions_until_close() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let response = registry
            .execute_harness_command_session_terminal_run(json!({
                "action": "run",
                "command": ["/bin/sh", "-lc", "printf vtcode-terminal"],
                "tty": true,
                "yield_time_ms": 200,
            }))
            .await?;

        let session_id = response["session_id"]
            .as_str()
            .expect("terminal run should expose session_id")
            .to_string();
        assert_eq!(response["exit_code"], 0);
        assert_eq!(response["output"].as_str(), Some("vtcode-terminal"));
        assert_eq!(registry.harness_exec_session_completed(&session_id).await?, Some(0));

        registry.close_harness_exec_session(&session_id).await?;
        registry.harness_exec_session_completed(&session_id).await.unwrap_err();

        Ok(())
    }

    fn delayed_exec_args(tty: bool, yield_time_ms: u64) -> Value {
        json!({
            "cmd": "printf first && sleep 0.2 && printf second",
            "tty": tty,
            "yield_time_ms": yield_time_ms,
        })
    }

    fn long_running_exec_args(tty: bool, yield_time_ms: u64) -> Value {
        json!({
            "cmd": "sleep 0.4 && printf second && sleep 0.4 && printf third && sleep 0.4 && printf done",
            "tty": tty,
            "yield_time_ms": yield_time_ms,
        })
    }

    #[tokio::test]
    async fn prevalidated_exec_mode_settles_noninteractive_run() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let response = registry
            .execute_public_tool_ref_prevalidated_with_mode(
                tools::EXEC_COMMAND,
                &delayed_exec_args(false, 50),
                ExecSettlementMode::SettleNonInteractive,
            )
            .await?;

        let output = response["output"].as_str().expect("settled exec output should be text");
        assert!(output.contains("first"));
        assert!(output.contains("second"));
        assert_eq!(response["exit_code"], 0);
        assert!(response.get("next_continue_args").is_none());

        Ok(())
    }

    #[tokio::test]
    async fn prevalidated_exec_mode_settles_pipe_poll_until_exit() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let initial = registry.execute_harness_command_session(delayed_exec_args(false, 50)).await?;
        let session_id = initial["session_id"]
            .as_str()
            .expect("partial run should expose session_id")
            .to_string();
        let initial_output = initial["output"].as_str().unwrap_or_default().to_string();
        if initial.get("next_continue_args").is_none() {
            assert_eq!(initial["exit_code"], 0);
            assert!(initial_output.contains("first"));
            assert!(initial_output.contains("second"));
            return Ok(());
        }
        assert!(initial.get("exit_code").is_none());

        let response = registry
            .execute_public_tool_ref_prevalidated_with_mode(
                tools::WRITE_STDIN,
                &json!({
                    "session_id": session_id,
                    "chars": "",
                    "yield_time_ms": 50,
                }),
                ExecSettlementMode::SettleNonInteractive,
            )
            .await?;

        assert_eq!(response["exit_code"], 0);
        let settled_output = response["output"].as_str().expect("settled poll output should be text");
        assert!(initial_output.contains("second") || settled_output.contains("second"));
        assert!(response.get("next_continue_args").is_none());

        Ok(())
    }

    #[tokio::test]
    async fn prevalidated_exec_mode_keeps_interactive_runs_manual() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let response = registry
            .execute_public_tool_ref_prevalidated_with_mode(
                tools::EXEC_COMMAND,
                &long_running_exec_args(true, 50),
                ExecSettlementMode::SettleNonInteractive,
            )
            .await?;

        assert!(response.get("next_continue_args").is_some());
        assert!(response.get("exit_code").is_none());

        let session_id = response["session_id"]
            .as_str()
            .expect("interactive run should expose session_id")
            .to_string();
        registry
            .execute_harness_command_session(json!({
                "action": "close",
                "session_id": session_id,
            }))
            .await?;

        Ok(())
    }

    #[tokio::test]
    async fn command_session_run_preserves_requested_session_id_for_follow_up_calls() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let mut run_args = long_running_exec_args(true, 10);
        run_args
            .as_object_mut()
            .expect("run args should be an object")
            .insert("session_id".to_string(), json!("check_sh"));

        let initial = registry.execute_harness_command_session(run_args).await?;
        assert_eq!(initial["session_id"], "check_sh");
        assert_eq!(initial["next_continue_args"], json!({ "session_id": "check_sh" }));

        let response = registry
            .execute_harness_command_session(json!({
                "action": "poll",
                "session_id": "check_sh",
                "yield_time_ms": 10,
            }))
            .await?;

        assert!(response.get("output").is_some());
        assert!(response.get("exit_code").is_some() || response.get("next_continue_args").is_some());

        if response.get("exit_code").is_none() {
            registry
                .execute_harness_command_session(json!({
                    "action": "close",
                    "session_id": "check_sh",
                }))
                .await?;
        }

        Ok(())
    }

    #[tokio::test]
    async fn active_exec_continuations_bypass_identical_call_loop_detection() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;
        registry.execution_history.set_loop_detection_limits(5, 2);

        let initial = registry
            .execute_harness_command_session(long_running_exec_args(false, 10))
            .await?;
        let session_id = initial["session_id"]
            .as_str()
            .expect("partial run should expose session_id")
            .to_string();
        let continue_args = json!({
            "session_id": session_id,
            "chars": "",
            "yield_time_ms": 10,
        });

        let first = registry
            .execute_public_tool_ref_prevalidated(tools::WRITE_STDIN, &continue_args)
            .await?;
        assert_ne!(first.get("loop_detected"), Some(&json!(true)));

        let second = registry
            .execute_public_tool_ref_prevalidated(tools::WRITE_STDIN, &continue_args)
            .await?;
        assert_ne!(second.get("loop_detected"), Some(&json!(true)));

        let third = registry
            .execute_public_tool_ref_prevalidated(tools::WRITE_STDIN, &continue_args)
            .await?;
        assert_ne!(third.get("loop_detected"), Some(&json!(true)));
        assert!(
            third.get("exit_code").is_some() || third.get("next_continue_args").is_some(),
            "continuation should either remain active or complete cleanly"
        );

        Ok(())
    }

    #[tokio::test]
    async fn command_session_accepts_compact_session_alias_for_poll() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let initial = registry
            .execute_harness_command_session(long_running_exec_args(true, 10))
            .await?;
        let session_id = initial["session_id"]
            .as_str()
            .expect("partial run should expose session_id")
            .to_string();

        let response = registry
            .execute_harness_command_session(json!({
                "s": session_id,
                "yield_time_ms": 10
            }))
            .await?;

        assert!(response.get("output").is_some());
        assert!(response.get("exit_code").is_some() || response.get("next_continue_args").is_some());

        Ok(())
    }

    #[tokio::test]
    async fn command_session_inspect_accepts_compact_session_alias() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let initial = registry
            .execute_harness_command_session(long_running_exec_args(true, 10))
            .await?;
        let session_id = initial["session_id"]
            .as_str()
            .expect("partial run should expose session_id")
            .to_string();

        let response = registry
            .execute_harness_command_session(json!({
                "action": "inspect",
                "s": session_id,
                "head_lines": 1,
                "tail_lines": 0
            }))
            .await?;

        assert_eq!(response["content_type"], "exec_inspect");
        assert!(response["output"].is_string());
        assert!(response.get("session_id").is_some());

        Ok(())
    }

    #[tokio::test]
    async fn mutating_tools_clear_recent_read_reuse_history() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;
        registry.execution_history.set_loop_detection_limits(5, 2);

        let test_file = temp_dir.path().join("test.txt");
        fs::write(&test_file, "original")?;

        let read_args = json!({
            "path": test_file.to_string_lossy(),
            "max_bytes": 1000,
        });
        let write_args = json!({
            "path": test_file.to_string_lossy(),
            "content": "modified",
            "mode": "overwrite",
        });

        let first = registry.execute_tool_ref(tools::READ_FILE, &read_args).await?;
        assert_eq!(first["content"], "original");

        let second = registry.execute_tool(tools::READ_FILE, read_args.clone()).await?;
        assert_eq!(second["content"], "original");

        let write_result = registry.execute_tool(tools::WRITE_FILE, write_args).await?;
        assert_eq!(write_result["success"], json!(true));

        let after_write = registry.execute_tool(tools::READ_FILE, read_args).await?;
        assert_eq!(after_write["content"], "modified");
        assert_ne!(after_write.get("reused_recent_result"), Some(&json!(true)));
        assert_ne!(after_write.get("loop_detected"), Some(&json!(true)));

        Ok(())
    }

    #[tokio::test]
    async fn read_only_command_session_results_are_fast_reused() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let test_file = temp_dir.path().join("test.txt");
        fs::write(&test_file, "hello")?;

        let cat_args = json!({
            "cmd": format!("cat {}", test_file.to_string_lossy()),
        });

        let first = registry.execute_tool_ref(tools::EXEC_COMMAND, &cat_args).await?;
        assert!(first.get("reused_recent_result").is_none(), "first call should not be reused");

        let second = registry.execute_tool_ref(tools::EXEC_COMMAND, &cat_args).await?;
        assert_eq!(
            second.get("reused_recent_result"),
            Some(&json!(true)),
            "second identical read-only exec call should reuse the first result"
        );

        Ok(())
    }

    #[tokio::test]
    async fn web_fetch_structured_errors_are_not_reused_as_successful_results() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let args = json!({
            "url": "http://example.com",
        });

        let first = registry.execute_tool_ref(tools::WEB_FETCH, &args).await?;
        assert!(
            first
                .get("error")
                .and_then(Value::as_str)
                .is_some_and(|error| error.contains("Only HTTPS URLs are allowed")),
            "first web_fetch call should return the structured tool error"
        );

        let second = registry.execute_tool_ref(tools::WEB_FETCH, &args).await?;
        assert!(
            second.get("reused_recent_result").is_none(),
            "failed web_fetch output must not be cached as a successful read-only result"
        );
        assert!(
            second.get("loop_detected").is_none(),
            "failed web_fetch output must not count toward identical successful-call loops"
        );

        Ok(())
    }

    #[tokio::test]
    async fn prevalidated_execution_enforces_planning_workflow_guards() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;
        registry.enable_planning();
        registry.planning_workflow_state().enable();

        let blocked_path = temp_dir.path().join("blocked.txt");
        let args = json!({
            "path": blocked_path.to_string_lossy().to_string(),
            "content": "should-not-write"
        });

        let err = registry
            .execute_tool_ref_prevalidated(tools::WRITE_FILE, &args)
            .await
            .expect_err("planning workflow should block prevalidated mutating tool call");
        assert!(err.to_string().contains("planning workflow"));
        assert!(!blocked_path.exists());

        Ok(())
    }

    #[tokio::test]
    async fn prevalidated_execution_allows_task_tracker_in_planning_workflow() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;
        registry.enable_planning();
        registry.planning_workflow_state().enable();

        let plans_dir = temp_dir.path().join(".vtcode").join("plans");
        fs::create_dir_all(&plans_dir)?;
        let plan_file = plans_dir.join("adaptive-test.md");
        fs::write(&plan_file, "# Adaptive test\n")?;
        registry.planning_workflow_state().set_plan_file(Some(plan_file)).await;

        let args = json!({"action": "create", "items": ["Track step"]});

        let response = registry
            .execute_tool_ref_prevalidated(tools::TASK_TRACKER, &args)
            .await
            .expect("task_tracker should be allowed in planning workflow");
        assert_eq!(response["status"], "created");

        Ok(())
    }

    #[tokio::test]
    async fn preflight_rejects_removed_exec_code_alias() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let err = registry
            .preflight_validate_call(
                "exec_code",
                &json!({
                    "command": "echo vtcode"
                }),
            )
            .expect_err("exec_code alias should be rejected");
        assert!(err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn preflight_rejects_removed_humanized_exec_label_alias() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let err = registry
            .preflight_validate_call(
                "Exec code",
                &json!({
                    "command": "echo vtcode"
                }),
            )
            .expect_err("Exec code alias should be rejected");
        assert!(err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn preflight_rejects_removed_execute_code_alias() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let err = registry
            .preflight_validate_call(
                tools::EXECUTE_CODE,
                &json!({
                    "code": "print('vtcode')"
                }),
            )
            .expect_err("execute_code alias should be rejected");
        assert!(err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn preflight_normalizes_raw_apply_patch_payload_to_input_object() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        let patch = "*** Begin Patch\n*** End Patch\n";

        let outcome = registry.preflight_validate_call(tools::APPLY_PATCH, &json!(patch))?;

        assert_eq!(outcome.normalized_tool_name, tools::APPLY_PATCH);
        assert_eq!(outcome.effective_args, json!({ "input": patch }));

        Ok(())
    }

    #[tokio::test]
    async fn preflight_rejects_repo_browser_file_aliases() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let read_err = registry
            .preflight_validate_call(
                "repo_browser.read_file",
                &json!({"path": "crates/codegen/vtcode-core/src/lib.rs"}),
            )
            .expect_err("repo_browser.read_file alias should be rejected");
        assert!(read_err.to_string().contains("Unknown tool"));

        let list_err = registry
            .preflight_validate_call("repo_browser.list_files", &json!({"path": "crates/codegen/vtcode-core/src"}))
            .expect_err("repo_browser.list_files alias should be rejected");
        assert!(list_err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn preflight_rejects_removed_harness_browse_tool_routes() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let read_err = registry
            .preflight_validate_call(tools::READ_FILE, &json!({"path": "crates/codegen/vtcode-core/src/lib.rs"}))
            .expect_err("read_file should be rejected");
        assert!(read_err.to_string().contains("Unknown tool"));

        let list_err = registry
            .preflight_validate_call(
                tools::LIST_FILES,
                &json!({"path": "crates/codegen/vtcode-core/src", "page": 1, "per_page": 20}),
            )
            .expect_err("list_files should be rejected");
        assert!(list_err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn harness_preflight_admits_hidden_file_helpers() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let read = registry
            .preflight_validate_harness_call(
                tools::READ_FILE,
                &json!({"path": "crates/codegen/vtcode-core/src/lib.rs"}),
            )
            .expect("harness path should admit read_file");
        assert_eq!(read.normalized_tool_name, tools::READ_FILE);

        let list = registry
            .preflight_validate_harness_call(tools::LIST_FILES, &json!({"path": "crates/codegen/vtcode-core/src"}))
            .expect("harness path should admit list_files");
        assert_eq!(list.normalized_tool_name, tools::LIST_FILES);

        Ok(())
    }

    #[tokio::test]
    async fn harness_preflight_rejects_non_allowlisted_hidden_tool() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        // `get_errors` is a registered, model-hidden builtin that is NOT in the
        // harness-dispatchable allowlist. Even the harness path must reject it,
        // so registering a new `with_llm_visibility(false)` tool cannot silently
        // widen the dispatchable surface.
        let err = registry
            .preflight_validate_harness_call(tools::GET_ERRORS, &json!({}))
            .expect_err("non-allowlisted hidden tool must not be harness-dispatchable");
        assert!(err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn public_execution_rejects_hidden_file_helper_even_when_prevalidated() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        // The prevalidated flag is a performance hint (skip re-preflight) and is
        // independent of dispatch authority. The direct model-public entry must
        // still refuse model-hidden file helpers even with prevalidated=true, so
        // a stray prevalidated flag can never widen the public surface.
        let err = registry
            .execute_public_tool_ref_prevalidated(
                tools::READ_FILE,
                &json!({"path": "crates/codegen/vtcode-core/src/lib.rs"}),
            )
            .await
            .expect_err("model-public entry must reject read_file even when prevalidated");
        assert!(err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn preflight_rejects_removed_planning_start_aliases() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let outcome = registry.preflight_validate_call(tools::START_PLANNING, &json!({}))?;
        assert_eq!(outcome.normalized_tool_name, tools::START_PLANNING);

        let tracker_outcome = registry.preflight_validate_call(tools::TASK_TRACKER, &json!({"action": "list"}))?;
        assert_eq!(tracker_outcome.normalized_tool_name, tools::TASK_TRACKER);

        let old_start_name = ["enter", "plan", "mode"].join("_");
        let old_name = registry
            .preflight_validate_call(&old_start_name, &json!({}))
            .expect_err("old planning tool name should be rejected");
        assert!(old_name.to_string().contains("Unknown tool"));

        let old_tracker_name = ["plan", "task", "tracker"].join("_");
        let old_alias = registry
            .preflight_validate_call(&old_tracker_name, &json!({"action": "list"}))
            .expect_err("removed planning alias should be rejected");
        assert!(old_alias.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn preflight_rejects_removed_planning_finish_aliases() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let outcome = registry.preflight_validate_call(tools::FINISH_PLANNING, &json!({}))?;
        assert_eq!(outcome.normalized_tool_name, tools::FINISH_PLANNING);

        let old_finish_name = ["exit", "plan", "mode"].join("_");
        let old_name = registry
            .preflight_validate_call(&old_finish_name, &json!({}))
            .expect_err("old planning tool name should be rejected");
        assert!(old_name.to_string().contains("Unknown tool"));

        let old_alias = registry
            .preflight_validate_call("mode_edit", &json!({}))
            .expect_err("removed planning alias should be rejected");
        assert!(old_alias.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn suggest_fallback_prefers_exec_command_for_exec_code_alias() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let fallback = registry.suggest_fallback_tool("exec_code").await;
        assert_eq!(fallback.as_deref(), Some(tools::EXEC_COMMAND));

        Ok(())
    }

    #[tokio::test]
    async fn suggest_fallback_returns_none_for_humanized_exec_label() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let fallback = registry.suggest_fallback_tool("Exec code").await;
        assert_eq!(fallback, None);

        Ok(())
    }

    #[tokio::test]
    async fn suggest_fallback_returns_none_for_task_tracker() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let fallback = registry.suggest_fallback_tool(tools::TASK_TRACKER).await;
        assert!(fallback.is_none());

        Ok(())
    }

    #[tokio::test]
    async fn suggest_fallback_returns_none_for_unknown_tool() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        let fallback = registry.suggest_fallback_tool("not_a_real_tool").await;
        assert!(fallback.is_none());

        Ok(())
    }

    #[tokio::test]
    async fn execute_public_repo_browser_alias_is_rejected() -> Result<()> {
        let temp_dir = TempDir::new()?;
        fs::write(temp_dir.path().join("public-route.txt"), "public route\n")?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let err = registry
            .execute_public_tool_ref("repo_browser.read_file", &json!({"path": "public-route.txt"}))
            .await
            .expect_err("repo_browser.read_file should not resolve publicly");

        assert!(err.to_string().contains("Unknown tool"));

        Ok(())
    }

    #[tokio::test]
    async fn set_tool_policy_accepts_current_public_names() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let policy_path = temp_dir.path().join("tool-policy.json");
        let policy_manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(&policy_path).await?;
        let registry = ToolRegistry::new_with_custom_policy(temp_dir.path().to_path_buf(), policy_manager).await;

        registry.set_tool_policy(tools::EXEC_COMMAND, ToolPolicy::Deny).await?;

        assert_eq!(registry.get_tool_policy(tools::EXEC_COMMAND).await, ToolPolicy::Deny);
        assert_eq!(registry.get_tool_policy(tools::WRITE_STDIN).await, ToolPolicy::Allow);

        Ok(())
    }

    #[tokio::test]
    async fn apply_config_policies_applies_current_public_names() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let policy_path = temp_dir.path().join("tool-policy.json");
        let policy_manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(&policy_path).await?;
        let registry = ToolRegistry::new_with_custom_policy(temp_dir.path().to_path_buf(), policy_manager).await;

        let mut config = ToolsConfig::default();
        config.policies.clear();
        config.policies.insert(tools::EXEC_COMMAND.to_string(), ToolPolicy::Allow);
        config.policies.insert(tools::APPLY_PATCH.to_string(), ToolPolicy::Deny);

        registry.apply_config_policies(&config).await?;

        assert_eq!(registry.get_tool_policy(tools::EXEC_COMMAND).await, ToolPolicy::Allow);
        assert_eq!(registry.get_tool_policy(tools::APPLY_PATCH).await, ToolPolicy::Deny);

        Ok(())
    }

    #[tokio::test]
    async fn apply_config_policies_includes_advanced_profile_tools() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let policy_path = temp_dir.path().join("tool-policy.json");
        let policy_manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(&policy_path).await?;
        let registry = ToolRegistry::new_with_custom_policy(temp_dir.path().to_path_buf(), policy_manager).await;

        let mut config = ToolsConfig {
            profile: ToolProfile::AdvancedVtCode,
            ..ToolsConfig::default()
        };
        config.policies.insert(tools::CODE_SEARCH.to_string(), ToolPolicy::Deny);

        registry.apply_config_policies(&config).await?;

        assert_eq!(registry.get_tool_policy(tools::CODE_SEARCH).await, ToolPolicy::Deny);

        Ok(())
    }

    #[tokio::test]
    async fn persisted_approval_cache_round_trips_through_registry() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let policy_path = temp_dir.path().join("tool-policy.json");
        let policy_manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(&policy_path).await?;
        let registry = ToolRegistry::new_with_custom_policy(temp_dir.path().to_path_buf(), policy_manager).await;

        registry.persist_approval_cache_key("read_file").await?;

        assert!(registry.has_persisted_approval("read_file").await);

        let manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(&policy_path).await?;
        assert!(manager.has_approval_cache_key("read_file"));

        Ok(())
    }

    #[tokio::test]
    async fn public_alias_resolution_stays_consistent_across_execution_preflight_and_policy() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry
            .register_tool(
                ToolRegistration::from_tool_instance(CUSTOM_TOOL_NAME, CapabilityLevel::CodeSearch, CustomEchoTool)
                    .with_description("Custom echo tool for routing parity tests")
                    .with_parameter_schema(json!({
                        "type": "object",
                        "properties": {
                            "input": {"type": "string"}
                        }
                    }))
                    .with_permission(ToolPolicy::Allow)
                    .with_aliases(["custom tool"]),
            )
            .await?;

        let preflight = registry.preflight_validate_call("Custom Tool", &json!({"input": "value"}))?;
        assert_eq!(preflight.normalized_tool_name, CUSTOM_TOOL_NAME);

        assert_eq!(registry.evaluate_tool_policy("Custom Tool").await?, ToolPermissionDecision::Allow);

        let response = registry
            .execute_public_tool_ref("Custom Tool", &json!({"input": "value"}))
            .await?;
        assert_eq!(response["success"].as_bool(), Some(true));

        Ok(())
    }

    #[tokio::test]
    async fn safe_mode_prompt_uses_behavior_metadata() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;
        registry.set_enforce_safe_mode_prompts(true).await;

        assert_eq!(registry.evaluate_tool_policy(tools::CODE_SEARCH).await?, ToolPermissionDecision::Allow);
        assert_eq!(registry.evaluate_tool_policy(tools::EXEC_COMMAND).await?, ToolPermissionDecision::Prompt);
        assert_eq!(registry.evaluate_tool_policy(tools::APPLY_PATCH).await?, ToolPermissionDecision::Prompt);

        Ok(())
    }

    #[tokio::test]
    async fn mcp_policy_paths_resolve_model_visible_aliases() -> Result<()> {
        fn noop_executor<'a>(_registry: &'a ToolRegistry, _args: Value) -> BoxFuture<'a, Result<Value>> {
            Box::pin(async { Ok(json!({"success": true})) })
        }

        let temp_dir = TempDir::new()?;
        let policy_path = temp_dir.path().join("tool-policy.json");
        let policy_manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(&policy_path).await?;
        let registry = ToolRegistry::new_with_custom_policy(temp_dir.path().to_path_buf(), policy_manager).await;

        let public_name = crate::tools::mcp::model_visible_mcp_tool_name("context7", "search");
        registry
            .register_tool(
                ToolRegistration::new("mcp::context7::search", CapabilityLevel::Basic, false, noop_executor)
                    .with_description("Fake MCP search tool")
                    .with_parameter_schema(json!({"type": "object"}))
                    .with_permission(ToolPolicy::Prompt)
                    .with_aliases([public_name.clone()])
                    .with_llm_visibility(false),
            )
            .await?;

        registry
            .mcp_tool_index
            .write()
            .await
            .insert("context7".to_string(), vec!["search".to_string()]);
        registry
            .mcp_reverse_index
            .write()
            .await
            .insert("search".to_string(), "context7".to_string());

        registry.persist_mcp_tool_policy(&public_name, ToolPolicy::Allow).await?;

        let manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(&policy_path).await?;
        assert_eq!(manager.get_mcp_tool_policy("context7", "search"), ToolPolicy::Allow);

        assert_eq!(registry.evaluate_tool_policy(&public_name).await?, ToolPermissionDecision::Allow);
        assert_eq!(registry.evaluate_tool_policy("mcp::context7::search").await?, ToolPermissionDecision::Allow);

        Ok(())
    }

    #[tokio::test]
    async fn apply_patch_alias_executes_without_recursive_reentry() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let patch = "*** Begin Patch\n*** Add File: patched_via_alias.txt\n+patched\n*** End Patch\n";
        let response = registry.execute_tool(tools::APPLY_PATCH, json!({ "patch": patch })).await?;

        assert_eq!(response.get("success").and_then(Value::as_bool), Some(true));
        let expected_path = canonicalize(temp_dir.path().join("patched_via_alias.txt"))?
            .to_string_lossy()
            .into_owned();
        let modified_files = response
            .get("modified_files")
            .and_then(Value::as_array)
            .map_or(&[] as &[Value], |arr| arr)
            .iter()
            .filter_map(|v| v.as_str().map(std::path::PathBuf::from))
            .filter_map(|p| canonicalize(p).ok())
            .filter_map(|p| p.to_str().map(String::from))
            .collect::<Vec<_>>();
        assert_eq!(modified_files, vec![expected_path]);

        let file_contents = fs::read_to_string(temp_dir.path().join("patched_via_alias.txt"))?;
        assert_eq!(file_contents, "patched\n");

        Ok(())
    }

    #[tokio::test]
    async fn apply_patch_reports_deduplicated_paths_for_every_successful_operation() -> Result<()> {
        let temp_dir = TempDir::new()?;
        fs::create_dir(temp_dir.path().join("src"))?;
        fs::write(temp_dir.path().join("src/delete.rs"), "delete me\n")?;
        fs::write(temp_dir.path().join("src/old.rs"), "old\n")?;
        let canonical_base = canonicalize(temp_dir.path())?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let mut expected = ["add.rs", "delete.rs", "new.rs", "old.rs"]
            .into_iter()
            .map(|name| canonical_base.join("src").join(name).to_string_lossy().into_owned())
            .collect::<Vec<_>>();
        expected.sort();

        let patch = "*** Begin Patch\n*** Add File: src/add.rs\n+new\n*** Delete File: src/delete.rs\n*** Update File: src/old.rs\n*** Move to: src/new.rs\n@@\n-old\n+new\n*** End Patch\n";
        let response = registry.execute_tool(tools::APPLY_PATCH, json!({ "input": patch })).await?;

        let modified_files = response
            .get("modified_files")
            .and_then(Value::as_array)
            .map_or(&[] as &[Value], |arr| arr)
            .iter()
            .filter_map(|v| v.as_str().map(String::from))
            .collect::<Vec<_>>();
        assert_eq!(modified_files, expected);
        assert!(temp_dir.path().join("src/add.rs").exists());
        assert!(!temp_dir.path().join("src/delete.rs").exists());
        assert!(!temp_dir.path().join("src/old.rs").exists());
        assert_eq!(fs::read_to_string(temp_dir.path().join("src/new.rs"))?, "new\n");

        Ok(())
    }

    #[tokio::test]
    async fn failed_apply_patch_does_not_report_modified_files() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let outcome = registry
            .execute_public_tool_request(ToolExecutionRequest::new(
                tools::APPLY_PATCH,
                json!({ "input": "*** Begin Patch\n*** Not An Operation\n*** End Patch\n" }),
            ))
            .await;

        assert!(!outcome.is_success());
        assert!(outcome.output.is_none());
        assert!(
            outcome
                .error
                .expect("failed patch should expose an error")
                .to_json_value()
                .get("modified_files")
                .is_none()
        );
        Ok(())
    }

    #[tokio::test]
    async fn apply_patch_accepts_input_payload() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let patch = "*** Begin Patch\n*** Add File: patched_via_input.txt\n+patched\n*** End Patch\n";
        let response = registry.execute_tool(tools::APPLY_PATCH, json!({ "input": patch })).await?;

        assert_eq!(response.get("success").and_then(Value::as_bool), Some(true));

        let file_contents = fs::read_to_string(temp_dir.path().join("patched_via_input.txt"))?;
        assert_eq!(file_contents, "patched\n");

        Ok(())
    }

    #[tokio::test]
    async fn public_apply_patch_accepts_raw_string_payload() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        registry.allow_all_tools().await?;

        let patch = "*** Begin Patch\n*** Add File: patched_via_raw_string.txt\n+patched\n*** End Patch\n";
        let response = registry.execute_public_tool_ref(tools::APPLY_PATCH, &json!(patch)).await?;

        assert_eq!(response.get("success").and_then(Value::as_bool), Some(true));

        let file_contents = fs::read_to_string(temp_dir.path().join("patched_via_raw_string.txt"))?;
        assert_eq!(file_contents, "patched\n");

        Ok(())
    }

    #[tokio::test]
    async fn execution_history_records_harness_context() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry.set_harness_session("session-history");
        registry.set_harness_task(Some("task-history".to_owned()));

        registry
            .register_tool(ToolRegistration::from_tool_instance(
                CUSTOM_TOOL_NAME,
                CapabilityLevel::CodeSearch,
                CustomEchoTool,
            ))
            .await?;
        registry.allow_all_tools().await?;

        let args = json!({"input": "value"});
        let response = registry.execute_tool(CUSTOM_TOOL_NAME, args.clone()).await?;
        assert!(response["success"].as_bool().unwrap_or(false));

        let records = registry.get_recent_tool_records(1);
        let record = records.first().expect("execution record captured");
        assert_eq!(record.tool_name, CUSTOM_TOOL_NAME);
        assert_eq!(record.context.session_id, "session-history");
        assert_eq!(record.context.task_id.as_deref(), Some("task-history"));
        assert_eq!(record.args, args);
        assert!(record.success);

        Ok(())
    }

    #[tokio::test]
    async fn reentrancy_guard_blocks_recursive_tool_loops() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry
            .register_tool(ToolRegistration::new(
                REENTRANT_TOOL_NAME,
                CapabilityLevel::CodeSearch,
                false,
                reentrant_tool_executor,
            ))
            .await?;
        registry.allow_all_tools().await?;

        let response = registry.execute_tool(REENTRANT_TOOL_NAME, json!({"input": "loop"})).await?;

        assert_eq!(response.get("reentrant_call_blocked").and_then(Value::as_bool), Some(true));
        assert_eq!(response.pointer("/error/error_type").and_then(Value::as_str), Some("PolicyViolation"));
        assert!(
            response
                .pointer("/error/message")
                .and_then(Value::as_str)
                .unwrap_or_default()
                .contains("REENTRANCY GUARD")
        );

        Ok(())
    }

    #[tokio::test]
    async fn reentrancy_guard_blocks_cross_tool_cycles() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry
            .register_tool(ToolRegistration::new(
                MUTUAL_REENTRANT_TOOL_A,
                CapabilityLevel::CodeSearch,
                false,
                mutual_reentrant_tool_a_executor,
            ))
            .await?;
        registry
            .register_tool(ToolRegistration::new(
                MUTUAL_REENTRANT_TOOL_B,
                CapabilityLevel::CodeSearch,
                false,
                mutual_reentrant_tool_b_executor,
            ))
            .await?;
        registry.allow_all_tools().await?;

        let response = registry
            .execute_tool(MUTUAL_REENTRANT_TOOL_A, json!({"input": "cycle"}))
            .await?;

        assert_eq!(response.get("reentrant_call_blocked").and_then(Value::as_bool), Some(true));
        assert_eq!(response.pointer("/error/error_type").and_then(Value::as_str), Some("PolicyViolation"));

        let stack_trace = response.get("stack_trace").and_then(Value::as_str).unwrap_or_default();
        assert!(stack_trace.contains(MUTUAL_REENTRANT_TOOL_A));
        assert!(stack_trace.contains(MUTUAL_REENTRANT_TOOL_B));

        Ok(())
    }

    #[tokio::test]
    async fn full_auto_allowlist_enforced() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry.enable_full_auto_permission(&[tools::EXEC_COMMAND.to_string()]).await;

        assert!(registry.preflight_tool_permission(tools::EXEC_COMMAND).await?);
        assert!(!registry.preflight_tool_permission(tools::READ_FILE).await?);
        assert!(!registry.preflight_tool_permission(tools::RUN_PTY_CMD).await?);

        Ok(())
    }

    #[tokio::test]
    async fn wildcard_initialisation_retains_registration_from_snapshot_window() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        let hooks = policy_catalogue_test_hooks(&registry).await;
        let snapshot_pause = policy::PolicyCatalogueTestPause::default();
        hooks.install_after_enable_snapshot(snapshot_pause.clone());

        let enabling_registry = registry.clone();
        let enable_task = tokio::spawn(async move {
            enabling_registry
                .enable_full_auto_permission_for_session(
                    &[tools::WILDCARD_ALL.to_string()],
                    advanced_session_tools_config(),
                )
                .await;
        });
        wait_for_catalogue_pause(&snapshot_pause).await;

        let tool_name = "wildcard_snapshot_window_dynamic_tool";
        let registering_registry = registry.clone();
        let registration_task = tokio::spawn(async move {
            registering_registry
                .register_tool(
                    ToolRegistration::new(tool_name, CapabilityLevel::Basic, false, catalogue_race_executor)
                        .with_description("tool registered after the wildcard snapshot"),
                )
                .await
        });
        tokio::time::timeout(Duration::from_secs(5), async {
            while !registry.has_tool(tool_name).await {
                tokio::task::yield_now().await;
            }
        })
        .await
        .expect("registration entered the wildcard snapshot window");
        assert!(!registration_task.is_finished());

        snapshot_pause.resume();
        enable_task.await.expect("wildcard enable task");
        registration_task.await.expect("registration task")?;

        assert!(registry.is_allowed_in_full_auto(tool_name).await);
        Ok(())
    }

    #[tokio::test]
    async fn in_flight_catalogue_refresh_cannot_restore_wildcard_after_disable() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        let config = advanced_session_tools_config();
        registry
            .enable_full_auto_permission_for_session(&[tools::WILDCARD_ALL.to_string()], config)
            .await;

        let hooks = policy_catalogue_test_hooks(&registry).await;
        let refresh_pause = policy::PolicyCatalogueTestPause::default();
        hooks.install_after_refresh_snapshot(refresh_pause.clone());
        let registering_registry = registry.clone();
        let registration_task = tokio::spawn(async move {
            registering_registry
                .register_tool(
                    ToolRegistration::new(
                        "disable_during_refresh_dynamic_tool",
                        CapabilityLevel::Basic,
                        false,
                        catalogue_race_executor,
                    )
                    .with_description("tool whose registration pauses catalogue refresh"),
                )
                .await
        });
        wait_for_catalogue_pause(&refresh_pause).await;

        let disable_pause = policy::PolicyCatalogueTestPause::default();
        hooks.install_before_disable_lifecycle(disable_pause.clone());
        let disabling_registry = registry.clone();
        let mut disable_task = tokio::spawn(async move {
            disabling_registry.disable_full_auto_permission().await;
        });
        wait_for_catalogue_pause(&disable_pause).await;
        disable_pause.resume();
        assert!(!registration_task.is_finished());
        assert_catalogue_task_remains_pending(&mut disable_task, "disable task").await;

        refresh_pause.resume();
        registration_task.await.expect("registration task")?;
        disable_task.await.expect("disable task");

        assert_eq!(registry.current_full_auto_allowlist().await, None);
        Ok(())
    }

    #[tokio::test]
    async fn in_flight_refresh_cannot_overwrite_same_config_explicit_replacement() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;
        let config = advanced_session_tools_config();
        registry
            .enable_full_auto_permission_for_session(&[tools::WILDCARD_ALL.to_string()], config.clone())
            .await;

        let hooks = policy_catalogue_test_hooks(&registry).await;
        let refresh_pause = policy::PolicyCatalogueTestPause::default();
        hooks.install_after_refresh_snapshot(refresh_pause.clone());
        let registering_registry = registry.clone();
        let registration_task = tokio::spawn(async move {
            registering_registry
                .register_tool(
                    ToolRegistration::new(
                        "replacement_during_refresh_dynamic_tool",
                        CapabilityLevel::Basic,
                        false,
                        catalogue_race_executor,
                    )
                    .with_description("tool whose registration pauses catalogue refresh"),
                )
                .await
        });
        wait_for_catalogue_pause(&refresh_pause).await;

        let replacement_pause = policy::PolicyCatalogueTestPause::default();
        hooks.install_before_enable_lifecycle(replacement_pause.clone());
        let replacing_registry = registry.clone();
        let mut replacement_task = tokio::spawn(async move {
            replacing_registry
                .enable_full_auto_permission_for_session(&[tools::EXEC_COMMAND.to_string()], config)
                .await;
        });
        wait_for_catalogue_pause(&replacement_pause).await;
        replacement_pause.resume();
        assert!(!registration_task.is_finished());
        assert_catalogue_task_remains_pending(&mut replacement_task, "replacement task").await;

        refresh_pause.resume();
        registration_task.await.expect("registration task")?;
        replacement_task.await.expect("replacement task");

        assert_eq!(registry.current_full_auto_allowlist().await, Some(vec![tools::EXEC_COMMAND.to_string()]));
        assert!(
            !registry
                .is_allowed_in_full_auto("replacement_during_refresh_dynamic_tool")
                .await
        );
        Ok(())
    }

    #[test]
    fn normalizes_mcp_tool_identifiers() {
        assert_eq!(normalize_mcp_tool_identifier("sequential-thinking"), "sequentialthinking");
        assert_eq!(normalize_mcp_tool_identifier("Context7.Lookup"), "context7lookup");
        assert_eq!(normalize_mcp_tool_identifier("alpha_beta"), "alphabeta");
    }

    #[test]
    fn timeout_policy_derives_from_config() {
        let config = TimeoutsConfig {
            default_ceiling_seconds: 0,
            pty_ceiling_seconds: 600,
            mcp_ceiling_seconds: 90,
            warning_threshold_percent: 75,
            ..Default::default()
        };

        let policy = ToolTimeoutPolicy::from_config(&config);
        assert_eq!(policy.ceiling_for(ToolTimeoutCategory::Default), None);
        assert_eq!(policy.ceiling_for(ToolTimeoutCategory::Pty), Some(Duration::from_secs(600)));
        assert_eq!(policy.ceiling_for(ToolTimeoutCategory::Mcp), Some(Duration::from_secs(90)));
        assert!((policy.warning_fraction() - 0.75).abs() < f32::EPSILON);
    }

    #[tokio::test]
    async fn timeout_errors_are_structured_and_track_failures() -> Result<()> {
        let temp_dir = TempDir::new()?;
        let registry = ToolRegistry::new(temp_dir.path().to_path_buf()).await;

        registry
            .register_tool(ToolRegistration::from_tool_instance(
                SLOW_TIMEOUT_TOOL_NAME,
                CapabilityLevel::CodeSearch,
                SlowTimeoutTool,
            ))
            .await?;
        registry.allow_all_tools().await?;

        registry.apply_timeout_policy(&TimeoutsConfig {
            default_ceiling_seconds: 1,
            pty_ceiling_seconds: 1,
            mcp_ceiling_seconds: 1,
            ..Default::default()
        });

        let mut policy = ExecutionPolicySnapshot::default().with_max_retries(4);
        policy.retry_base_delay = Duration::from_millis(1);
        policy.retry_max_delay = Duration::from_millis(1);
        policy.retry_multiplier = 1.0;

        let request = ToolExecutionRequest::new(SLOW_TIMEOUT_TOOL_NAME, json!({})).with_policy(policy);
        let outcome = registry.execute_public_tool_request(request).await;

        assert!(!outcome.is_success());
        assert_eq!(outcome.attempts, 5);

        let error = outcome.error.expect("timeout outcome should include error");
        assert_eq!(error.tool_name, SLOW_TIMEOUT_TOOL_NAME);
        assert!(matches!(error.error_type, ToolErrorType::Timeout));
        assert_eq!(error.category, vtcode_commons::ErrorCategory::Timeout);
        assert!(error.is_recoverable);
        assert!(error.retry_after_ms.is_some());
        assert!(error.message.contains("exceeded the standard timeout ceiling"));
        assert_eq!(error.debug_context.as_ref().and_then(|ctx| ctx.surface.as_deref()), Some("tool_registry"));

        let failures = registry.execution_history.get_recent_failures(1);
        assert_eq!(failures.len(), 1);
        assert_eq!(failures[0].timeout_category.as_deref(), Some("standard"));
        assert_eq!(failures[0].effective_timeout_ms, Some(1_000));

        let consecutive_failures = registry
            .resiliency
            .lock()
            .failure_trackers
            .get(&ToolTimeoutCategory::Default)
            .map(|tracker| tracker.consecutive_failures)
            .unwrap_or(0);
        assert_eq!(consecutive_failures, 5);

        Ok(())
    }

    #[tokio::test]
    async fn code_search_executes_with_policy_capped_max_results() -> Result<()> {
        let temp_dir = TempDir::new()?;
        fs::write(temp_dir.path().join("Widget.rs"), "struct Widget;\n")?;
        let policy_path = temp_dir.path().join("tool-policy.json");
        let mut config = ToolPolicyConfig::default();
        config.policies.insert(tools::CODE_SEARCH.to_string(), ToolPolicy::Allow);
        config.constraints.insert(
            tools::CODE_SEARCH.to_string(),
            ToolConstraints {
                max_results_per_call: Some(1),
                ..ToolConstraints::default()
            },
        );
        fs::write(&policy_path, serde_json::to_vec_pretty(&config)?)?;
        let policy_manager = crate::tool_policy::ToolPolicyManager::new_with_config_path(policy_path).await?;
        let registry = ToolRegistry::new_with_custom_policy(temp_dir.path().to_path_buf(), policy_manager).await;

        let response = registry
            .execute_tool(
                tools::CODE_SEARCH,
                json!({
                    "query": "Widget",
                    "path": ".",
                    "result_types": ["path"],
                    "max_results": 50
                }),
            )
            .await?;

        assert_eq!(response["filters"]["max_results"], json!(1));
        assert_eq!(response["returned"], json!(1));
        assert_eq!(response["results"].as_array().map(Vec::len), Some(1));
        Ok(())
    }