edgecrab-core 0.4.0

Agent core: conversation loop, prompt builder, context compression, model routing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
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
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
//! # PromptBuilder — assembles the system prompt from context sources
//!
//! WHY a builder: The system prompt is assembled from ~12 sources
//! (identity, platform hints, time, SOUL.md, AGENTS.md, memory,
//! skills, etc.). Each source is optional and discovered at runtime.
//! The builder collects them in priority order and joins them into
//! a single cohesive prompt.
//!
//! ```text
//!   PromptBuilder::new(platform)
//!       .identity(override?)
//!       .discover_context_files(cwd)
//!       .add_memory_sections(...)
//!       .build()  →  String
//! ```

use std::borrow::Cow;
use std::path::Path;
use std::sync::Mutex;

use edgecrab_tools::edit_contract::{MAX_MUTATION_PAYLOAD_BYTES, MAX_MUTATION_PAYLOAD_KIB};
use edgecrab_tools::tools::skills::load_skill_prompt_bundle;
use edgecrab_types::Platform;

// ─── Skills cache ─────────────────────────────────────────────────────
//
// WHY: Scanning ~/.edgecrab/skills/ on every session start is redundant
// when files rarely change. A module-level in-memory cache with a 60-second
// TTL avoids repeated disk I/O while still picking up newly installed skills.
// This mirrors hermes-agent's two-layer (LRU + disk snapshot) approach,
// simplified to a single Mutex-protected entry since the cache key is
// always the same home directory.

struct SkillsCacheEntry {
    /// The cached summary string (or None if skills dir is absent).
    summary: Option<String>,
    /// Disabled skills used when this entry was generated.
    disabled_at_build: Vec<String>,
    /// Wall-clock time when the cache was populated.
    built_at: std::time::Instant,
}

// Key = canonical edgecrab_home path
type SkillsCacheMap = std::collections::HashMap<std::path::PathBuf, SkillsCacheEntry>;

static SKILLS_CACHE: Mutex<Option<SkillsCacheMap>> = Mutex::new(None);

/// TTL for the in-process skills cache.
const SKILLS_CACHE_TTL: std::time::Duration = std::time::Duration::from_secs(60);

/// Invalidate the in-process skills cache.
///
/// Call this after installing or removing a skill so the next
/// `load_skill_summary` call rescans the disk immediately.
pub fn invalidate_skills_cache() {
    if let Ok(mut guard) = SKILLS_CACHE.lock() {
        *guard = None;
    }
}

// ─── Constants ────────────────────────────────────────────────────────

const DEFAULT_IDENTITY: &str = "\
You are EdgeCrab, an intelligent AI agent built with Rust for speed and safety. \
You are helpful, knowledgeable, and direct. You assist users with a wide range of \
tasks including answering questions, writing and debugging code, code review, \
architecture design, analysing information, creative work, and executing actions \
via your tools. You communicate clearly, admit uncertainty when appropriate, and \
prioritise being genuinely useful over being verbose unless otherwise directed. \
Be targeted and efficient in your exploration and investigations.";

const CLI_HINT: &str = "\
You are a CLI AI Agent. Use markdown formatting with code blocks where helpful. \
ANSI colors are supported.";

const TELEGRAM_HINT: &str = "\
You are on a text messaging communication platform, Telegram. \
Please do not use markdown as it does not render. \
You can send media files natively: to deliver a file to the user, \
include MEDIA:/absolute/path/to/file in your response. Images \
(.png, .jpg, .webp) appear as photos, audio (.ogg) sends as voice \
bubbles, and videos (.mp4) play inline. You can also include image \
URLs in markdown format ![alt](url) and they will be sent as native photos.";

const DISCORD_HINT: &str = "\
You are in a Discord server or group chat communicating with your user. \
You can send media files natively: include MEDIA:/absolute/path/to/file \
in your response. Images (.png, .jpg, .webp) are sent as photo \
attachments, audio as file attachments. You can also include image URLs \
in markdown format ![alt](url) and they will be sent as attachments.";

const WHATSAPP_HINT: &str = "\
You are on a text messaging communication platform, WhatsApp. \
Please do not use markdown as it does not render. \
You can send media files natively: to deliver a file to the user, \
include MEDIA:/absolute/path/to/file in your response. The file \
will be sent as a native WhatsApp attachment — images (.jpg, .png, \
.webp) appear as photos, videos (.mp4, .mov) play inline, and other \
files arrive as downloadable documents. You can also include image \
URLs in markdown format ![alt](url) and they will be sent as photos.";

const SLACK_HINT: &str = "\
You are in a Slack workspace communicating with your user. \
You can send media files natively: include MEDIA:/absolute/path/to/file \
in your response. Images (.png, .jpg, .webp) are uploaded as photo \
attachments, audio as file attachments. You can also include image URLs \
in markdown format ![alt](url) and they will be uploaded as attachments.";

const FEISHU_HINT: &str = "\
You are in a Feishu or Lark workspace communicating with your user. \
Prefer plain text over heavy markdown. Keep formatting simple and clear, \
and avoid tables unless the content really requires them.";

const WECOM_HINT: &str = "\
You are in a WeCom workspace communicating with your user. \
Keep responses concise and readable in chat. Prefer plain text with light \
structure over complex markdown or deeply nested formatting.";

const SIGNAL_HINT: &str = "\
You are on a text messaging communication platform, Signal. \
Please do not use markdown as it does not render. \
You can send media files natively: to deliver a file to the user, \
include MEDIA:/absolute/path/to/file in your response. Images \
(.png, .jpg, .webp) appear as photos, audio as attachments, and other \
files arrive as downloadable documents. You can also include image \
URLs in markdown format ![alt](url) and they will be sent as photos.";

const EMAIL_HINT: &str = "\
You are communicating via email. Write clear, well-structured responses \
suitable for email. Use plain text formatting (no markdown). \
Keep responses concise but complete. You can send file attachments — \
include MEDIA:/absolute/path/to/file in your response. The subject line \
is preserved for threading. Do not include greetings or sign-offs unless \
contextually appropriate.";

const SMS_HINT: &str = "\
You are communicating via SMS. Keep responses concise and use plain text \
only — no markdown, no formatting. SMS messages are limited to ~1600 \
characters, so be brief and direct.";

const WEBHOOK_HINT: &str = "\
You are running via Webhook integration. Return structured JSON-friendly \
responses. Keep responses concise and machine-parseable when possible.";

const API_HINT: &str = "\
You are running via API. Return well-structured responses suitable for \
programmatic consumption. Use markdown for formatting.";

const CRON_HINT: &str = "\
You are running as a scheduled cron job. There is no user present — you \
cannot ask questions, request clarification, or wait for follow-up. Execute \
the task fully and autonomously, making reasonable decisions where needed. \
Your final response is automatically delivered to the job's configured \
destination — put the primary content directly in your response.";

const MEMORY_GUIDANCE: &str = "\
You have persistent memory across sessions. Save durable facts using the memory_write \
tool: user preferences, environment details, tool quirks, and stable conventions. \
Memory is injected into every session, so keep it compact and focused on facts that \
will still matter later. Prioritise what reduces future user steering — the most \
valuable memory is one that prevents the user from having to correct or remind you \
again. User preferences and recurring corrections matter more than procedural task \
details. Do NOT save task progress, session outcomes, completed-work logs, or \
temporary TODO state to memory; use session_search to recall those from past \
transcripts. If you've discovered a new non-trivial workflow, save it as a skill \
with skill_manage.";

const SESSION_SEARCH_GUIDANCE: &str = "\
When the user references something from a past conversation or you suspect relevant \
cross-session context exists, use session_search to recall it before asking them to \
repeat themselves.";

const SCHEDULING_GUIDANCE: &str = "\
Use manage_cron_jobs for ALL cron job operations — never edit ~/.edgecrab/cron/jobs.json \
directly via terminal.\n\
\n\
Action→intent mapping:\n\
  create — user wants to schedule a new task: 'every morning', 'remind me daily',\n\
           'check every 2 hours', 'run this each weekday at 9am'.\n\
  list   — user wants to see scheduled jobs: 'show my cron jobs', 'what's scheduled',\n\
           'list automations', 'what jobs are running'.\n\
  pause  — user wants to stop/suppress a job: 'pause the daily briefing',\n\
           'suppress all cron jobs', 'disable the weather check', 'stop the reminder'.\n\
  resume — user wants to re-enable a paused job: 'restart', 'resume', 're-enable'.\n\
  remove — user wants to delete permanently: 'delete', 'remove', 'cancel the job'.\n\
  status — user wants a summary count / next-run time: 'cron status', 'when does it run'.\n\
  update — user wants to change schedule/prompt/delivery of an existing job.\n\
\n\
Workflow for 'suppress all cron jobs':\n\
  1. manage_cron_jobs(action='list')  ← get all job_ids\n\
  2. manage_cron_jobs(action='pause', job_id='<id>')  ← pause each one\n\
\n\
The cron prompt must be fully self-contained — include all specifics (URLs, \
credentials, servers, what to check) since the job runs in a fresh session with \
no access to chat history.\n\
\n\
Delivery — map the user's words to the deliver= parameter:\n\
  'send me on Telegram' / 'notify via Telegram'    → deliver='telegram'\n\
  'send to Discord' / 'post in Discord'            → deliver='discord'\n\
  'notify me on Slack'                             → deliver='slack'\n\
  'send via WhatsApp'                              → deliver='whatsapp'\n\
  'email me the results'                           → deliver='email'\n\
  'send me on Signal'                              → deliver='signal'\n\
  'notify me here' / 'reply in this chat'          → deliver='origin'\n\
  'keep local' / no delivery preference mentioned  → deliver='local'\n\
  'telegram chat -100123456'                        → deliver='telegram:-100123456'\n\
Default: deliver='local' on CLI unless the user specifies a platform. \
For delivery back to the user in this chat, use deliver='origin'.";

const MESSAGE_DELIVERY_GUIDANCE: &str = "\
Use send_message only when the user explicitly wants content delivered to a different \
platform, contact, channel, or thread than the current reply path.\n\
\n\
Rules:\n\
  - Normal reply in the current chat unless the user asks to send elsewhere.\n\
  - If the user gives a clear imperative to send and provides the destination and content, send it directly instead of asking for redundant confirmation.\n\
  - If the user asks to send to Telegram, WhatsApp, Discord, Slack, Signal, email, SMS, or another target, use send_message.\n\
  - If the user asks for a draft, suggested wording, or a message to review, do NOT send it.\n\
  - If the user names only a platform, use that platform's home channel.\n\
  - If the user names a specific channel/person and the target is ambiguous, call send_message(action='list') first.\n\
  - Do not claim you cannot send messages when send_message is available.";

const MOA_GUIDANCE: &str = "\
## Mixture-of-Agents

When the user asks for MoA, mixture-of-agents, multiple experts, cross-model consensus, \
or wants several models compared and then synthesized, call the `moa` tool directly.

Rules:
  - Use `moa` when the request is specifically about multi-model comparison or synthesis.
  - Do not claim the feature is unavailable when `moa` is in the tool list.
  - The canonical tool name is `moa`. `mixture_of_agents` is a legacy alias.";

const LSP_GUIDANCE: &str = "\
## Language Server Usage

When working on supported source files, prefer LSP tools over plain text search for semantic code tasks.

Use LSP first for:
  - definition / implementation lookup
  - references and symbol discovery
  - hover, signature help, semantic tokens, inlay hints
  - call hierarchy and type hierarchy
  - diagnostics, workspace type-error scans, and diagnostic enrichment
  - code actions, rename, and formatting

Operational rules:
  - Prefer lsp_document_symbols / lsp_workspace_symbols over search_files when the user asks about symbols, functions, methods, classes, or types.
  - Prefer lsp_goto_definition, lsp_find_references, and lsp_goto_implementation for navigation instead of guessing from grep matches.
  - Prefer lsp_code_actions, lsp_apply_code_action, lsp_rename, lsp_format_document, and lsp_format_range for code mutations that the server can perform semantically.
  - Use lsp_diagnostics_pull and lsp_workspace_type_errors before making claims about compiler or type errors when an LSP server is available.
  - Use search_files or read_file as fallback when the file type is unsupported, no server is configured, or the task is purely textual rather than semantic.

EdgeCrab's LSP surface exceeds the common 9-operation baseline: it includes navigation plus code actions, rename, formatting, inlay hints, semantic tokens, signature help, type hierarchy, diagnostics pull, linked editing, LLM-enriched diagnostics, guided action selection, and workspace-wide type-error scans.";

fn code_editing_guidance() -> String {
    format!(
        "\
## Code Editing Execution

When the user asks for a concrete code or file change and the necessary tools are available, inspect the relevant files and apply the edit in the same turn.

Rules:
  - Do not stop at a plan, draft diff, or 'ready for a patch?' unless the user explicitly asked for a plan/options or the requirements are materially ambiguous.
  - Use read/search/LSP tools to gather the minimum context needed, then mutate files with apply_patch or write_file.
  - Create new files directly when the request requires them, but keep the first write small when the file will be substantial.
  - The file-mutation contract is hard-bounded: each write_file content payload and each apply_patch patch payload must stay at or under {MAX_MUTATION_PAYLOAD_BYTES} bytes ({MAX_MUTATION_PAYLOAD_KIB} KiB) per call.
  - For large files, full game engines, long scripts, or other substantial code artifacts, do NOT attempt a single giant write_file or execute_code payload. Create a minimal scaffold first, then add the implementation with focused patch/apply_patch steps.
  - Do not call execute_code as a placeholder plan. Only call it when you already have a concrete code payload to run.
  - Once the requested edit or artifact is complete, stop expanding scope. Do not add bonus summary files, quick-reference docs, start-here files, or repeated verification passes unless the user explicitly asked for them.
  - After editing, report what changed and any verification you ran.
  - Ask before destructive changes outside the user's stated scope."
    )
}

const SKILLS_GUIDANCE: &str = "\
After completing a complex task (5+ tool calls), fixing a tricky error, or discovering \
a non-trivial workflow, save the approach as a skill with skill_manage so you can reuse \
it next time. When using a skill and finding it outdated, incomplete, or wrong, patch it \
immediately with skill_manage(action='edit') — don't wait to be asked. Skills that \
aren't maintained become liabilities.";

/// Injected when `vision_analyze` is in the tool list.
///
/// WHY: Two distinct failure modes motivate this block:
///
/// 1. Tool-selection ambiguity (small LOCAL models — qwen3, llama3):
///    Both `browser_vision` and `vision_analyze` contain "vision". Without
///    explicit guidance the model picks `browser_vision` first because it
///    appears earlier in the tool list — even when the user attached a local
///    file. Rule: file path → vision_analyze.
///
/// 2. Double-call (all models, observed with qwen3.5:latest):
///    After `vision_analyze` returns a result the model sometimes continues
///    making tool calls and also calls `browser_vision` as a "confirmation".
///    This wastes 200-300 s and produces duplicate output. Rule: call
///    vision_analyze EXACTLY ONCE per image, then respond.
///
/// 3. execute_code path (large FRONTIER models — GPT-4.1, Sonnet, etc.):
///    These models prefer to wrap multi-step work in execute_code scripts.
///    `vision_analyze` is now exposed as an RPC stub in the sandbox, so
///    `from edgecrab_tools import vision_analyze` works correctly. The rule
///    here is the same: do NOT also call browser_vision afterwards.
const VISION_GUIDANCE: &str = "\
## Image Analysis — Tool Selection Rules

You have TWO vision tools. Use EXACTLY ONE per attached image:

- **vision_analyze** — analyzes a local image FILE or an HTTP(S) image URL.
  Use this when:
  * The user pastes or attaches an image (clipboard paste gives a file path such
    as ~/.edgecrab/images/clipboard_*.png).
  * The user provides any local file path ending in .png, .jpg, .jpeg, .gif,
    .webp, .bmp, .tiff, .avif, or .ico.
  * The user provides an https:// image URL.
  * The prompt contains an *** ATTACHED IMAGES block.
  * Inside execute_code scripts: `from edgecrab_tools import vision_analyze`.

- **browser_vision** — captures a LIVE SCREENSHOT of the current browser page.
  Use this ONLY when you need to visually inspect a web page that is currently
  open in the browser. It does NOT accept file paths. It cannot analyze local
  files or clipboard images.

Decision rule (apply literally, no exceptions):
  file path or *** ATTACHED IMAGES block present  →  vision_analyze (once)
  inspecting the live browser page                →  browser_vision (once)

CRITICAL — ONE CALL RULE:
  After vision_analyze returns a result, respond to the user immediately.
  Do NOT call browser_vision as a second step, confirmation, or fallback.
  Do NOT call browser_vision after vision_analyze for the same request.
  Calling both tools for one image is always wrong.

NEVER call browser_vision when a local image file path is given.";

/// Maximum characters for a context file before truncation kicks in.
const CONTEXT_FILE_MAX_CHARS: usize = 20_000;

/// Head fraction of the truncated content (70% head, 30% tail).
const TRUNCATION_HEAD_RATIO: f64 = 0.70;

// ─── Prompt Injection Scanning ────────────────────────────────────────

/// Severity level for a detected injection threat.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ThreatSeverity {
    Low,
    Medium,
    High,
}

/// A single detected injection threat in user-supplied text.
#[derive(Debug, Clone, PartialEq)]
pub struct InjectionThreat {
    pub pattern_name: String,
    pub severity: ThreatSeverity,
}

/// Invisible unicode codepoints used in prompt injection attacks.
const INVISIBLE_CHARS: &[char] = &[
    '\u{200B}', // zero-width space
    '\u{200C}', // zero-width non-joiner
    '\u{200D}', // zero-width joiner
    '\u{2060}', // word joiner
    '\u{FEFF}', // BOM / zero-width no-break space
    '\u{2028}', // line separator
    '\u{2029}', // paragraph separator
];

/// Homoglyph characters that look like ASCII but are different unicode codepoints.
/// Common Cyrillic/Greek lookalikes for Latin letters.
const HOMOGLYPH_RANGES: &[(char, char)] = &[
    ('\u{0400}', '\u{04FF}'), // Cyrillic
    ('\u{0370}', '\u{03FF}'), // Greek
    ('\u{FF01}', '\u{FF5E}'), // Fullwidth ASCII variants
];

/// Scan text for prompt injection patterns.
///
/// Returns a list of detected threats. An empty Vec means no threats found.
/// This is a heuristic scanner — not a guarantee against all attacks.
pub fn scan_for_injection(text: &str) -> Vec<InjectionThreat> {
    let mut threats = Vec::new();
    let lower = text.to_lowercase();

    // Text-based threat patterns: (substring, pattern_name, severity)
    let text_patterns: &[(&str, &str, ThreatSeverity)] = &[
        ("ignore previous", "ignore_previous", ThreatSeverity::High),
        (
            "ignore all instructions",
            "ignore_all_instructions",
            ThreatSeverity::High,
        ),
        ("disregard", "disregard", ThreatSeverity::Medium),
        ("override system", "override_system", ThreatSeverity::High),
        ("you are now", "you_are_now", ThreatSeverity::High),
        (
            "forget everything",
            "forget_everything",
            ThreatSeverity::High,
        ),
        (
            "new instructions:",
            "new_instructions",
            ThreatSeverity::High,
        ),
        (
            "system prompt:",
            "system_prompt_leak",
            ThreatSeverity::Medium,
        ),
    ];

    for &(pattern, name, severity) in text_patterns {
        if lower.contains(pattern) {
            threats.push(InjectionThreat {
                pattern_name: name.to_string(),
                severity,
            });
        }
    }

    // Check for invisible unicode characters
    if text.chars().any(|c| INVISIBLE_CHARS.contains(&c)) {
        threats.push(InjectionThreat {
            pattern_name: "invisible_unicode".to_string(),
            severity: ThreatSeverity::High,
        });
    }

    // Check for homoglyph characters
    let has_homoglyphs = text.chars().any(|c| {
        HOMOGLYPH_RANGES
            .iter()
            .any(|&(start, end)| c >= start && c <= end)
    });
    if has_homoglyphs {
        threats.push(InjectionThreat {
            pattern_name: "homoglyph_characters".to_string(),
            severity: ThreatSeverity::Medium,
        });
    }

    threats
}

// ─── YAML Frontmatter Stripping ──────────────────────────────────────

/// Strip YAML frontmatter (content between leading `---` markers) from text.
///
/// YAML frontmatter is metadata at the top of markdown files:
/// ```text
/// ---
/// title: My Doc
/// tags: [a, b]
/// ---
/// Actual content starts here.
/// ```
pub fn strip_yaml_frontmatter(text: &str) -> &str {
    let trimmed = text.trim_start();
    if !trimmed.starts_with("---") {
        return text;
    }
    // Find the closing `---` after the opening one
    let after_first = &trimmed[3..];
    if let Some(end_pos) = after_first.find("\n---") {
        // Skip past the closing `---` and the newline after it
        let remainder = &after_first[end_pos + 4..];
        remainder.trim_start_matches('\n').trim_start_matches('\r')
    } else {
        // No closing `---` found — return original text
        text
    }
}

// ─── Context File Truncation ─────────────────────────────────────────

/// Truncate a context file using head/tail strategy.
///
/// If `text` exceeds `CONTEXT_FILE_MAX_CHARS`, keep 70% from the head
/// and 30% from the tail with a marker in between.
pub fn truncate_context_file(text: &str) -> Cow<'_, str> {
    if text.len() <= CONTEXT_FILE_MAX_CHARS {
        return Cow::Borrowed(text);
    }

    let head_len = (CONTEXT_FILE_MAX_CHARS as f64 * TRUNCATION_HEAD_RATIO) as usize;
    let tail_len = CONTEXT_FILE_MAX_CHARS - head_len;

    let head = crate::safe_truncate(text, head_len);
    let tail_start = crate::safe_char_start(text, text.len() - tail_len);
    let tail = &text[tail_start..];

    let omitted = text.len() - CONTEXT_FILE_MAX_CHARS;
    Cow::Owned(format!(
        "{head}\n\n... [{omitted} characters omitted] ...\n\n{tail}"
    ))
}

// ─── PromptBuilder ────────────────────────────────────────────────────

pub struct PromptBuilder {
    platform: Platform,
    skip_context_files: bool,
    execution_environment_guidance: Option<String>,
    /// Optional list of tool names available in this session.
    /// When `None`, all guidance is injected (backward compat / tests).
    /// When `Some`, each guidance snippet is only injected when its gate tool is present.
    available_tools: Option<Vec<String>>,
}

impl PromptBuilder {
    pub fn new(platform: Platform) -> Self {
        Self {
            platform,
            skip_context_files: false,
            execution_environment_guidance: None,
            available_tools: None,
        }
    }

    pub fn skip_context_files(mut self, skip: bool) -> Self {
        self.skip_context_files = skip;
        self
    }

    pub fn execution_environment_guidance(mut self, guidance: Option<String>) -> Self {
        self.execution_environment_guidance = guidance.filter(|s| !s.trim().is_empty());
        self
    }

    /// Gate behavioral guidance on tool availability.
    ///
    /// WHY: MEMORY_GUIDANCE is only useful when `memory_write` is available.
    /// SESSION_SEARCH_GUIDANCE only matters when `session_search` is present.
    /// SKILLS_GUIDANCE only fires when `skill_manage` is loaded. Injecting all
    /// guidance unconditionally wastes tokens on configurations without those tools.
    /// Mirrors hermes-agent's tool-gated guidance injection in `_build_system_prompt`.
    pub fn available_tools(mut self, tools: Vec<String>) -> Self {
        self.available_tools = Some(tools);
        self
    }

    /// Returns true when the list is absent (all tools assumed) or when `tool` is present.
    fn has_tool(&self, tool: &str) -> bool {
        match &self.available_tools {
            None => true,
            Some(tools) => tools.iter().any(|t| t == tool),
        }
    }

    fn has_any_tool(&self, tools: &[&str]) -> bool {
        tools.iter().any(|tool| self.has_tool(tool))
    }

    /// Build the full system prompt.
    ///
    /// `override_identity` replaces the default identity paragraph.
    /// `cwd` is the working directory for context file discovery.
    /// `memory_sections` are pre-formatted memory strings to inject.
    /// `skill_prompt` is the active skills system prompt.
    pub fn build(
        &self,
        override_identity: Option<&str>,
        cwd: Option<&Path>,
        memory_sections: &[String],
        skill_prompt: Option<&str>,
    ) -> String {
        let mut sections: Vec<Cow<'_, str>> = Vec::with_capacity(12);

        // 1. Identity
        sections.push(Cow::Borrowed(override_identity.unwrap_or(DEFAULT_IDENTITY)));

        // 2. Platform hints
        if let Some(hint) = platform_hint(&self.platform) {
            sections.push(Cow::Borrowed(hint));
        }

        // 3. Date/time stamp
        sections.push(Cow::Owned(format!(
            "Current date/time: {}",
            chrono::Local::now().format("%Y-%m-%d %H:%M:%S %Z")
        )));

        // 4. Execution environment guidance
        if let Some(ref guidance) = self.execution_environment_guidance {
            sections.push(Cow::Borrowed(guidance.as_str()));
        }

        // 5-7. Context files (SOUL.md, AGENTS.md, .cursorrules, etc.)
        if !self.skip_context_files {
            if let Some(dir) = cwd {
                let context_files = discover_context_files(dir);
                if !context_files.is_empty() {
                    let mut context_parts: Vec<String> = Vec::new();
                    for (name, content) in context_files {
                        // Scan for prompt injection before injecting into the system prompt.
                        // WHY: Context files like AGENTS.md and SOUL.md are sourced from the
                        // project workspace and could be tampered with to inject malicious
                        // instructions. Scan and block any suspicious content.
                        let threats = scan_for_injection(&content);
                        let critical: Vec<_> = threats
                            .iter()
                            .filter(|t| matches!(t.severity, ThreatSeverity::High))
                            .collect();
                        if !critical.is_empty() {
                            let kinds: Vec<&str> =
                                critical.iter().map(|t| t.pattern_name.as_str()).collect();
                            tracing::warn!(
                                file = %name,
                                threats = ?kinds,
                                "Prompt injection detected in context file — blocking injection"
                            );
                            context_parts.push(format!(
                                "[BLOCKED: {name} contained potential prompt injection ({kinds}). Content skipped for security.]",
                                kinds = kinds.join(", ")
                            ));
                            continue;
                        }
                        // Strip YAML frontmatter and truncate
                        let stripped = strip_yaml_frontmatter(&content);
                        let truncated = truncate_context_file(stripped);
                        context_parts.push(format!("## {name}\n\n{}", truncated.trim()));
                    }
                    if !context_parts.is_empty() {
                        // Wrap in a "Project Context" header matching hermes-agent's format.
                        // WHY: This header instructs the agent that these files should be
                        // followed, not just read. Without the header the agent may treat them
                        // as passive reference material rather than binding guidelines.
                        let block = format!(
                            "# Project Context\n\nThe following project context files have been loaded and should be followed:\n\n{}",
                            context_parts.join("\n\n")
                        );
                        sections.push(Cow::Owned(block));
                    }
                }
            }
        }

        // 8. Memory guidance + sections — only when memory tool is available
        if !memory_sections.is_empty() {
            if self.has_tool("memory_write") {
                sections.push(Cow::Borrowed(MEMORY_GUIDANCE));
            }
            for s in memory_sections {
                sections.push(Cow::Borrowed(s.as_str()));
            }
        }

        // 9. Session search guidance — only when session_search tool is present
        if self.has_tool("session_search") {
            sections.push(Cow::Borrowed(SESSION_SEARCH_GUIDANCE));
        }

        // 10. Skills guidance — only when skill_manage tool is present
        if self.has_tool("skill_manage") {
            sections.push(Cow::Borrowed(SKILLS_GUIDANCE));
        }

        // 11. Scheduling guidance — only for interactive sessions (not cron) and
        //     when manage_cron_jobs is available.
        if self.platform != Platform::Cron && self.has_tool("manage_cron_jobs") {
            sections.push(Cow::Borrowed(SCHEDULING_GUIDANCE));
        }

        // 12. Cross-platform delivery guidance — only when send_message is present.
        if self.has_tool("send_message") {
            sections.push(Cow::Borrowed(MESSAGE_DELIVERY_GUIDANCE));
        }

        // 13. MoA tool-selection guidance — only when moa is present.
        if self.has_tool("moa") {
            sections.push(Cow::Borrowed(MOA_GUIDANCE));
        }

        // 14. Vision tool disambiguation — only when vision_analyze is present.
        // WHY: Smaller local models (qwen3, llama3) reliably pick browser_vision over
        // vision_analyze when local image files are attached, because browser_vision
        // appears earlier in the tool list. Schema descriptions alone are insufficient;
        // the system prompt is the authoritative source of tool-selection rules.
        if self.has_tool("vision_analyze") {
            sections.push(Cow::Borrowed(VISION_GUIDANCE));
        }

        // 15. LSP semantic-navigation guidance — only when the LSP surface is present.
        if self.has_any_tool(&[
            "lsp_goto_definition",
            "lsp_workspace_symbols",
            "lsp_workspace_type_errors",
        ]) {
            sections.push(Cow::Borrowed(LSP_GUIDANCE));
        }

        // 16. Direct code-editing guidance — only when file-mutation tools are present.
        if self.has_any_tool(&["apply_patch", "write_file"]) {
            sections.push(Cow::Owned(code_editing_guidance()));
        }

        // 17. Skills prompt (available skill descriptions)
        if let Some(sp) = skill_prompt {
            if !sp.is_empty() {
                sections.push(Cow::Borrowed(sp));
            }
        }

        sections.join("\n\n")
    }
}

// ─── Platform hints ───────────────────────────────────────────────────

fn platform_hint(platform: &Platform) -> Option<&'static str> {
    match platform {
        Platform::Cli => Some(CLI_HINT),
        Platform::Telegram => Some(TELEGRAM_HINT),
        Platform::Discord => Some(DISCORD_HINT),
        Platform::Whatsapp => Some(WHATSAPP_HINT),
        Platform::Slack => Some(SLACK_HINT),
        Platform::Feishu => Some(FEISHU_HINT),
        Platform::Wecom => Some(WECOM_HINT),
        Platform::Signal => Some(SIGNAL_HINT),
        Platform::Email => Some(EMAIL_HINT),
        Platform::Sms => Some(SMS_HINT),
        Platform::Webhook => Some(WEBHOOK_HINT),
        Platform::Api => Some(API_HINT),
        Platform::Cron => Some(CRON_HINT),
        _ => None,
    }
}

// ─── Context file discovery ───────────────────────────────────────────

/// Discover context files by walking from `cwd` upward.
///
/// Discover project context files with hermes-compatible priority-first-match.
///
/// Priority order (only ONE project context type is loaded — first match wins):
///
/// 1. `.hermes.md` / `HERMES.md` — walks upward to git root (highest priority)
/// 2. `AGENTS.md`                — hierarchical walk: CWD + all subdirectories
///    (skips hidden dirs, node_modules, __pycache__,
///    venv, .venv, target)
/// 3. `CLAUDE.md`                — CWD only
/// 4. `.cursorrules`             — CWD only
///    `.cursor/rules/*.mdc`      — CWD only (loaded together with .cursorrules)
///
/// SOUL.md is NOT loaded here — it is the agent's identity slot and is loaded
/// globally via `load_global_soul()`. Including it in context files would
/// duplicate it in the prompt.
///
/// This mirrors hermes-agent's `build_context_files_prompt()` behaviour.
fn discover_context_files(cwd: &Path) -> Vec<(String, String)> {
    // Priority 1: .hermes.md / HERMES.md — walk to git root
    if let Some(item) = walk_to_git_root_for_file(
        cwd,
        &[".hermes.md", "HERMES.md", ".edgecrab.md", "EDGECRAB.md"],
    ) {
        return vec![item];
    }

    // Priority 2: AGENTS.md — recursive only inside a detected project root.
    // Launching the TUI from `~` must not recurse through the entire home tree.
    if let Some(scan_root) = agents_scan_root(cwd) {
        let started = std::time::Instant::now();
        let agents_files = collect_agents_md_files(&scan_root);
        let elapsed_ms = started.elapsed().as_millis() as u64;
        if elapsed_ms >= 100 || scan_root != cwd {
            tracing::info!(
                cwd = %cwd.display(),
                scan_root = %scan_root.display(),
                file_count = agents_files.len(),
                elapsed_ms,
                "context-files: completed AGENTS.md scan"
            );
        }
        if !agents_files.is_empty() {
            return agents_files;
        }
    } else if let Some(item) = load_cwd_file(cwd, "AGENTS.md") {
        tracing::info!(
            cwd = %cwd.display(),
            "context-files: using cwd AGENTS.md only outside detected project root"
        );
        return vec![item];
    } else {
        tracing::info!(
            cwd = %cwd.display(),
            "context-files: skipped recursive AGENTS.md scan outside detected project root"
        );
    }

    // Priority 3: CLAUDE.md — CWD only
    if let Some(item) = load_cwd_file(cwd, "CLAUDE.md") {
        return vec![item];
    }

    // Priority 4: .cursorrules + .cursor/rules/*.mdc — CWD only
    let mut cursor_items = Vec::new();
    if let Some(item) = load_cwd_file(cwd, ".cursorrules") {
        cursor_items.push(item);
    }
    cursor_items.extend(load_cursor_mdc_rules(cwd));
    if !cursor_items.is_empty() {
        return cursor_items;
    }

    Vec::new()
}

fn agents_scan_root(cwd: &Path) -> Option<std::path::PathBuf> {
    find_git_root(cwd).or_else(|| looks_like_project_root(cwd).then(|| cwd.to_path_buf()))
}

/// Load a single file from exactly `cwd/name` (no upward walk).
fn load_cwd_file(cwd: &Path, name: &str) -> Option<(String, String)> {
    let path = cwd.join(name);
    let content = std::fs::read_to_string(&path).ok()?;
    if content.trim().is_empty() {
        return None;
    }
    Some((name.to_string(), content))
}

/// Walk upward from `cwd` toward the git root looking for any of `candidates`.
///
/// Stops walking when it finds a `.git` directory (git root reached) or the
/// filesystem root. Returns the first match in priority order.
fn walk_to_git_root_for_file(start: &Path, candidates: &[&str]) -> Option<(String, String)> {
    let mut dir = Some(start);
    while let Some(d) = dir {
        for name in candidates {
            let path = d.join(name);
            if let Ok(content) = std::fs::read_to_string(&path) {
                if !content.trim().is_empty() {
                    return Some((name.to_string(), content));
                }
            }
        }
        // Stop at git root (don't continue past it)
        if d.join(".git").exists() {
            break;
        }
        dir = d.parent();
    }
    None
}

fn find_git_root(start: &Path) -> Option<std::path::PathBuf> {
    let mut dir = Some(start);
    while let Some(current) = dir {
        if current.join(".git").exists() {
            return Some(current.to_path_buf());
        }
        dir = current.parent();
    }
    None
}

fn looks_like_project_root(dir: &Path) -> bool {
    const PROJECT_MARKERS: &[&str] = &[
        "Cargo.toml",
        "package.json",
        "pyproject.toml",
        "go.mod",
        "Gemfile",
        "pom.xml",
        "build.gradle",
        "build.gradle.kts",
        "settings.gradle",
        "composer.json",
        "setup.py",
        "requirements.txt",
        "CMakeLists.txt",
        "Makefile",
        "meson.build",
    ];

    PROJECT_MARKERS
        .iter()
        .any(|marker| dir.join(marker).exists())
}

/// Collect all AGENTS.md files by walking CWD and all subdirectories.
///
/// WHY hierarchical: A monorepo may have AGENTS.md files at multiple levels
/// (root, crates/, packages/, etc.) that each provide relevant context.
/// All found files are concatenated so the agent gets the full picture.
///
/// Skipped directories: hidden (`.`-prefixed), node_modules, __pycache__,
/// venv, .venv, target — matching hermes-agent's exclusion list.
fn collect_agents_md_files(cwd: &Path) -> Vec<(String, String)> {
    let mut files: Vec<(std::path::PathBuf, String)> = Vec::new(); // (abs_path, content)
    collect_agents_md_recursive(cwd, cwd, &mut files);

    if files.is_empty() {
        return Vec::new();
    }

    // Sort by path depth then lexicographic so parent AGENTS.md comes first.
    files.sort_by_key(|(p, _)| (p.components().count(), p.to_path_buf()));

    files
        .into_iter()
        .map(|(abs_path, content)| {
            // Display name: relative to cwd if possible
            let rel = abs_path.strip_prefix(cwd).unwrap_or(&abs_path);
            let display = rel.to_string_lossy().into_owned();
            let display = if display.is_empty() {
                "AGENTS.md".to_string()
            } else {
                display
            };
            (display, content)
        })
        .collect()
}

/// Recursive helper: walk `dir`, collecting AGENTS.md files.
fn collect_agents_md_recursive(
    dir: &Path,
    _cwd: &Path,
    files: &mut Vec<(std::path::PathBuf, String)>,
) {
    // Load AGENTS.md in this directory
    let agents_path = dir.join("AGENTS.md");
    if let Ok(content) = std::fs::read_to_string(&agents_path) {
        if !content.trim().is_empty() {
            files.push((agents_path, content));
        }
    }

    // Recurse into subdirectories (skip hidden/system dirs)
    let entries = match std::fs::read_dir(dir) {
        Ok(e) => e,
        Err(_) => return,
    };
    for entry in entries.flatten() {
        let path = entry.path();
        let Ok(metadata) = std::fs::symlink_metadata(&path) else {
            continue;
        };
        let file_type = metadata.file_type();
        if !file_type.is_dir() || file_type.is_symlink() {
            continue;
        }
        let name = match path.file_name().and_then(|n| n.to_str()) {
            Some(n) => n,
            None => continue,
        };
        // Skip hidden dirs, package manager caches, build artifacts
        if name.starts_with('.') {
            continue;
        }
        if matches!(
            name,
            "node_modules" | "__pycache__" | "venv" | ".venv" | "target"
        ) {
            continue;
        }
        collect_agents_md_recursive(&path, _cwd, files);
    }
}

/// Load `.cursor/rules/*.mdc` files from `cwd`.
fn load_cursor_mdc_rules(cwd: &Path) -> Vec<(String, String)> {
    let cursor_rules_dir = cwd.join(".cursor").join("rules");
    if !cursor_rules_dir.is_dir() {
        return Vec::new();
    }

    let entries = match std::fs::read_dir(&cursor_rules_dir) {
        Ok(e) => e,
        Err(_) => return Vec::new(),
    };

    let mut mdc_files: Vec<_> = entries
        .filter_map(|e| e.ok())
        .filter(|e| e.path().extension().is_some_and(|ext| ext == "mdc"))
        .collect();
    mdc_files.sort_by_key(|e| e.file_name());

    let mut result = Vec::new();
    for entry in mdc_files {
        let path = entry.path();
        if let Ok(content) = std::fs::read_to_string(&path) {
            if !content.trim().is_empty() {
                let display_name = format!(".cursor/rules/{}", entry.file_name().to_string_lossy());
                result.push((display_name, content));
            }
        }
    }
    result
}

// ─── Memory loading (frozen snapshot) ────────────────────────────────

/// Maximum characters for memory content in the system prompt.
const MEMORY_MAX_CHARS: usize = 2200;
/// Maximum characters for user profile content in the system prompt.
const USER_MAX_CHARS: usize = 1375;

/// Load memory sections from `~/.edgecrab/memories/` for system prompt injection.
///
/// WHY frozen snapshot: The system prompt gets a snapshot of memory at session
/// start. Mid-session `memory_write` calls update disk but NOT the cached
/// system prompt. This preserves prompt cache efficiency (Anthropic charges
/// for cache misses when the system prompt changes).
///
/// Returns a Vec of formatted memory sections ready for PromptBuilder.
/// Load a single memory markdown file and format it as a section string.
///
/// Extracted to remove the identical read → trim → truncate → format pattern
/// that existed for both MEMORY.md and USER.md inside `load_memory_sections`.
fn load_memory_file(
    mem_dir: &std::path::Path,
    filename: &str,
    title: &str,
    max_chars: usize,
) -> Option<String> {
    let content = std::fs::read_to_string(mem_dir.join(filename)).ok()?;
    let trimmed = content.trim();
    if trimmed.is_empty() {
        return None;
    }
    let truncated = crate::safe_truncate(trimmed, max_chars);
    let pct = (trimmed.len() * 100) / max_chars;
    let sep = "".repeat(46);
    Some(format!(
        "{sep}\n{title} [{pct}% — {}/{max_chars} chars]\n{sep}\n{truncated}",
        trimmed.len()
    ))
}

/// Default SOUL.md content — seeded into `~/.edgecrab/SOUL.md` on first run
/// if the file does not yet exist. Mirrors hermes-agent's auto-seeding behavior.
/// Users can freely edit or replace this file; EdgeCrab never overwrites it.
const DEFAULT_SOUL_MD: &str = "\
You are EdgeCrab — a precise, efficient, and trustworthy AI agent built with Rust. \
You care about correctness, clear explanations, and getting things done. \
You prefer direct answers over verbosity, but never sacrifice clarity for brevity. \
When you're uncertain, you say so. When you make an error, you acknowledge it and fix it. \
You treat users as capable adults and provide the depth they need.";

/// Load the global SOUL.md from `~/.edgecrab/SOUL.md`.
///
/// WHY global vs project: The global SOUL.md defines the agent's baseline
/// identity across all projects. It is seeded automatically on first run so
/// users always have a customisable persona file. Project-level SOUL.md files
/// (in the CWD tree) are loaded separately as context file sections, allowing
/// per-project persona tuning on top of the global baseline.
///
/// Matches hermes-agent's approach: SOUL.md at HERMES_HOME is slot #1 identity.
pub fn load_global_soul(edgecrab_home: &Path) -> Option<String> {
    // Auto-seed if missing
    seed_global_soul(edgecrab_home);

    let soul_path = edgecrab_home.join("SOUL.md");
    let content = std::fs::read_to_string(&soul_path).ok()?;
    let trimmed = content.trim();
    if trimmed.is_empty() {
        return None;
    }

    // Security scan — same as context files
    let threats = scan_for_injection(trimmed);
    let critical: Vec<_> = threats
        .iter()
        .filter(|t| matches!(t.severity, ThreatSeverity::High))
        .collect();
    if !critical.is_empty() {
        let kinds: Vec<&str> = critical.iter().map(|t| t.pattern_name.as_str()).collect();
        tracing::warn!(
            threats = ?kinds,
            "Prompt injection detected in SOUL.md — using default identity"
        );
        return None;
    }

    // Truncate at CONTEXT_FILE_MAX_CHARS
    let truncated = truncate_context_file(trimmed);
    Some(truncated.into_owned())
}

/// Seed the global SOUL.md file if it does not already exist.
///
/// WHY: New users should have a SOUL.md file they can edit immediately.
/// We never overwrite an existing file — even an empty one.
/// This mirrors hermes-agent's auto-seed-if-missing behavior.
fn seed_global_soul(edgecrab_home: &Path) {
    let soul_path = edgecrab_home.join("SOUL.md");
    if soul_path.exists() {
        return;
    }
    // Ensure the directory exists before writing
    if let Err(e) = std::fs::create_dir_all(edgecrab_home) {
        tracing::warn!("Cannot create edgecrab home for SOUL.md seeding: {e}");
        return;
    }
    if let Err(e) = std::fs::write(&soul_path, DEFAULT_SOUL_MD) {
        tracing::warn!("Cannot seed SOUL.md: {e}");
    } else {
        tracing::info!("Seeded default SOUL.md at {}", soul_path.display());
    }
}

pub fn load_memory_sections(edgecrab_home: &Path) -> Vec<String> {
    let mut sections = Vec::new();
    let mem_dir = edgecrab_home.join("memories");

    if let Some(s) = load_memory_file(
        &mem_dir,
        "MEMORY.md",
        "MEMORY (your personal notes)",
        MEMORY_MAX_CHARS,
    ) {
        sections.push(s);
    }
    if let Some(s) = load_memory_file(&mem_dir, "USER.md", "USER PROFILE", USER_MAX_CHARS) {
        sections.push(s);
    }

    // Load Honcho user model — persistent cross-session observations.
    // WHY here: The user model is loaded alongside MEMORY.md / USER.md at
    // session start so the agent immediately knows the user's preferences,
    // projects, and communication style without needing to ask.
    if let Some(honcho_section) = edgecrab_tools::tools::honcho::load_honcho_user_context() {
        sections.push(honcho_section);
    }

    sections
}

// ─── Skill summary for system prompt ─────────────────────────────────

/// Scan `~/.edgecrab/skills/` and produce a summary of available skills
/// for injection into the system prompt.
///
/// WHY progressive disclosure: We only include skill names and short
/// descriptions (from YAML frontmatter) in the system prompt — not the
/// full skill content. The agent can use `skill_view` to load full
/// details on demand. This keeps prompt size manageable.
/// Load the full content of preloaded skills from the configured skill roots.
///
/// Returns a formatted string containing each skill's full markdown content,
/// prefixed with a header. Returns an empty string when the list is empty or
/// no skill files are found.
pub fn load_preloaded_skills(
    edgecrab_home: &Path,
    external_dirs: &[String],
    skill_names: &[String],
    session_id: Option<&str>,
) -> String {
    if skill_names.is_empty() {
        return String::new();
    }
    let mut parts: Vec<String> = Vec::new();

    for name in skill_names {
        if let Some(bundle) =
            load_skill_prompt_bundle(edgecrab_home, external_dirs, name, session_id)
        {
            parts.push(bundle);
        } else {
            tracing::debug!("preloaded skill '{name}' not found in skills directories");
        }
    }

    if parts.is_empty() {
        return String::new();
    }
    format!(
        "# Preloaded Skills\n\nThe following skills are preloaded and active:\n\n{}",
        parts.join("\n\n---\n\n")
    )
}

///
/// Supports both flat (`skills/my-skill/SKILL.md`) and nested category
/// layouts (`skills/category/my-skill/SKILL.md`) matching hermes-agent.
///
/// # Arguments
/// * `edgecrab_home` — the `~/.edgecrab/` directory path
/// * `disabled_skills` — skill names to suppress globally (from config.skills.disabled)
/// * `available_tools` — optional list of available tool names for conditional activation
/// * `available_toolsets` — optional list of available toolset names for conditional activation
pub fn load_skill_summary(
    edgecrab_home: &Path,
    disabled_skills: &[String],
    available_tools: Option<&[String]>,
    available_toolsets: Option<&[String]>,
) -> Option<String> {
    // ── In-process cache hit (60-second TTL) ───────────────────────────
    // Only cache when there are no conditional filters (available_tools /
    // available_toolsets) because those are per-call and can vary.
    let can_cache = available_tools.is_none() && available_toolsets.is_none();
    let cache_key = edgecrab_home.to_path_buf();
    if can_cache {
        if let Ok(guard) = SKILLS_CACHE.lock() {
            if let Some(ref map) = *guard {
                if let Some(entry) = map.get(&cache_key) {
                    if entry.built_at.elapsed() < SKILLS_CACHE_TTL
                        && entry.disabled_at_build == disabled_skills
                    {
                        tracing::trace!("skills cache hit");
                        return entry.summary.clone();
                    }
                }
            }
        }
    }

    let result = load_skill_summary_inner(
        edgecrab_home,
        disabled_skills,
        available_tools,
        available_toolsets,
    );

    if can_cache {
        if let Ok(mut guard) = SKILLS_CACHE.lock() {
            let map = guard.get_or_insert_with(std::collections::HashMap::new);
            map.insert(
                cache_key,
                SkillsCacheEntry {
                    summary: result.clone(),
                    disabled_at_build: disabled_skills.to_vec(),
                    built_at: std::time::Instant::now(),
                },
            );
        }
    }
    result
}

/// Inner (uncached) implementation of the skill scanning logic.
fn load_skill_summary_inner(
    edgecrab_home: &Path,
    disabled_skills: &[String],
    available_tools: Option<&[String]>,
    available_toolsets: Option<&[String]>,
) -> Option<String> {
    let skills_dir = edgecrab_home.join("skills");
    if !skills_dir.is_dir() {
        return None;
    }

    // Detect the current OS platform for platform filtering
    let current_platform = std::env::consts::OS; // "macos" | "linux" | "windows"

    // Build a set of disabled skill names for fast lookup
    let disabled_set: std::collections::HashSet<&str> =
        disabled_skills.iter().map(|s| s.as_str()).collect();

    // Collect (category, name, description) tuples
    let mut skills: Vec<(Option<String>, String, String)> = Vec::new();

    // Recursive helper: scan a directory for skill folders (dirs containing SKILL.md)
    fn scan_dir(
        dir: &Path,
        category: Option<&str>,
        current_platform: &str,
        disabled_set: &std::collections::HashSet<&str>,
        available_tools: Option<&[String]>,
        available_toolsets: Option<&[String]>,
        skills: &mut Vec<(Option<String>, String, String)>,
    ) {
        let entries = match std::fs::read_dir(dir) {
            Ok(e) => e,
            Err(_) => return,
        };
        for entry in entries.flatten() {
            let path = entry.path();
            if !path.is_dir() {
                continue;
            }
            let name = match path.file_name().and_then(|n| n.to_str()) {
                Some(n) => n.to_string(),
                None => continue,
            };
            // Skip hidden/system dirs
            if name.starts_with('.') {
                continue;
            }
            let skill_md = path.join("SKILL.md");
            if skill_md.is_file() {
                // This directory is a skill
                let content = std::fs::read_to_string(&skill_md).unwrap_or_default();

                // Check platform compatibility from frontmatter
                if !skill_matches_platform(&content, current_platform) {
                    continue;
                }

                // Read frontmatter name (if present) for the disabled check
                let frontmatter_name = extract_frontmatter_name(&content);
                let display_name = frontmatter_name.as_deref().unwrap_or(&name);

                // Skip disabled skills
                if disabled_set.contains(name.as_str()) || disabled_set.contains(display_name) {
                    continue;
                }

                // Conditional activation: apply only when tool names are known
                if available_tools.is_some() || available_toolsets.is_some() {
                    let conditions = extract_skill_conditions(&content);
                    if !skill_should_show(&conditions, available_tools, available_toolsets) {
                        continue;
                    }
                }

                // Try SKILL.md frontmatter description first, fallback to DESCRIPTION.md
                let description = extract_skill_description(&content)
                    .or_else(|| {
                        // DESCRIPTION.md fallback: check in same skill dir
                        let desc_md = path.join("DESCRIPTION.md");
                        std::fs::read_to_string(&desc_md).ok().and_then(|d| {
                            extract_skill_description(&d).or_else(|| {
                                // If no frontmatter description, take the first non-empty,
                                // non-heading line from DESCRIPTION.md body
                                d.lines()
                                    .map(|l| l.trim())
                                    .find(|l| !l.is_empty() && !l.starts_with('#'))
                                    .map(|l| {
                                        if l.len() > 200 {
                                            format!("{}", crate::safe_truncate(l, 197))
                                        } else {
                                            l.to_string()
                                        }
                                    })
                            })
                        })
                    })
                    .unwrap_or_default();

                skills.push((category.map(|s| s.to_string()), name, description));
            } else {
                // Not a skill — might be a category directory; recurse deeper.
                // Build nested category path (e.g. "mlops" → "mlops/training").
                let nested_cat = match category {
                    Some(cat) => format!("{cat}/{name}"),
                    None => name.clone(),
                };
                scan_dir(
                    &path,
                    Some(&nested_cat),
                    current_platform,
                    disabled_set,
                    available_tools,
                    available_toolsets,
                    skills,
                );
            }
        }
    }

    scan_dir(
        &skills_dir,
        None,
        current_platform,
        &disabled_set,
        available_tools,
        available_toolsets,
        &mut skills,
    );

    if skills.is_empty() {
        return None;
    }

    skills.sort_by(|a, b| a.0.cmp(&b.0).then_with(|| a.1.cmp(&b.1)));

    let mut output = String::from(
        "## Skills (mandatory)\n\
         Before replying, scan the skills below. If one specifically matches your task's architecture, platform, and task shape, \
         load it with skill_view(name) and follow its instructions. \
         Do not load a vaguely related skill when the codebase shape or implementation style differs materially. \
         If a skill has issues, fix it with skill_manage(action='edit') — don't wait to be asked.\n\
         After difficult/iterative tasks, save the approach as a skill. \
         If a skill you loaded was missing steps, had wrong commands, or needed \
         pitfalls you discovered, update it before finishing.\n\n\
         <available_skills>\n",
    );
    let mut current_category: Option<&str> = None;
    for (cat, name, desc) in &skills {
        // Emit category header when it changes
        let cat_str = cat.as_deref();
        if cat_str != current_category {
            if let Some(c) = cat_str {
                output.push_str(&format!("### {c}\n"));
            }
            current_category = cat_str;
        }
        if desc.is_empty() {
            output.push_str(&format!("- **{name}**\n"));
        } else {
            output.push_str(&format!("- **{name}**: {desc}\n"));
        }
    }
    output.push_str(
        "</available_skills>\n\nIf none match, proceed normally without loading a skill.",
    );
    Some(output)
}

/// Check if a skill is compatible with the current OS platform.
///
/// Reads the `platforms:` YAML frontmatter field (list of strings).
/// Recognized platform names: `macos`, `linux`, `windows`.
/// If the field is absent or empty, the skill is always included.
fn skill_matches_platform(skill_md_content: &str, current_os: &str) -> bool {
    let trimmed = skill_md_content.trim_start();
    if !trimmed.starts_with("---") {
        return true; // no frontmatter → always include
    }
    let after_first = &trimmed[3..];
    let end_pos = match after_first.find("\n---") {
        Some(p) => p,
        None => return true,
    };
    let frontmatter = &after_first[..end_pos];

    // Look for `platforms:` line — simple YAML list parsing
    // Accepts both inline: `platforms: [macos, linux]` and block list:
    //   platforms:
    //     - macos
    let mut platforms: Vec<String> = Vec::new();
    let mut in_platforms_block = false;

    for line in frontmatter.lines() {
        let trimmed_line = line.trim();

        if let Some(rest) = trimmed_line.strip_prefix("platforms:") {
            in_platforms_block = true;
            // Inline list: platforms: [macos, linux]
            let rest = rest.trim().trim_start_matches('[').trim_end_matches(']');
            if !rest.is_empty() {
                for item in rest.split(',') {
                    let v = item
                        .trim()
                        .trim_matches('"')
                        .trim_matches('\'')
                        .to_lowercase();
                    if !v.is_empty() {
                        platforms.push(v);
                    }
                }
                in_platforms_block = false; // inline list is complete
            }
        } else if in_platforms_block {
            if let Some(item) = trimmed_line.strip_prefix("- ") {
                let v = item
                    .trim()
                    .trim_matches('"')
                    .trim_matches('\'')
                    .to_lowercase();
                if !v.is_empty() {
                    platforms.push(v);
                }
            } else if !trimmed_line.is_empty() && !trimmed_line.starts_with('#') {
                in_platforms_block = false; // end of block list
            }
        }
    }

    if platforms.is_empty() {
        return true; // no restriction
    }

    // std::env::consts::OS values already use "macos", "linux", "windows"
    let canonical_os = current_os;

    platforms.iter().any(|p| p == canonical_os)
}

/// Extract the description field from YAML frontmatter in a skill file.
///
/// Looks for a `description:` line between `---` markers.
pub fn extract_skill_description(content: &str) -> Option<String> {
    let trimmed = content.trim_start();
    if !trimmed.starts_with("---") {
        return None;
    }
    let after_first = &trimmed[3..];
    let end_pos = after_first.find("\n---")?;
    let frontmatter = &after_first[..end_pos];

    for line in frontmatter.lines() {
        let line = line.trim();
        if let Some(rest) = line.strip_prefix("description:") {
            let desc = rest.trim().trim_matches('"').trim_matches('\'');
            if !desc.is_empty() {
                // Truncate long descriptions
                return Some(if desc.len() > 200 {
                    format!("{}", crate::safe_truncate(desc, 197))
                } else {
                    desc.to_string()
                });
            }
        }
        if let Some(rest) = line.strip_prefix("when_to_use:") {
            let desc = rest.trim().trim_matches('"').trim_matches('\'');
            if !desc.is_empty() {
                return Some(if desc.len() > 200 {
                    format!("{}", crate::safe_truncate(desc, 197))
                } else {
                    desc.to_string()
                });
            }
        }
    }
    None
}

/// Extract the `name:` field from YAML frontmatter in a skill file.
pub fn extract_frontmatter_name(content: &str) -> Option<String> {
    let trimmed = content.trim_start();
    if !trimmed.starts_with("---") {
        return None;
    }
    let after_first = &trimmed[3..];
    let end_pos = after_first.find("\n---")?;
    let frontmatter = &after_first[..end_pos];
    for line in frontmatter.lines() {
        let line = line.trim();
        if let Some(rest) = line.strip_prefix("name:") {
            let n = rest.trim().trim_matches('"').trim_matches('\'');
            if !n.is_empty() {
                return Some(n.to_string());
            }
        }
    }
    None
}

/// Conditional activation fields from a skill's YAML frontmatter.
///
/// These mirror hermes-agent's skill condition system:
/// - `requires_tools`: skill only shows when ALL listed tool names are available
/// - `requires_toolsets`: skill only shows when ALL listed toolsets are available
/// - `fallback_for_tools`: skill is hidden when ANY of these tools are available (it's a fallback)
/// - `fallback_for_toolsets`: skill is hidden when ANY of these toolsets are available
#[derive(Debug, Default)]
pub struct SkillConditions {
    pub requires_tools: Vec<String>,
    pub requires_toolsets: Vec<String>,
    pub fallback_for_tools: Vec<String>,
    pub fallback_for_toolsets: Vec<String>,
}

/// Extract conditional activation fields from YAML frontmatter.
fn extract_skill_conditions(content: &str) -> SkillConditions {
    let mut cond = SkillConditions::default();
    let trimmed = content.trim_start();
    if !trimmed.starts_with("---") {
        return cond;
    }
    let after_first = &trimmed[3..];
    let end_pos = match after_first.find("\n---") {
        Some(p) => p,
        None => return cond,
    };
    let frontmatter = &after_first[..end_pos];

    // Helper: parse a list from a YAML key (inline or block)
    fn parse_yaml_list(frontmatter: &str, key: &str) -> Vec<String> {
        let mut result = Vec::new();
        let mut in_block = false;
        for line in frontmatter.lines() {
            let tl = line.trim();
            if let Some(rest) = tl.strip_prefix(key) {
                in_block = true;
                let rest = rest.trim().trim_start_matches('[').trim_end_matches(']');
                if !rest.is_empty() {
                    // inline list
                    for item in rest.split(',') {
                        let v = item.trim().trim_matches('"').trim_matches('\'').to_string();
                        if !v.is_empty() {
                            result.push(v);
                        }
                    }
                    in_block = false;
                }
            } else if in_block {
                if let Some(item) = tl.strip_prefix("- ") {
                    let v = item.trim().trim_matches('"').trim_matches('\'').to_string();
                    if !v.is_empty() {
                        result.push(v);
                    }
                } else if !tl.is_empty() && !tl.starts_with('#') {
                    in_block = false;
                }
            }
        }
        result
    }

    cond.requires_tools = parse_yaml_list(frontmatter, "requires_tools:");
    cond.requires_toolsets = parse_yaml_list(frontmatter, "requires_toolsets:");
    cond.fallback_for_tools = parse_yaml_list(frontmatter, "fallback_for_tools:");
    cond.fallback_for_toolsets = parse_yaml_list(frontmatter, "fallback_for_toolsets:");
    cond
}

/// Determine whether a skill should be shown given its conditions and available tools.
///
/// Returns `false` (hide) when:
/// - A `fallback_for_tools` entry IS in the available tools (primary tool is present)
/// - A `fallback_for_toolsets` entry IS in the available toolsets
/// - A `requires_tools` entry is NOT in the available tools
/// - A `requires_toolsets` entry is NOT in the available toolsets
///
/// Returns `true` (show) in all other cases (including when tool info is unavailable).
fn skill_should_show(
    conditions: &SkillConditions,
    available_tools: Option<&[String]>,
    available_toolsets: Option<&[String]>,
) -> bool {
    // fallback_for: hide when the primary tool/toolset IS available
    if let Some(at) = available_tools {
        for t in &conditions.fallback_for_tools {
            if at.iter().any(|a| a == t) {
                return false;
            }
        }
    }
    if let Some(ats) = available_toolsets {
        for ts in &conditions.fallback_for_toolsets {
            if ats.iter().any(|a| a == ts) {
                return false;
            }
        }
    }

    // requires: if availability is known, hide when a required tool/toolset is absent.
    if let Some(at) = available_tools {
        for t in &conditions.requires_tools {
            if !at.iter().any(|a| a == t) {
                return false;
            }
        }
    }
    if let Some(ats) = available_toolsets {
        for ts in &conditions.requires_toolsets {
            if !ats.iter().any(|a| a == ts) {
                return false;
            }
        }
    }

    true
}

// ─── Tests ────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn default_prompt_contains_identity() {
        let builder = PromptBuilder::new(Platform::Cli);
        let prompt = builder.build(None, None, &[], None);
        assert!(prompt.contains("EdgeCrab"));
        assert!(prompt.contains("Current date/time"));
    }

    #[test]
    fn override_identity() {
        let builder = PromptBuilder::new(Platform::Cli);
        let prompt = builder.build(Some("You are TestBot."), None, &[], None);
        assert!(prompt.starts_with("You are TestBot."));
        assert!(!prompt.contains(DEFAULT_IDENTITY));
    }

    #[test]
    fn platform_hint_injected() {
        let builder = PromptBuilder::new(Platform::Telegram);
        let prompt = builder.build(None, None, &[], None);
        // Telegram hint tells agent not to use markdown and to use MEDIA:// protocol
        assert!(
            prompt.contains("MEDIA:"),
            "Telegram hint should mention MEDIA:// protocol"
        );
        assert!(
            prompt.contains("Telegram"),
            "Telegram hint should mention platform name"
        );
    }

    #[test]
    fn cli_hint_injected() {
        let builder = PromptBuilder::new(Platform::Cli);
        let prompt = builder.build(None, None, &[], None);
        assert!(prompt.contains("ANSI colors"));
    }

    #[test]
    fn execution_environment_guidance_is_included() {
        let builder = PromptBuilder::new(Platform::Cli).execution_environment_guidance(Some(
            "## Execution Filesystem\n\nworkspace info".into(),
        ));
        let prompt = builder.build(None, None, &[], None);
        assert!(prompt.contains("## Execution Filesystem"));
        assert!(prompt.contains("workspace info"));
    }

    #[test]
    fn memory_sections_included() {
        let builder = PromptBuilder::new(Platform::Cli);
        let mem = vec!["USER.md content here".into()];
        let prompt = builder.build(None, None, &mem, None);
        assert!(prompt.contains("persistent memory"));
        assert!(prompt.contains("USER.md content here"));
    }

    #[test]
    fn skill_prompt_included() {
        let builder = PromptBuilder::new(Platform::Cli);
        let prompt = builder.build(None, None, &[], Some("Use skill X for Y."));
        assert!(prompt.contains("Use skill X for Y."));
    }

    #[test]
    fn empty_skill_prompt_excluded() {
        let builder = PromptBuilder::new(Platform::Cli);
        let prompt = builder.build(None, None, &[], Some(""));
        // Empty string should not contribute blank lines
        let prompt_without_datetime = prompt
            .lines()
            .filter(|l| !l.starts_with("Current date/time"))
            .collect::<Vec<_>>()
            .join("\n");
        // Should not have triple newlines from empty section
        assert!(!prompt_without_datetime.contains("\n\n\n\n"));
    }

    #[test]
    fn skip_context_files_flag() {
        let builder = PromptBuilder::new(Platform::Cli).skip_context_files(true);
        let tmp = std::env::temp_dir();
        let prompt = builder.build(None, Some(&tmp), &[], None);
        // Should not contain any "---" file sections
        assert!(!prompt.contains("--- SOUL.md ---"));
    }

    #[test]
    fn context_file_discovery_with_temp_dir() {
        let tmp = tempfile::tempdir().expect("tempdir");
        std::fs::write(tmp.path().join("AGENTS.md"), "# My agents\ntest content").expect("write");

        let builder = PromptBuilder::new(Platform::Cli);
        let prompt = builder.build(None, Some(tmp.path()), &[], None);
        assert!(prompt.contains("AGENTS.md"));
        assert!(prompt.contains("test content"));
    }

    #[test]
    fn soul_file_not_in_context_files() {
        // SOUL.md is identity-only (loaded globally via load_global_soul).
        // It must NOT appear in discover_context_files — hermes does not load
        // SOUL.md from the CWD into context files.
        let tmp = tempfile::tempdir().expect("tempdir");
        std::fs::write(tmp.path().join("SOUL.md"), "soul content").expect("write");
        std::fs::write(tmp.path().join(".SOUL.md"), "dot soul content").expect("write");

        let files = discover_context_files(tmp.path());
        // Neither SOUL.md variant should appear in context files
        let soul = files
            .iter()
            .find(|(name, _)| name.to_lowercase().contains("soul"));
        assert!(
            soul.is_none(),
            "SOUL.md should not appear in context files: {soul:?}"
        );
    }

    #[test]
    fn hermes_md_wins_over_agents_md() {
        // .hermes.md has higher priority than AGENTS.md
        let tmp = tempfile::tempdir().expect("tempdir");
        std::fs::write(tmp.path().join(".hermes.md"), "hermes instructions").expect("write");
        std::fs::write(tmp.path().join("AGENTS.md"), "agents instructions").expect("write");

        let files = discover_context_files(tmp.path());
        assert_eq!(files.len(), 1);
        assert!(files[0].1.contains("hermes instructions"));
        assert!(!files[0].1.contains("agents instructions"));
    }

    #[test]
    fn agents_md_hierarchical_walk() {
        // AGENTS.md files from subdirectories are collected
        let tmp = tempfile::tempdir().expect("tempdir");
        std::fs::write(
            tmp.path().join("Cargo.toml"),
            "[package]\nname = \"demo\"\nversion = \"0.1.0\"\n",
        )
        .expect("write Cargo.toml");
        std::fs::write(tmp.path().join("AGENTS.md"), "root agents").expect("write");
        let subdir = tmp.path().join("subdir");
        std::fs::create_dir(&subdir).expect("mkdir");
        std::fs::write(subdir.join("AGENTS.md"), "sub agents").expect("write");

        let files = discover_context_files(tmp.path());
        assert_eq!(files.len(), 2, "should find both AGENTS.md files");
        let combined: String = files
            .iter()
            .map(|(_, c)| c.as_str())
            .collect::<Vec<_>>()
            .join(" ");
        assert!(combined.contains("root agents"));
        assert!(combined.contains("sub agents"));
    }

    #[test]
    fn agents_md_skips_hidden_dirs() {
        // Hidden subdirectories should not be walked for AGENTS.md
        let tmp = tempfile::tempdir().expect("tempdir");
        std::fs::write(
            tmp.path().join("Cargo.toml"),
            "[package]\nname = \"demo\"\nversion = \"0.1.0\"\n",
        )
        .expect("write Cargo.toml");
        std::fs::write(tmp.path().join("AGENTS.md"), "root agents").expect("write");
        let hidden = tmp.path().join(".hidden");
        std::fs::create_dir(&hidden).expect("mkdir");
        std::fs::write(hidden.join("AGENTS.md"), "hidden agents").expect("write");

        let files = discover_context_files(tmp.path());
        let combined: String = files
            .iter()
            .map(|(_, c)| c.as_str())
            .collect::<Vec<_>>()
            .join(" ");
        assert!(
            !combined.contains("hidden agents"),
            "content from hidden dirs should be skipped"
        );
    }

    #[test]
    fn agents_md_does_not_recurse_outside_project_root() {
        let tmp = tempfile::tempdir().expect("tempdir");
        std::fs::write(tmp.path().join("AGENTS.md"), "root agents").expect("write");
        let subdir = tmp.path().join("nested");
        std::fs::create_dir(&subdir).expect("mkdir");
        std::fs::write(subdir.join("AGENTS.md"), "nested agents").expect("write");

        let files = discover_context_files(tmp.path());
        assert_eq!(files.len(), 1, "non-project cwd should not recurse");
        assert_eq!(files[0].0, "AGENTS.md");
        assert!(files[0].1.contains("root agents"));
        assert!(!files[0].1.contains("nested agents"));
    }

    #[test]
    fn agents_md_uses_git_root_when_called_from_subdir() {
        let tmp = tempfile::tempdir().expect("tempdir");
        std::fs::create_dir(tmp.path().join(".git")).expect("mkdir .git");
        std::fs::write(tmp.path().join("AGENTS.md"), "repo agents").expect("write");
        let app = tmp.path().join("app");
        std::fs::create_dir(&app).expect("mkdir app");
        std::fs::write(app.join("AGENTS.md"), "app agents").expect("write");

        let files = discover_context_files(&app);
        let combined = files
            .iter()
            .map(|(name, content)| format!("{name}:{content}"))
            .collect::<Vec<_>>()
            .join("\n");
        assert!(
            combined.contains("AGENTS.md:repo agents"),
            "missing repo AGENTS: {combined}"
        );
        assert!(
            combined.contains("app/AGENTS.md:app agents"),
            "missing nested AGENTS: {combined}"
        );
    }

    #[test]
    fn load_skill_summary_flat_skills() {
        let tmp = tempfile::tempdir().expect("tempdir");
        let skill_dir = tmp.path().join("skills").join("my-skill");
        std::fs::create_dir_all(&skill_dir).expect("mkdir");
        std::fs::write(
            skill_dir.join("SKILL.md"),
            "---\ndescription: Does something useful\n---\n# My Skill",
        )
        .expect("write");

        let summary = load_skill_summary(tmp.path(), &[], None, None).expect("Some");
        assert!(summary.contains("my-skill"), "skill name missing");
        assert!(
            summary.contains("Does something useful"),
            "description missing"
        );
        // Flat skill should NOT produce a category header
        assert!(
            !summary.contains("###"),
            "unexpected category header for flat skill"
        );
    }

    #[test]
    fn load_skill_summary_nested_categories() {
        let tmp = tempfile::tempdir().expect("tempdir");

        // skills/coding/formatter/SKILL.md
        let formatter = tmp.path().join("skills").join("coding").join("formatter");
        std::fs::create_dir_all(&formatter).expect("mkdir");
        std::fs::write(
            formatter.join("SKILL.md"),
            "---\ndescription: Formats code\n---\n# Formatter",
        )
        .expect("write formatter");

        // skills/writing/proofreader/SKILL.md
        let proofreader = tmp
            .path()
            .join("skills")
            .join("writing")
            .join("proofreader");
        std::fs::create_dir_all(&proofreader).expect("mkdir");
        std::fs::write(
            proofreader.join("SKILL.md"),
            "---\ndescription: Checks grammar\n---\n# Proofreader",
        )
        .expect("write proofreader");

        let summary = load_skill_summary(tmp.path(), &[], None, None).expect("Some");

        // Category headers should appear
        assert!(
            summary.contains("### coding"),
            "missing coding header in:\n{summary}"
        );
        assert!(
            summary.contains("### writing"),
            "missing writing header in:\n{summary}"
        );

        // Skill names should appear
        assert!(
            summary.contains("formatter"),
            "missing formatter in:\n{summary}"
        );
        assert!(
            summary.contains("proofreader"),
            "missing proofreader in:\n{summary}"
        );

        // Descriptions should appear
        assert!(summary.contains("Formats code"), "missing formatter desc");
        assert!(
            summary.contains("Checks grammar"),
            "missing proofreader desc"
        );

        // coding should come before writing (alphabetical sort)
        let coding_pos = summary.find("coding").expect("coding pos");
        let writing_pos = summary.find("writing").expect("writing pos");
        assert!(
            coding_pos < writing_pos,
            "coding should sort before writing"
        );
    }

    #[test]
    fn load_skill_summary_deeply_nested() {
        // Test skills nested more than one level (e.g. mlops/training/axolotl)
        let tmp = tempfile::tempdir().expect("tempdir");
        let axolotl = tmp
            .path()
            .join("skills")
            .join("mlops")
            .join("training")
            .join("axolotl");
        std::fs::create_dir_all(&axolotl).expect("mkdir");
        std::fs::write(
            axolotl.join("SKILL.md"),
            "---\ndescription: Fine-tuning tool\n---\n# Axolotl",
        )
        .expect("write");

        let summary = load_skill_summary(tmp.path(), &[], None, None).expect("Some");
        assert!(
            summary.contains("axolotl"),
            "missing axolotl in:\n{summary}"
        );
        assert!(
            summary.contains("Fine-tuning tool"),
            "missing description in:\n{summary}"
        );
        // Should show nested category path
        assert!(
            summary.contains("mlops/training"),
            "missing nested category in:\n{summary}"
        );
    }

    #[test]
    fn load_skill_summary_returns_none_when_no_skills_dir() {
        let tmp = tempfile::tempdir().expect("tempdir");
        // No skills/ subdirectory exists
        assert!(load_skill_summary(tmp.path(), &[], None, None).is_none());
    }

    #[test]
    fn load_preloaded_skills_includes_claude_skill_scripts_context() {
        let tmp = tempfile::tempdir().expect("tempdir");
        let skill_dir = tmp.path().join("skills").join("cli-helper");
        let scripts_dir = skill_dir.join("scripts");
        std::fs::create_dir_all(&scripts_dir).expect("mkdir");
        std::fs::write(
            skill_dir.join("SKILL.md"),
            "---\nread_files:\n  - notes.md\n---\n\
Run `${CLAUDE_SKILL_DIR}/scripts/helper.py --session ${CLAUDE_SESSION_ID}`.\n",
        )
        .expect("write skill");
        std::fs::write(skill_dir.join("notes.md"), "Notes for the helper").expect("write notes");
        std::fs::write(scripts_dir.join("helper.py"), "print('helper')").expect("write script");

        let preloaded = load_preloaded_skills(
            tmp.path(),
            &[],
            &["cli-helper".to_string()],
            Some("session-42"),
        );

        assert!(preloaded.contains("Base directory for this skill:"));
        assert!(preloaded.contains("scripts/helper.py --session session-42"));
        assert!(preloaded.contains("Notes for the helper"));
        assert!(preloaded.contains("scripts/helper.py"));
        assert!(!preloaded.contains("${CLAUDE_SKILL_DIR}"));
    }

    #[test]
    fn load_skill_summary_description_md_fallback() {
        let tmp = tempfile::tempdir().expect("tempdir");
        let skill_dir = tmp.path().join("skills").join("no-desc-skill");
        std::fs::create_dir_all(&skill_dir).expect("mkdir");
        // SKILL.md has no description in frontmatter
        std::fs::write(
            skill_dir.join("SKILL.md"),
            "---\nname: no-desc-skill\n---\n# No Desc Skill",
        )
        .expect("write SKILL.md");
        // DESCRIPTION.md has a description
        std::fs::write(
            skill_dir.join("DESCRIPTION.md"),
            "---\ndescription: Fallback description from DESCRIPTION.md\n---\n",
        )
        .expect("write DESCRIPTION.md");

        let summary = load_skill_summary(tmp.path(), &[], None, None).expect("Some");
        assert!(summary.contains("no-desc-skill"), "skill name missing");
        assert!(
            summary.contains("Fallback description from DESCRIPTION.md"),
            "DESCRIPTION.md fallback not used:\n{summary}"
        );
    }

    #[test]
    fn extract_skill_description_falls_back_to_when_to_use() {
        let content =
            "---\nwhen_to_use: Use this when the repo has multiple release trains.\n---\n# Skill";
        let description = extract_skill_description(content).expect("description");
        assert_eq!(
            description,
            "Use this when the repo has multiple release trains."
        );
    }

    #[test]
    fn load_skill_summary_uses_when_to_use_when_description_missing() {
        let tmp = tempfile::tempdir().expect("tempdir");
        let skill_dir = tmp.path().join("skills").join("claude-style");
        std::fs::create_dir_all(&skill_dir).expect("mkdir");
        std::fs::write(
            skill_dir.join("SKILL.md"),
            "---\nwhen_to_use: Use when the deployment has stalled.\n---\n# Claude Style",
        )
        .expect("write");

        let summary = load_skill_summary(tmp.path(), &[], None, None).expect("summary");
        assert!(
            summary.contains("Use when the deployment has stalled."),
            "missing when_to_use fallback in:\n{summary}"
        );
    }

    #[test]
    fn skill_matches_platform_no_restriction_returns_true() {
        // No platforms field → always include
        assert!(skill_matches_platform(
            "---\nname: my-skill\n---\n",
            "macos"
        ));
        assert!(skill_matches_platform(
            "---\nname: my-skill\n---\n",
            "linux"
        ));
        assert!(skill_matches_platform("no frontmatter at all", "windows"));
    }

    #[test]
    fn skill_matches_platform_inline_list() {
        let content = "---\nplatforms: [macos, linux]\n---\n";
        assert!(skill_matches_platform(content, "macos"));
        assert!(skill_matches_platform(content, "linux"));
        assert!(!skill_matches_platform(content, "windows"));
    }

    #[test]
    fn skill_matches_platform_block_list() {
        let content = "---\nplatforms:\n  - linux\n  - windows\n---\n";
        assert!(skill_matches_platform(content, "linux"));
        assert!(skill_matches_platform(content, "windows"));
        assert!(!skill_matches_platform(content, "macos"));
    }

    #[test]
    fn load_skill_summary_platform_filtering() {
        let tmp = tempfile::tempdir().expect("tempdir");

        // A skill for all platforms
        let skill_all = tmp.path().join("skills").join("all-platforms");
        std::fs::create_dir_all(&skill_all).expect("mkdir");
        std::fs::write(
            skill_all.join("SKILL.md"),
            "---\ndescription: Works everywhere\n---\n",
        )
        .expect("write");

        // A skill that only works on an OS that doesn't match any test host
        // (we test macos/linux/windows exclusion by using a fictitious OS)
        let skill_restricted = tmp.path().join("skills").join("macos-only");
        std::fs::create_dir_all(&skill_restricted).expect("mkdir");
        std::fs::write(
            skill_restricted.join("SKILL.md"),
            "---\nplatforms: [no-such-os]\ndescription: Never shown\n---\n",
        )
        .expect("write");

        let summary = load_skill_summary(tmp.path(), &[], None, None).expect("Some");
        assert!(
            summary.contains("all-platforms"),
            "all-platform skill should appear"
        );
        assert!(
            !summary.contains("macos-only"),
            "platform-restricted skill should not appear"
        );
        assert!(
            !summary.contains("Never shown"),
            "restricted skill desc should not appear"
        );
    }

    // ── Disabled-skill filtering tests ────────────────────────────────────

    #[test]
    fn load_skill_summary_disabled_skill_is_hidden() {
        let tmp = tempfile::tempdir().expect("tempdir");

        // Create two skills
        for skill in ["active-skill", "disabled-skill"] {
            let dir = tmp.path().join("skills").join(skill);
            std::fs::create_dir_all(&dir).expect("mkdir");
            std::fs::write(
                dir.join("SKILL.md"),
                format!("---\ndescription: Description of {skill}\n---\n"),
            )
            .expect("write");
        }

        let disabled = vec!["disabled-skill".to_string()];
        let summary = load_skill_summary(tmp.path(), &disabled, None, None).expect("Some");

        assert!(
            summary.contains("active-skill"),
            "active skill should appear"
        );
        assert!(
            !summary.contains("disabled-skill"),
            "disabled skill should be hidden"
        );
        assert!(
            !summary.contains("Description of disabled-skill"),
            "disabled skill desc should be hidden"
        );
    }

    #[test]
    fn load_skill_summary_multiple_disabled_skills() {
        let tmp = tempfile::tempdir().expect("tempdir");

        for skill in ["skill-a", "skill-b", "skill-c"] {
            let dir = tmp.path().join("skills").join(skill);
            std::fs::create_dir_all(&dir).expect("mkdir");
            std::fs::write(
                dir.join("SKILL.md"),
                format!("---\ndescription: Desc of {skill}\n---\n"),
            )
            .expect("write");
        }

        let disabled = vec!["skill-a".to_string(), "skill-c".to_string()];
        let summary = load_skill_summary(tmp.path(), &disabled, None, None).expect("Some");

        assert!(summary.contains("skill-b"), "skill-b should appear");
        assert!(!summary.contains("skill-a"), "skill-a should be hidden");
        assert!(!summary.contains("skill-c"), "skill-c should be hidden");
    }

    #[test]
    fn load_skill_summary_empty_disabled_shows_all() {
        let tmp = tempfile::tempdir().expect("tempdir");

        for skill in ["skill-x", "skill-y"] {
            let dir = tmp.path().join("skills").join(skill);
            std::fs::create_dir_all(&dir).expect("mkdir");
            std::fs::write(
                dir.join("SKILL.md"),
                format!("---\ndescription: Desc of {skill}\n---\n"),
            )
            .expect("write");
        }

        // No disabled skills → all should appear
        let summary = load_skill_summary(tmp.path(), &[], None, None).expect("Some");
        assert!(summary.contains("skill-x"), "skill-x should appear");
        assert!(summary.contains("skill-y"), "skill-y should appear");
    }

    #[test]
    fn load_skill_summary_hides_requires_tools_when_tool_list_is_known_empty() {
        let tmp = tempfile::tempdir().expect("tempdir");
        let dir = tmp.path().join("skills").join("terminal-only");
        std::fs::create_dir_all(&dir).expect("mkdir");
        std::fs::write(
            dir.join("SKILL.md"),
            "---\nrequires_tools: [terminal]\ndescription: Terminal helper\n---\n",
        )
        .expect("write");

        let summary = load_skill_summary(tmp.path(), &[], Some(&[]), None);
        assert!(
            summary.is_none(),
            "no skills should remain when the only skill requires an unavailable tool"
        );
    }

    #[test]
    fn load_skill_summary_filters_by_available_toolsets() {
        let tmp = tempfile::tempdir().expect("tempdir");
        let dir = tmp.path().join("skills").join("browser-helper");
        std::fs::create_dir_all(&dir).expect("mkdir");
        std::fs::write(
            dir.join("SKILL.md"),
            "---\nrequires_toolsets: [browser]\ndescription: Browser helper\n---\n",
        )
        .expect("write");

        let file_only = ["file".to_string()];
        let browser_only = ["browser".to_string()];

        let hidden = load_skill_summary(tmp.path(), &[], None, Some(&file_only));
        let visible =
            load_skill_summary(tmp.path(), &[], None, Some(&browser_only)).expect("Some visible");

        assert!(
            hidden.is_none(),
            "skills gated on unavailable toolsets must be fully omitted"
        );
        assert!(
            visible.contains("browser-helper"),
            "skills gated on available toolsets must be shown"
        );
    }

    // ── Skills cache tests ─────────────────────────────────────────────

    #[test]
    fn skills_cache_different_homes_are_independent() {
        let tmp1 = tempfile::tempdir().expect("tempdir1");
        let tmp2 = tempfile::tempdir().expect("tempdir2");

        // Skill only in tmp1
        let dir1 = tmp1.path().join("skills").join("home1-skill");
        std::fs::create_dir_all(&dir1).expect("mkdir");
        std::fs::write(dir1.join("SKILL.md"), "---\ndescription: Home1 only\n---\n")
            .expect("write");

        // Skill only in tmp2
        let dir2 = tmp2.path().join("skills").join("home2-skill");
        std::fs::create_dir_all(&dir2).expect("mkdir");
        std::fs::write(dir2.join("SKILL.md"), "---\ndescription: Home2 only\n---\n")
            .expect("write");

        let summary1 = load_skill_summary(tmp1.path(), &[], None, None).expect("Some from tmp1");
        let summary2 = load_skill_summary(tmp2.path(), &[], None, None).expect("Some from tmp2");

        assert!(
            summary1.contains("home1-skill"),
            "tmp1 should see home1-skill"
        );
        assert!(
            !summary1.contains("home2-skill"),
            "tmp1 should not see home2-skill"
        );

        assert!(
            summary2.contains("home2-skill"),
            "tmp2 should see home2-skill"
        );
        assert!(
            !summary2.contains("home1-skill"),
            "tmp2 should not see home1-skill"
        );
    }

    #[test]
    fn scheduling_guidance_present_for_cli() {
        // Non-cron platforms should include SCHEDULING_GUIDANCE to prompt the LLM
        // to use manage_cron_jobs when users express scheduling intent.
        let builder = PromptBuilder::new(Platform::Cli).skip_context_files(true);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            prompt.contains("manage_cron_jobs"),
            "CLI system prompt must include scheduling guidance with manage_cron_jobs reference"
        );
        assert!(
            prompt.contains("every morning") || prompt.contains("schedule"),
            "scheduling guidance should mention natural scheduling examples"
        );
    }

    #[test]
    fn scheduling_guidance_absent_for_cron_platform() {
        // Cron sessions are headless scheduled runs — the scheduling guidance is
        // irrelevant and must not appear (the cron recursion guard blocks the tool anyway).
        let builder = PromptBuilder::new(Platform::Cron).skip_context_files(true);
        let prompt = builder.build(None, None, &[], None);
        // CRON_HINT should be present (the cron platform hint)
        assert!(
            prompt.contains("scheduled cron job"),
            "cron system prompt must include CRON_HINT"
        );
        // SCHEDULING_GUIDANCE must NOT appear in cron sessions
        assert!(
            !prompt.contains("manage_cron_jobs(action='create')"),
            "cron system prompt must NOT include scheduling guidance"
        );
    }

    #[test]
    fn message_delivery_guidance_present_when_send_message_available() {
        let builder = PromptBuilder::new(Platform::Whatsapp)
            .skip_context_files(true)
            .available_tools(vec!["send_message".to_string()]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            prompt
                .contains("Use send_message only when the user explicitly wants content delivered"),
            "message delivery guidance must explain when cross-platform delivery should happen"
        );
        assert!(
            prompt.contains("Do not claim you cannot send messages when send_message is available"),
            "message delivery guidance must explicitly block false inability claims"
        );
        assert!(
            prompt.contains("redundant confirmation"),
            "message delivery guidance must discourage unnecessary send confirmations"
        );
    }

    #[test]
    fn message_delivery_guidance_absent_when_send_message_unavailable() {
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec!["read_file".to_string()]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            !prompt
                .contains("Use send_message only when the user explicitly wants content delivered"),
            "message delivery guidance must not appear when send_message is unavailable"
        );
    }

    #[test]
    fn moa_guidance_present_when_moa_available() {
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec!["moa".to_string()]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            prompt.contains("call the `moa` tool directly"),
            "moa guidance must explicitly tell the model to call the canonical tool"
        );
        assert!(
            prompt.contains("Do not claim the feature is unavailable"),
            "moa guidance must block false unavailability claims"
        );
    }

    #[test]
    fn moa_guidance_absent_when_moa_unavailable() {
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec!["read_file".to_string()]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            !prompt.contains("call the `moa` tool directly"),
            "moa guidance must not appear when moa is unavailable"
        );
    }

    #[test]
    fn vision_guidance_present_when_vision_analyze_available() {
        // When vision_analyze is in the tool list, the system prompt must include
        // the vision tool decision rules so the model selects the right tool.
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec![
                "vision_analyze".to_string(),
                "browser_vision".to_string(),
            ]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            prompt.contains("NEVER call browser_vision"),
            "vision guidance must include unambiguous rule against browser_vision for local files"
        );
        assert!(
            prompt.contains("vision_analyze"),
            "vision guidance must name vision_analyze as the correct tool"
        );
        assert!(
            prompt.contains("ATTACHED IMAGES"),
            "vision guidance must reference the ATTACHED IMAGES block marker"
        );
    }

    #[test]
    fn vision_guidance_absent_when_vision_analyze_not_available() {
        // Without vision_analyze in the tool list, the vision guidance block
        // must not be injected — it would be confusing and waste tokens.
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec!["read_file".to_string(), "write_file".to_string()]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            !prompt.contains("NEVER call browser_vision"),
            "vision guidance must NOT appear when vision_analyze is not in tool list"
        );
    }

    #[test]
    fn lsp_guidance_present_when_lsp_tools_are_available() {
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec![
                "read_file".to_string(),
                "lsp_goto_definition".to_string(),
                "lsp_workspace_type_errors".to_string(),
            ]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            prompt.contains("## Language Server Usage"),
            "LSP guidance must be injected when LSP tools are available"
        );
        assert!(
            prompt.contains("exceeds the common 9-operation baseline"),
            "LSP guidance should make the richer EdgeCrab surface explicit to the model"
        );
    }

    #[test]
    fn lsp_guidance_absent_when_lsp_tools_are_unavailable() {
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec!["read_file".to_string(), "search_files".to_string()]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            !prompt.contains("## Language Server Usage"),
            "LSP guidance must not be injected when no LSP tools are available"
        );
    }

    #[test]
    fn code_editing_guidance_present_when_mutation_tools_are_available() {
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec![
                "read_file".to_string(),
                "apply_patch".to_string(),
                "write_file".to_string(),
            ]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            prompt.contains("## Code Editing Execution"),
            "code-editing guidance must be injected when mutation tools are available"
        );
        assert!(
            prompt.contains("ready for a patch?"),
            "guidance must explicitly prohibit waiting for patch approval when not requested"
        );
        assert!(
            prompt.contains("Do not add bonus summary files"),
            "guidance must explicitly forbid scope creep after the requested artifact is complete"
        );
        assert!(
            prompt.contains("do NOT attempt a single giant write_file or execute_code payload"),
            "guidance must forbid monolithic payload writes for large artifacts"
        );
        assert!(
            prompt.contains("32768 bytes (32 KiB)"),
            "guidance must surface the hard mutation payload limit"
        );
    }

    #[test]
    fn code_editing_guidance_absent_without_mutation_tools() {
        let builder = PromptBuilder::new(Platform::Cli)
            .skip_context_files(true)
            .available_tools(vec!["read_file".to_string(), "search_files".to_string()]);
        let prompt = builder.build(None, None, &[], None);
        assert!(
            !prompt.contains("## Code Editing Execution"),
            "code-editing guidance must not appear without mutation tools"
        );
    }

    #[test]
    fn skill_conditions_hide_requires_when_known_toolset_is_empty() {
        let conditions = SkillConditions {
            requires_tools: vec!["terminal".to_string()],
            ..Default::default()
        };
        assert!(
            !skill_should_show(&conditions, Some(&[]), None),
            "requires_tools must hide skills when tool availability is known and empty"
        );
        assert!(
            skill_should_show(&conditions, None, None),
            "requires_tools must remain permissive when tool availability is unknown"
        );
    }

    #[test]
    fn skill_conditions_hide_requires_when_known_toolset_missing() {
        let conditions = SkillConditions {
            requires_toolsets: vec!["browser".to_string()],
            ..Default::default()
        };
        assert!(
            !skill_should_show(
                &conditions,
                None,
                Some(&["file".to_string(), "terminal".to_string()])
            ),
            "requires_toolsets must hide skills when the required toolset is absent"
        );
    }
}