codescout 0.15.0

High-performance coding agent toolkit MCP server
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
use super::*;
use crate::agent::Agent;

use std::sync::Arc;
use tempfile::tempdir;

fn lsp() -> Arc<dyn crate::lsp::LspProvider> {
    crate::lsp::LspManager::new_arc()
}

#[tokio::test]
async fn activate_and_get_config() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    // No project initially
    assert!(ProjectStatus.call(json!({}), &ctx).await.is_err());

    // Activate
    let result = ActivateProject
        .call(
            json!({
                "path": dir.path().to_str().unwrap()
            }),
            &ctx,
        )
        .await
        .unwrap();
    assert_eq!(result["status"], "ok");

    // Now project_status works
    let status = ProjectStatus.call(json!({}), &ctx).await.unwrap();
    assert!(!status["project_root"].as_str().unwrap().is_empty());
    assert!(status["languages"].is_array());
    assert!(status["embeddings_model"].is_string());
}

#[tokio::test]
async fn activate_surfaces_project_hints_from_cargo_toml() {
    // Agents that never call `onboarding` should still see primary language,
    // manifest, entry points, and build commands in the activate response.
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    std::fs::write(
        dir.path().join("Cargo.toml"),
        "[package]\nname = \"demo\"\nversion = \"0.1.0\"\n",
    )
    .unwrap();
    std::fs::create_dir_all(dir.path().join("src")).unwrap();
    std::fs::write(dir.path().join("src/main.rs"), "fn main() {}").unwrap();

    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    let result = ActivateProject
        .call(json!({ "path": dir.path().to_str().unwrap() }), &ctx)
        .await
        .unwrap();

    let hints = &result["project_hints"];
    assert_eq!(hints["primary_language"], "rust");
    assert_eq!(hints["manifest"], "Cargo.toml");
    assert_eq!(hints["entry_points"], json!(["src/main.rs"]));
    assert!(
        hints["build_commands"]
            .as_array()
            .unwrap()
            .iter()
            .any(|v| v == "cargo test"),
        "hints must include cargo test: {hints:?}"
    );
    assert_eq!(hints["onboarded"], false);
}

#[tokio::test]
async fn activate_hints_empty_for_unrecognised_project() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    // No manifest file.

    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    let result = ActivateProject
        .call(json!({ "path": dir.path().to_str().unwrap() }), &ctx)
        .await
        .unwrap();

    let hints = &result["project_hints"];
    assert!(hints["primary_language"].is_null());
    assert!(hints["manifest"].is_null());
    assert_eq!(hints["entry_points"], json!([]));
    assert_eq!(hints["build_commands"], json!([]));
}

#[tokio::test]
async fn activate_nonexistent_path_errors() {
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(
            json!({
                "path": "/nonexistent/path/xyz"
            }),
            &ctx,
        )
        .await;
    assert!(result.is_err());
}

#[tokio::test]
async fn activate_replaces_previous_project() {
    let dir1 = tempdir().unwrap();
    let dir2 = tempdir().unwrap();
    std::fs::create_dir_all(dir1.path().join(".codescout")).unwrap();
    std::fs::create_dir_all(dir2.path().join(".codescout")).unwrap();

    let ctx = ToolContext {
        agent: Agent::new(Some(dir1.path().to_path_buf())).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    // Activate dir2
    ActivateProject
        .call(
            json!({
                "path": dir2.path().to_str().unwrap()
            }),
            &ctx,
        )
        .await
        .unwrap();

    let status = ProjectStatus.call(json!({}), &ctx).await.unwrap();
    let root = status["project_root"].as_str().unwrap();
    assert!(root.contains(dir2.path().file_name().unwrap().to_str().unwrap()));
}

#[tokio::test]
async fn project_status_returns_all_sections() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let agent = Agent::new(Some(dir.path().to_path_buf())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let tool = ProjectStatus;
    let result = tool.call(json!({}), &ctx).await.unwrap();
    assert!(result["project_root"].is_string(), "missing project_root");
    assert!(result["languages"].is_array(), "missing languages field");
    assert!(
        result["embeddings_model"].is_string(),
        "missing embeddings_model field"
    );
    assert!(result.get("index").is_some(), "missing index section");
    assert!(
        result.get("libraries").is_some(),
        "missing libraries section"
    );
}

#[tokio::test]
async fn project_status_compact_shape() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let agent = Agent::new(Some(dir.path().to_path_buf())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ProjectStatus.call(json!({}), &ctx).await.unwrap();

    // Flat config fields — no blob
    assert!(result["languages"].is_array(), "missing languages");
    assert!(
        result["embeddings_model"].is_string(),
        "missing embeddings_model"
    );
    assert!(
        result.get("config").is_none(),
        "config blob must be removed"
    );

    // Index section has status field, no drift
    assert!(
        result["index"]["status"].is_string(),
        "index.status must be present"
    );
    assert!(
        result["index"].get("drift").is_none(),
        "drift must not appear in project_status"
    );

    // Libraries section still present
    assert!(result["libraries"].is_object(), "libraries section missing");
}

#[tokio::test]
async fn project_status_includes_memory_staleness() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let agent = Agent::new(Some(dir.path().to_path_buf())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    // Create memories dir and a memory file
    let memories_dir = dir.path().join(".codescout/memories");
    std::fs::create_dir_all(&memories_dir).unwrap();
    std::fs::write(memories_dir.join("architecture.md"), "# Arch").unwrap();

    // Create anchored file and sidecar
    std::fs::create_dir_all(dir.path().join("src")).unwrap();
    std::fs::write(dir.path().join("src/server.rs"), "fn main() {}").unwrap();

    let anchors =
        crate::memory::anchors::seed_anchors(dir.path(), "Uses `src/server.rs`.").unwrap();
    crate::memory::anchors::write_anchor_file(
        &memories_dir.join("architecture.anchors.toml"),
        &anchors,
    )
    .unwrap();

    // Before change — should be fresh
    let result = ProjectStatus.call(json!({}), &ctx).await.unwrap();
    let staleness = &result["memory_staleness"];
    assert!(staleness["stale"].as_array().unwrap().is_empty());
    assert!(staleness["fresh"]
        .as_array()
        .unwrap()
        .contains(&json!("architecture")));

    // Modify the anchored file
    std::fs::write(dir.path().join("src/server.rs"), "fn changed() {}").unwrap();

    let result = ProjectStatus.call(json!({}), &ctx).await.unwrap();
    let staleness = &result["memory_staleness"];
    let stale = staleness["stale"].as_array().unwrap();
    assert_eq!(stale.len(), 1);
    assert_eq!(stale[0]["topic"], "architecture");
    assert!(stale[0]["changed_files"]
        .as_array()
        .unwrap()
        .contains(&json!("src/server.rs")));
}

#[tokio::test]
async fn activate_includes_cwd_hint() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    // Canonicalize to match Agent::activate's canonicalization
    // (resolves /var → /private/var on macOS, strips \\?\ prefix on Windows).
    let root = std::fs::canonicalize(dir.path()).unwrap();
    let agent = Agent::new(None).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let input = json!({ "path": root.to_str().unwrap() });
    let result = ActivateProject.call(input, &ctx).await.unwrap();
    let hint = result["hint"].as_str().unwrap();
    assert!(
        hint.starts_with("CWD: "),
        "hint should start with CWD: but was: {hint}"
    );
    assert!(hint.contains(root.to_str().unwrap()));
}

#[tokio::test]
async fn activate_hint_shows_switched_when_away_from_home() {
    let dir1 = tempdir().unwrap();
    let dir2 = tempdir().unwrap();
    std::fs::create_dir_all(dir1.path().join(".codescout")).unwrap();
    std::fs::create_dir_all(dir2.path().join(".codescout")).unwrap();
    // Canonicalize to match Agent::new/activate's canonicalization
    // (resolves /var → /private/var on macOS, strips \\?\ prefix on Windows).
    let root1 = std::fs::canonicalize(dir1.path()).unwrap();
    let root2 = std::fs::canonicalize(dir2.path()).unwrap();
    let agent = Agent::new(Some(root1.clone())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let input = json!({ "path": root2.to_str().unwrap() });
    let result = ActivateProject.call(input, &ctx).await.unwrap();
    let hint = result["hint"].as_str().unwrap();
    // Non-home default is RO: "Browsing … (read-only). CWD: … — remember to workspace(action='activate', …)"
    assert!(
        hint.contains("remember to workspace"),
        "hint should warn to switch back: {hint}"
    );
    assert!(
        hint.contains(root2.to_str().unwrap()),
        "should contain new path: {hint}"
    );
    assert!(
        hint.contains(root1.to_str().unwrap()),
        "should contain home path: {hint}"
    );
}

#[tokio::test]
async fn activate_hint_shows_returned_when_back_home() {
    let dir1 = tempdir().unwrap();
    let dir2 = tempdir().unwrap();
    std::fs::create_dir_all(dir1.path().join(".codescout")).unwrap();
    std::fs::create_dir_all(dir2.path().join(".codescout")).unwrap();
    // Canonicalize to match Agent::new/activate's canonicalization
    // (resolves /var → /private/var on macOS, strips \\?\ prefix on Windows).
    let root1 = std::fs::canonicalize(dir1.path()).unwrap();
    let root2 = std::fs::canonicalize(dir2.path()).unwrap();
    let agent = Agent::new(Some(root1.clone())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    // Switch away
    ActivateProject
        .call(json!({ "path": root2.to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    // Return home
    let result = ActivateProject
        .call(json!({ "path": root1.to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    let hint = result["hint"].as_str().unwrap();
    assert!(hint.contains("Returned to home project"), "hint: {hint}");
    assert!(hint.contains(root1.to_str().unwrap()));
}

#[tokio::test]
async fn project_status_shows_workspace_projects() {
    let dir = tempdir().unwrap();
    let root = dir.path();

    // Create multi-project structure
    std::fs::write(root.join("build.gradle.kts"), "").unwrap();
    let mcp = root.join("mcp-server");
    std::fs::create_dir_all(&mcp).unwrap();
    std::fs::write(mcp.join("package.json"), r#"{"scripts":{"build":"tsc"}}"#).unwrap();

    // Create workspace.toml
    let codescout = root.join(".codescout");
    std::fs::create_dir_all(&codescout).unwrap();
    std::fs::write(
        codescout.join("workspace.toml"),
        r#"
[workspace]
name = "test"

[[project]]
id = "test"
root = "."
languages = ["kotlin"]

[[project]]
id = "mcp-server"
root = "mcp-server"
languages = ["typescript"]
depends_on = ["test"]
"#,
    )
    .unwrap();
    std::fs::write(
        codescout.join("project.toml"),
        "[project]\nname = \"test\"\nlanguages = [\"kotlin\"]\n",
    )
    .unwrap();

    let agent = Agent::new(Some(root.to_path_buf())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    let result = ProjectStatus
        .call(serde_json::json!({}), &ctx)
        .await
        .unwrap();
    let ws = result.get("workspace");
    assert!(
        ws.is_some(),
        "project_status should include workspace section"
    );
    let projects = ws.unwrap().get("projects").unwrap().as_array().unwrap();
    assert_eq!(projects.len(), 2);
}

#[tokio::test]
async fn activate_project_switches_focus_by_id() {
    let dir = tempdir().unwrap();
    let root = std::fs::canonicalize(dir.path()).unwrap();

    // Create multi-project structure
    std::fs::write(root.join("build.gradle.kts"), "").unwrap();
    let mcp = root.join("mcp-server");
    std::fs::create_dir_all(&mcp).unwrap();
    std::fs::write(mcp.join("package.json"), r#"{"scripts":{"build":"tsc"}}"#).unwrap();

    let agent = Agent::new(Some(root.clone())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    // Initially focused on root project
    let root_path = ctx.agent.require_project_root().await.unwrap();
    assert_eq!(root_path, root);

    // Switch focus to mcp-server by ID
    let result = ActivateProject
        .call(serde_json::json!({"path": "mcp-server"}), &ctx)
        .await
        .unwrap();
    assert_eq!(result["status"], "ok");

    // Now focused on mcp-server
    let new_root = ctx.agent.require_project_root().await.unwrap();
    assert_eq!(new_root, root.join("mcp-server"));
}

#[tokio::test]
async fn activate_project_unknown_id_with_no_slash_returns_error() {
    let dir = tempdir().unwrap();
    let root = dir.path();
    std::fs::write(root.join("Cargo.toml"), "[package]\nname=\"test\"\n").unwrap();

    let agent = Agent::new(Some(root.to_path_buf())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    // "unknown-project" has no slash and does not exist as a project ID or a path
    let result = ActivateProject
        .call(serde_json::json!({"path": "unknown-project"}), &ctx)
        .await;
    // Should fail: not a known project ID, and not a valid directory path
    assert!(
        result.is_err() || result.as_ref().unwrap().get("error").is_some(),
        "expected error or error field, got: {:?}",
        result
    );
}

#[tokio::test]
async fn post_compact_flushes_lsp_clients_and_returns_flushed() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let agent = Agent::new(Some(dir.path().to_path_buf())).await.unwrap();
    let ctx = ToolContext {
        agent,
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    // post_compact=true should return flushed:true without the normal status fields
    let result = ProjectStatus
        .call(json!({"post_compact": true}), &ctx)
        .await
        .unwrap();
    assert_eq!(result["flushed"], json!(true), "expected flushed:true");
    assert!(result["hint"].is_string(), "expected hint string");
    // Normal status fields must NOT be present in the compact-flush response
    assert!(
        result.get("project_root").is_none(),
        "post_compact response must not include project_root"
    );

    // post_compact=false (or absent) should return the normal status response
    let result = ProjectStatus
        .call(json!({"post_compact": false}), &ctx)
        .await
        .unwrap();
    assert!(
        result["project_root"].is_string(),
        "normal call must include project_root"
    );
}

#[test]
fn format_activate_project_rw_compact() {
    let result = json!({
        "status": "ok",
        "project": "my-project",
        "project_root": "/home/user/my-project",
        "read_only": false,
        "memories": ["arch", "conventions", "gotchas"],
        "index": {"status": "not_indexed"},
        "hint": "CWD: /home/user/my-project"
    });
    let compact = format_activate_project(&result);
    assert_eq!(
        compact,
        "activated · my-project (rw) · 3 memories · index: not_indexed"
    );
}

#[test]
fn format_activate_project_prepends_legacy_index_banner() {
    let result = json!({
        "status": "ok",
        "project": "my-project",
        "project_root": "/home/user/my-project",
        "read_only": false,
        "memories": [],
        "index": {"status": "indexed"},
        "legacy_semantic_index": {
            "path": "/home/user/my-project/.codescout/embeddings/project.db",
            "hint": "Run `codescout migrate-memories` to port memories to Qdrant, then delete this file.",
        },
        "hint": "CWD: /home/user/my-project"
    });
    let compact = format_activate_project(&result);
    assert!(
        compact.starts_with("⚠ LEGACY INDEX: run `codescout migrate-memories`"),
        "expected legacy-index banner prepended, got:\n{compact}"
    );
    assert!(compact.contains("activated · my-project (rw)"));
}

#[test]
fn format_activate_project_no_legacy_banner_when_absent() {
    let result = json!({
        "status": "ok",
        "project": "my-project",
        "project_root": "/home/user/my-project",
        "read_only": false,
        "memories": [],
        "index": {"status": "indexed"},
        "hint": "CWD: /home/user/my-project"
    });
    let compact = format_activate_project(&result);
    assert!(!compact.contains("LEGACY INDEX"));
}

#[test]
fn format_activate_project_stacks_legacy_under_stale_warning() {
    let result = json!({
        "status": "ok",
        "project": "my-project",
        "project_root": "/home/user/my-project",
        "read_only": false,
        "memories": [],
        "index": {"status": "indexed"},
        "legacy_semantic_index": { "path": "/x/y", "hint": "..." },
        "system_prompt_stale": {
            "stored_version": 1,
            "current_version": 5,
        },
        "hint": "CWD: /home/user/my-project"
    });
    let compact = format_activate_project(&result);
    let lines: Vec<&str> = compact.lines().collect();
    assert_eq!(lines.len(), 3, "expected 3 lines, got:\n{compact}");
    assert!(lines[0].contains("SYSTEM PROMPT STALE"));
    assert!(lines[1].contains("LEGACY INDEX"));
    assert!(lines[2].starts_with("activated · "));
}

#[test]
fn format_activate_project_ro_with_workspace() {
    let result = json!({
        "status": "ok",
        "project": "sub-lib",
        "project_root": "/home/user/mono/sub-lib",
        "read_only": true,
        "memories": [],
        "index": {"status": "indexed"},
        "workspace": [
            {"id": "main", "root": ".", "languages": ["rust"]},
            {"id": "sub-lib", "root": "libs/sub-lib", "languages": ["rust"]},
        ],
        "hint": "Browsing sub-lib (read-only)."
    });
    let compact = format_activate_project(&result);
    assert_eq!(
        compact,
        "activated · sub-lib (ro) · 0 memories · index: indexed · 2 workspace projects"
    );
}

#[test]
fn format_activate_project_with_auto_libs() {
    let result = json!({
        "status": "ok",
        "project": "web",
        "project_root": "/home/user/web",
        "read_only": false,
        "memories": ["arch"],
        "index": {"status": "not_indexed"},
        "auto_registered_libs": {"count": 12, "without_source": 3},
        "hint": "CWD: ..."
    });
    let compact = format_activate_project(&result);
    assert_eq!(compact, "activated · web (rw) · 1 memories · index: not_indexed · auto-registered 12 libs (3 without source)");
}

#[test]
fn format_activate_project_auto_libs_all_with_source() {
    let result = json!({
        "status": "ok",
        "project": "app",
        "project_root": "/home/user/app",
        "read_only": false,
        "memories": [],
        "index": {"status": "indexed"},
        "auto_registered_libs": {"count": 5, "without_source": 0},
        "hint": "CWD: ..."
    });
    let compact = format_activate_project(&result);
    assert_eq!(
        compact,
        "activated · app (rw) · 0 memories · index: indexed · auto-registered 5 libs"
    );
}

#[tokio::test]
async fn activate_project_rw_includes_security_fields() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(
            json!({"path": dir.path().to_str().unwrap(), "read_only": false}),
            &ctx,
        )
        .await
        .unwrap();
    assert_eq!(result["status"], "ok");
    assert!(
        result["security_profile"].is_string(),
        "RW should include security_profile"
    );
    assert!(
        !result["shell_enabled"].is_null(),
        "RW should include shell_enabled"
    );
}

#[tokio::test]
async fn activate_project_ro_excludes_security_fields() {
    let home = tempdir().unwrap();
    let other = tempdir().unwrap();
    std::fs::create_dir_all(home.path().join(".codescout")).unwrap();
    std::fs::create_dir_all(other.path().join(".codescout")).unwrap();
    // Start with a home project (always RW)
    let ctx = ToolContext {
        agent: Agent::new(Some(home.path().to_path_buf())).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    // Now activate another project as RO
    let result = ActivateProject
        .call(
            json!({"path": other.path().to_str().unwrap(), "read_only": true}),
            &ctx,
        )
        .await
        .unwrap();
    assert_eq!(result["status"], "ok");
    assert!(
        result["security_profile"].is_null(),
        "RO should not include security_profile"
    );
    assert!(
        result["shell_enabled"].is_null(),
        "RO should not include shell_enabled"
    );
}

#[tokio::test]
async fn activate_project_includes_memories_and_index() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(json!({"path": dir.path().to_str().unwrap()}), &ctx)
        .await
        .unwrap();
    assert!(
        result["memories"].is_array(),
        "should include memories array"
    );
    assert!(result["index"].is_object(), "should include index object");
    assert!(
        result["index"]["status"].is_string(),
        "index should have status"
    );
}

#[tokio::test]
async fn activate_project_rw_hint_promotes_project_status() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(
            json!({"path": dir.path().to_str().unwrap(), "read_only": false}),
            &ctx,
        )
        .await
        .unwrap();
    let hint = result["hint"].as_str().unwrap();
    assert!(
        hint.contains("workspace(action='status')"),
        "RW hint should promote workspace status, got: {hint}"
    );
}

#[tokio::test]
async fn activate_project_single_project_no_workspace() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(json!({"path": dir.path().to_str().unwrap()}), &ctx)
        .await
        .unwrap();
    assert!(
        result["workspace"].is_null(),
        "single-project should have null workspace"
    );
}

#[tokio::test]
async fn activate_project_focus_switch_returns_full_response() {
    let dir = tempdir().unwrap();
    let root = dir.path().to_path_buf();

    // Create a sub-project
    let sub = root.join("packages").join("api");
    std::fs::create_dir_all(&sub).unwrap();
    std::fs::write(
        sub.join("package.json"),
        r#"{"name":"api","scripts":{"build":"tsc"}}"#,
    )
    .unwrap();

    let ctx = ToolContext {
        agent: Agent::new(Some(root)).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    // Focus-switch by ID
    let result = ActivateProject
        .call(json!({"path": "api"}), &ctx)
        .await
        .unwrap();

    assert_eq!(result["status"], "ok");
    assert!(result["project"].is_string(), "should have project name");
    assert!(result["languages"].is_array(), "should have languages");
    assert!(result["memories"].is_array(), "should have memories");
    assert!(result["index"].is_object(), "should have index");
    assert!(!result["read_only"].is_null(), "should have read_only");
}

#[tokio::test]
async fn activate_project_workspace_includes_depends_on() {
    let dir = tempdir().unwrap();
    let root = dir.path().to_path_buf();

    let sub_a = root.join("packages").join("core");
    let sub_b = root.join("packages").join("web");
    std::fs::create_dir_all(&sub_a).unwrap();
    std::fs::create_dir_all(&sub_b).unwrap();
    std::fs::write(
        sub_a.join("package.json"),
        r#"{"name":"core","scripts":{"build":"tsc"}}"#,
    )
    .unwrap();
    std::fs::write(
        sub_b.join("package.json"),
        r#"{"name":"web","scripts":{"build":"tsc"}}"#,
    )
    .unwrap();

    let ctx = ToolContext {
        agent: Agent::new(Some(root)).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    let result = ActivateProject
        .call(json!({"path": dir.path().to_str().unwrap()}), &ctx)
        .await
        .unwrap();

    if let Some(ws) = result["workspace"].as_array() {
        for entry in ws {
            assert!(
                entry["depends_on"].is_array(),
                "each workspace entry should have depends_on"
            );
        }
    }
}

#[tokio::test]
async fn activate_project_ro_hint_warns_switch_back() {
    let home = tempdir().unwrap();
    let other = tempdir().unwrap();
    std::fs::create_dir_all(home.path().join(".codescout")).unwrap();
    std::fs::create_dir_all(other.path().join(".codescout")).unwrap();

    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };

    // Activate home first
    ActivateProject
        .call(json!({"path": home.path().to_str().unwrap()}), &ctx)
        .await
        .unwrap();

    // Activate other as RO
    let result = ActivateProject
        .call(
            json!({"path": other.path().to_str().unwrap(), "read_only": true}),
            &ctx,
        )
        .await
        .unwrap();

    let hint = result["hint"].as_str().unwrap();
    assert!(
        hint.contains("remember to workspace"),
        "RO hint should warn about switching back, got: {hint}"
    );
    assert!(
        hint.contains("read-only"),
        "RO hint should mention read-only, got: {hint}"
    );
}

#[test]
fn activate_project_auto_libs_is_summary_not_array() {
    let result = json!({
        "status": "ok",
        "project": "test",
        "project_root": "/tmp/test",
        "read_only": false,
        "memories": [],
        "index": {"status": "not_indexed"},
        "auto_registered_libs": {"count": 5, "without_source": 2},
    });
    assert!(result["auto_registered_libs"].is_object());
    assert_eq!(result["auto_registered_libs"]["count"], 5);
    assert_eq!(result["auto_registered_libs"]["without_source"], 2);
}

#[tokio::test]
async fn activate_project_memories_graceful_on_error() {
    // A project with no .codescout dir should still activate with memories: []
    let dir = tempdir().unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(json!({"path": dir.path().to_str().unwrap()}), &ctx)
        .await
        .unwrap();
    let memories = result["memories"].as_array().unwrap();
    assert!(
        memories.is_empty(),
        "empty project should have empty memories array"
    );
}

#[tokio::test]
async fn workspace_action_activate_dispatches_to_activate_project() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = Workspace
        .call(
            json!({
                "action": "activate",
                "path": dir.path().to_str().unwrap(),
                "read_only": false,
            }),
            &ctx,
        )
        .await
        .unwrap();
    assert_eq!(result["status"], "ok");
    assert!(result.get("project_hints").is_some());
}

#[tokio::test]
async fn workspace_action_status_dispatches_to_project_status() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    ActivateProject
        .call(json!({ "path": dir.path().to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    let result = Workspace
        .call(json!({ "action": "status" }), &ctx)
        .await
        .unwrap();
    assert!(result["project_root"].is_string());
    assert!(result["languages"].is_array());
    assert!(result["index"].is_object());
}

#[tokio::test]
async fn workspace_action_list_projects_returns_workspace_field() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    ActivateProject
        .call(json!({ "path": dir.path().to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    let result = Workspace
        .call(json!({ "action": "list_projects" }), &ctx)
        .await
        .unwrap();
    // The result must contain the "workspace" key (value may be null when no
    // workspace.toml is present — that's still a successful list_projects call).
    assert!(result.as_object().unwrap().contains_key("workspace"));
    // And no other fields should leak through.
    assert_eq!(result.as_object().unwrap().len(), 1);
}

#[tokio::test]
async fn workspace_action_unknown_errors() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let err = Workspace
        .call(json!({ "action": "wat" }), &ctx)
        .await
        .unwrap_err();
    assert!(
        err.to_string().contains("unknown workspace action"),
        "expected unknown action error, got: {err}"
    );
}

#[tokio::test]
async fn workspace_post_compact_without_action_infers_status() {
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: std::sync::Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    // post_compact=true without action should infer action='status' and flush LSP
    let result = Workspace
        .call(json!({ "post_compact": true }), &ctx)
        .await
        .unwrap();
    assert_eq!(result["flushed"], json!(true), "expected flushed:true");
    assert!(result["hint"].is_string(), "expected hint string");
    assert!(
        result.get("project_root").is_none(),
        "compact flush must not include status fields"
    );

    // missing action without post_compact must still error
    let err = Workspace.call(json!({}), &ctx).await.unwrap_err();
    assert!(
        err.to_string().contains("workspace requires 'action'"),
        "expected missing-action error, got: {err}"
    );
}

#[tokio::test]
async fn activation_response_includes_stale_warning_when_no_stored_version() {
    // No project.toml → onboarding_version = None → stale
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(json!({ "path": dir.path().to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    let stale = &result["system_prompt_stale"];
    assert!(
        stale.is_object(),
        "system_prompt_stale missing; got: {result}"
    );
    assert!(
        stale["stored_version"].is_null(),
        "stored_version should be null for None"
    );
    assert_eq!(
        stale["current_version"].as_u64().unwrap(),
        crate::tools::onboarding::ONBOARDING_VERSION as u64
    );
    assert!(
        stale["action"].as_str().unwrap().contains("refresh_prompt"),
        "action should mention refresh_prompt"
    );
}

#[tokio::test]
async fn activation_response_emits_legacy_index_when_db_present() {
    let dir = tempdir().unwrap();
    let root = std::fs::canonicalize(dir.path()).unwrap();
    std::fs::create_dir_all(root.join(".codescout/embeddings")).unwrap();
    let legacy_db = root.join(".codescout/embeddings/project.db");
    std::fs::write(&legacy_db, b"-- sqlite placeholder").unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(json!({ "path": root.to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    let legacy = &result["legacy_semantic_index"];
    assert!(
        legacy.is_object(),
        "expected legacy_semantic_index field; got: {result}"
    );
    assert_eq!(
        legacy["path"].as_str().unwrap(),
        legacy_db.display().to_string()
    );
    assert!(legacy["hint"]
        .as_str()
        .unwrap()
        .contains("migrate-memories"));
}

#[tokio::test]
async fn activation_response_omits_legacy_index_when_db_absent() {
    let dir = tempdir().unwrap();
    std::fs::create_dir_all(dir.path().join(".codescout")).unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(json!({ "path": dir.path().to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    assert!(
        result["legacy_semantic_index"].is_null(),
        "expected no legacy_semantic_index when db absent; got: {result}"
    );
}

#[tokio::test]
async fn activation_response_no_stale_warning_when_version_current() {
    let dir = tempdir().unwrap();
    let cs_dir = dir.path().join(".codescout");
    std::fs::create_dir_all(&cs_dir).unwrap();
    // Write project.toml with current onboarding version
    std::fs::write(
        cs_dir.join("project.toml"),
        format!(
            "[project]\nname = \"test\"\nlanguages = []\nonboarding_version = {}\n",
            crate::tools::onboarding::ONBOARDING_VERSION
        ),
    )
    .unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(json!({ "path": dir.path().to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    assert!(
        result["system_prompt_stale"].is_null(),
        "system_prompt_stale should be absent; got: {result}"
    );
}

#[tokio::test]
async fn activation_response_includes_stale_warning_when_version_outdated() {
    let dir = tempdir().unwrap();
    let cs_dir = dir.path().join(".codescout");
    std::fs::create_dir_all(&cs_dir).unwrap();
    // Write project.toml with an outdated onboarding version
    std::fs::write(
        cs_dir.join("project.toml"),
        format!(
            "[project]\nname = \"test\"\nlanguages = []\nonboarding_version = {}\n",
            crate::tools::onboarding::ONBOARDING_VERSION.saturating_sub(1)
        ),
    )
    .unwrap();
    let ctx = ToolContext {
        agent: Agent::new(None).await.unwrap(),
        lsp: lsp(),
        output_buffer: Arc::new(crate::tools::output_buffer::OutputBuffer::new(20)),
        progress: None,
        peer: None,
        section_coverage: std::sync::Arc::new(std::sync::Mutex::new(
            crate::tools::section_coverage::SectionCoverage::new(),
        )),
        guide_hints_emitted: std::sync::Arc::new(parking_lot::Mutex::new(Default::default())),
        workspace_override: None,
    };
    let result = ActivateProject
        .call(json!({ "path": dir.path().to_str().unwrap() }), &ctx)
        .await
        .unwrap();
    let stale = &result["system_prompt_stale"];
    assert!(
        stale.is_object(),
        "system_prompt_stale missing; got: {result}"
    );
    assert_eq!(
        stale["stored_version"].as_u64().unwrap(),
        crate::tools::onboarding::ONBOARDING_VERSION.saturating_sub(1) as u64,
        "stored_version should reflect the outdated version"
    );
    assert_eq!(
        stale["current_version"].as_u64().unwrap(),
        crate::tools::onboarding::ONBOARDING_VERSION as u64
    );
}

#[test]
fn format_activate_project_prepends_warning_when_stale() {
    let result = json!({
        "status": "ok",
        "project": "my-project",
        "project_root": "/home/user/my-project",
        "read_only": false,
        "memories": ["arch"],
        "index": {"status": "not_indexed"},
        "system_prompt_stale": {
            "stored_version": 20,
            "current_version": 23,
            "action": "Run onboarding(action=\"refresh_prompt\") — tool names or signatures have changed."
        },
        "hint": "CWD: /home/user/my-project"
    });
    let compact = format_activate_project(&result);
    assert!(
        compact.starts_with("⚠ SYSTEM PROMPT STALE (v20 → v23):"),
        "compact should start with stale warning but was: {compact}"
    );
    assert!(
        compact.contains("activated · my-project (rw)"),
        "compact should still contain activation summary but was: {compact}"
    );
}

#[test]
fn format_activate_project_no_warning_when_current() {
    let result = json!({
        "status": "ok",
        "project": "my-project",
        "project_root": "/home/user/my-project",
        "read_only": false,
        "memories": ["arch"],
        "index": {"status": "not_indexed"},
        "hint": "CWD: /home/user/my-project"
    });
    let compact = format_activate_project(&result);
    assert!(
        !compact.contains("STALE"),
        "no stale warning expected but was: {compact}"
    );
    assert_eq!(
        compact,
        "activated · my-project (rw) · 1 memories · index: not_indexed"
    );
}

#[test]
fn format_activate_project_prepends_warning_with_none_stored_version() {
    let result = json!({
        "status": "ok",
        "project": "my-project",
        "project_root": "/home/user/my-project",
        "read_only": false,
        "memories": [],
        "index": {"status": "not_indexed"},
        "system_prompt_stale": {
            "stored_version": null,
            "current_version": 23,
            "action": "Run onboarding(action=\"refresh_prompt\") — tool names or signatures have changed."
        },
        "hint": "CWD: /home/user/my-project"
    });
    let compact = format_activate_project(&result);
    assert!(
        compact.starts_with("⚠ SYSTEM PROMPT STALE (none → v23):"),
        "should show 'none' not 'v0' for null stored_version; got: {compact}"
    );
}