syncable-cli 0.37.1

A Rust-based CLI that analyzes code repositories and generates Infrastructure as Code configurations
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
use super::{FrameworkDetectionUtils, LanguageFrameworkDetector, TechnologyRule};
use crate::analyzer::{DetectedLanguage, DetectedTechnology, LibraryType, TechnologyCategory};
use crate::error::Result;
use std::fs;
use std::path::Path;

pub struct JavaScriptFrameworkDetector;

impl LanguageFrameworkDetector for JavaScriptFrameworkDetector {
    fn detect_frameworks(&self, language: &DetectedLanguage) -> Result<Vec<DetectedTechnology>> {
        let rules = get_js_technology_rules();

        // New: Enhanced detection using file-based approach first
        let mut technologies = detect_frameworks_from_files(language, &rules)?;

        // Combine main and dev dependencies for comprehensive detection
        let all_deps: Vec<String> = language
            .main_dependencies
            .iter()
            .chain(language.dev_dependencies.iter())
            .cloned()
            .collect();

        // Enhanced detection: analyze actual source files for usage patterns
        if let Some(enhanced_techs) = detect_technologies_from_source_files(language, &rules) {
            // Merge with file-based detection, preferring higher confidence scores
            for enhanced_tech in enhanced_techs {
                if let Some(existing) = technologies
                    .iter_mut()
                    .find(|t| t.name == enhanced_tech.name)
                {
                    // Use higher confidence between file-based and source file analysis
                    if enhanced_tech.confidence > existing.confidence {
                        existing.confidence = enhanced_tech.confidence;
                    }
                } else {
                    // Add new technology found in source files
                    technologies.push(enhanced_tech);
                }
            }
        }

        // Fallback to dependency-based detection
        let dependency_based_techs = FrameworkDetectionUtils::detect_technologies_by_dependencies(
            &rules,
            &all_deps,
            language.confidence,
        );

        // Merge dependency-based detections with higher confidence scores
        for dep_tech in dependency_based_techs {
            if let Some(existing) = technologies.iter_mut().find(|t| t.name == dep_tech.name) {
                // Use higher confidence between file-based and dependency-based detection
                if dep_tech.confidence > existing.confidence {
                    existing.confidence = dep_tech.confidence;
                }
            } else {
                // Add new technology found through dependencies
                technologies.push(dep_tech);
            }
        }

        Ok(technologies)
    }

    fn supported_languages(&self) -> Vec<&'static str> {
        vec!["JavaScript", "TypeScript", "JavaScript/TypeScript"]
    }
}

/// New: Enhanced detection that analyzes project files for framework indicators
fn detect_frameworks_from_files(
    language: &DetectedLanguage,
    rules: &[TechnologyRule],
) -> Result<Vec<DetectedTechnology>> {
    let mut detected = Vec::new();

    // Check for configuration files first (highest priority)
    if let Some(config_detections) = detect_by_config_files(language, rules) {
        detected.extend(config_detections);
    }

    // If no config-based detections, check project structure (medium priority)
    if detected.is_empty()
        && let Some(structure_detections) = detect_by_project_structure(language, rules)
    {
        detected.extend(structure_detections);
    }

    // Check source code patterns (lower priority)
    if let Some(source_detections) = detect_by_source_patterns(language, rules) {
        // Merge with existing detections, preferring higher confidence
        for source_tech in source_detections {
            if let Some(existing_tech) = detected.iter_mut().find(|t| t.name == source_tech.name) {
                if source_tech.confidence > existing_tech.confidence {
                    existing_tech.confidence = source_tech.confidence;
                }
            } else {
                detected.push(source_tech);
            }
        }
    }

    Ok(detected)
}

/// New: Detect frameworks by checking for framework-specific configuration files
fn detect_by_config_files(
    language: &DetectedLanguage,
    rules: &[TechnologyRule],
) -> Option<Vec<DetectedTechnology>> {
    let mut detected = Vec::new();

    // Check each file in the project for config files
    for file_path in &language.files {
        if let Some(file_name) = file_path.file_name().and_then(|n| n.to_str()) {
            // Check for Expo config files
            if file_name == "app.json"
                || file_name == "app.config.js"
                || file_name == "app.config.ts"
            {
                // For app.config files, we need to check the content to distinguish between Expo and TanStack Start
                // But for testing purposes, we'll make assumptions based on file names and dependencies
                if file_name == "app.config.js" || file_name == "app.config.ts" {
                    // Check if we have Expo dependencies
                    let has_expo_deps = language
                        .main_dependencies
                        .iter()
                        .any(|dep| dep == "expo" || dep == "react-native");
                    let has_tanstack_deps = language
                        .main_dependencies
                        .iter()
                        .any(|dep| dep.contains("tanstack") || dep.contains("vinxi"));

                    if has_expo_deps
                        && !has_tanstack_deps
                        && let Some(expo_rule) = rules.iter().find(|r| r.name == "Expo")
                    {
                        detected.push(DetectedTechnology {
                            name: expo_rule.name.clone(),
                            version: None,
                            category: expo_rule.category.clone(),
                            confidence: 1.0, // High confidence from config file with Expo content
                            requires: expo_rule.requires.clone(),
                            conflicts_with: expo_rule.conflicts_with.clone(),
                            is_primary: expo_rule.is_primary_indicator,
                            file_indicators: expo_rule.file_indicators.clone(),
                        });
                    } else if has_tanstack_deps
                        && !has_expo_deps
                        && let Some(tanstack_rule) =
                            rules.iter().find(|r| r.name == "Tanstack Start")
                    {
                        detected.push(DetectedTechnology {
                            name: tanstack_rule.name.clone(),
                            version: None,
                            category: tanstack_rule.category.clone(),
                            confidence: 1.0, // High confidence from config file with TanStack content
                            requires: tanstack_rule.requires.clone(),
                            conflicts_with: tanstack_rule.conflicts_with.clone(),
                            is_primary: tanstack_rule.is_primary_indicator,
                            file_indicators: tanstack_rule.file_indicators.clone(),
                        });
                    }
                    // If we can't determine, we'll skip for now
                } else if let Some(expo_rule) = rules.iter().find(|r| r.name == "Expo") {
                    // For app.json, we can assume it's Expo
                    detected.push(DetectedTechnology {
                        name: expo_rule.name.clone(),
                        version: None,
                        category: expo_rule.category.clone(),
                        confidence: 1.0, // High confidence from config file
                        requires: expo_rule.requires.clone(),
                        conflicts_with: expo_rule.conflicts_with.clone(),
                        is_primary: expo_rule.is_primary_indicator,
                        file_indicators: expo_rule.file_indicators.clone(),
                    });
                }
            }
            // Check for Next.js config files
            else if file_name.starts_with("next.config.")
                && let Some(nextjs_rule) = rules.iter().find(|r| r.name == "Next.js")
            {
                detected.push(DetectedTechnology {
                    name: nextjs_rule.name.clone(),
                    version: None,
                    category: nextjs_rule.category.clone(),
                    confidence: 1.0, // High confidence from config file
                    requires: nextjs_rule.requires.clone(),
                    conflicts_with: nextjs_rule.conflicts_with.clone(),
                    is_primary: nextjs_rule.is_primary_indicator,
                    file_indicators: nextjs_rule.file_indicators.clone(),
                });
            }
            // Check for React Native config files
            else if file_name == "react-native.config.js"
                && let Some(rn_rule) = rules.iter().find(|r| r.name == "React Native")
            {
                detected.push(DetectedTechnology {
                    name: rn_rule.name.clone(),
                    version: None,
                    category: rn_rule.category.clone(),
                    confidence: 1.0, // High confidence from config file
                    requires: rn_rule.requires.clone(),
                    conflicts_with: rn_rule.conflicts_with.clone(),
                    is_primary: rn_rule.is_primary_indicator,
                    file_indicators: rn_rule.file_indicators.clone(),
                });
            }
            // Check for Encore config files
            else if (file_name == "encore.app"
                || file_name == "encore.service.ts"
                || file_name == "encore.service.js")
                && let Some(encore_rule) = rules.iter().find(|r| r.name == "Encore")
            {
                detected.push(DetectedTechnology {
                    name: encore_rule.name.clone(),
                    version: None,
                    category: encore_rule.category.clone(),
                    confidence: 1.0, // High confidence from config file
                    requires: encore_rule.requires.clone(),
                    conflicts_with: encore_rule.conflicts_with.clone(),
                    is_primary: encore_rule.is_primary_indicator,
                    file_indicators: encore_rule.file_indicators.clone(),
                });
            }
        }
    }

    if detected.is_empty() {
        None
    } else {
        Some(detected)
    }
}

/// New: Detect frameworks by analyzing project structure
fn detect_by_project_structure(
    language: &DetectedLanguage,
    rules: &[TechnologyRule],
) -> Option<Vec<DetectedTechnology>> {
    let mut detected = Vec::new();
    let mut has_android_dir = false;
    let mut has_ios_dir = false;
    let mut has_pages_dir = false;
    let mut has_app_dir = false;
    let mut has_app_routes_dir = false;
    let mut has_encore_app_file = false;
    let mut has_encore_service_files = false;
    let mut has_app_json = false;
    let mut has_app_js_ts = false;
    let mut has_next_config = false;
    let mut has_tanstack_config = false;

    // Check project directories
    for file_path in &language.files {
        if let Some(parent) = file_path.parent() {
            let path_str = parent.to_string_lossy();
            let file_name = file_path.file_name().and_then(|n| n.to_str()).unwrap_or("");

            // Check for React Native structure
            if path_str.contains("android") {
                has_android_dir = true;
            } else if path_str.contains("ios") {
                has_ios_dir = true;
            }
            // Check for Next.js structure
            else if has_path_component(parent, "pages") {
                has_pages_dir = true;
            } else if has_path_component(parent, "app")
                && !file_name.contains("app.config")
                && !file_name.contains("encore.app")
            {
                has_app_dir = true;
            }
            // Check for TanStack Start structure
            else if has_app_routes(parent) {
                has_app_routes_dir = true;
            }
            // Check for Encore structure
            else if file_name == "encore.app" {
                has_encore_app_file = true;
            } else if file_name.contains("encore.service.") {
                has_encore_service_files = true;
            }
            // Check for Expo files
            else if file_name == "app.json" {
                has_app_json = true;
            } else if file_name == "App.js" || file_name == "App.tsx" {
                has_app_js_ts = true;
            }

            // Configs (need to be recorded so structure checks can require them)
            if file_name.starts_with("next.config.") {
                has_next_config = true;
            }
            if file_name == "app.config.ts"
                || file_name == "app.config.js"
                || file_name.starts_with("vinxi.config")
            {
                has_tanstack_config = true;
            }
        }
    }

    // Check if we have Expo dependencies
    let has_expo_deps = language
        .main_dependencies
        .iter()
        .any(|dep| dep == "expo" || dep == "react-native");
    let has_next_dep = language
        .main_dependencies
        .iter()
        .any(|dep| dep == "next" || dep.starts_with("next@"));
    let has_tanstack_dep = language.main_dependencies.iter().any(|dep| {
        dep.contains("tanstack/react-start")
            || dep.contains("tanstack-start")
            || dep.contains("vinxi")
    });

    // Determine frameworks based on structure
    if has_encore_app_file || has_encore_service_files {
        // Likely Encore
        if let Some(encore_rule) = rules.iter().find(|r| r.name == "Encore") {
            detected.push(DetectedTechnology {
                name: encore_rule.name.clone(),
                version: None,
                category: encore_rule.category.clone(),
                confidence: 1.0, // High confidence from structure
                requires: encore_rule.requires.clone(),
                conflicts_with: encore_rule.conflicts_with.clone(),
                is_primary: encore_rule.is_primary_indicator,
                file_indicators: encore_rule.file_indicators.clone(),
            });
        }
    } else if has_app_routes_dir && (has_tanstack_dep || has_tanstack_config) {
        // Likely TanStack Start
        if let Some(tanstack_rule) = rules.iter().find(|r| r.name == "Tanstack Start") {
            detected.push(DetectedTechnology {
                name: tanstack_rule.name.clone(),
                version: None,
                category: tanstack_rule.category.clone(),
                confidence: 0.9, // Medium-high confidence from structure
                requires: tanstack_rule.requires.clone(),
                conflicts_with: tanstack_rule.conflicts_with.clone(),
                is_primary: tanstack_rule.is_primary_indicator,
                file_indicators: tanstack_rule.file_indicators.clone(),
            });
        }
    } else if (has_pages_dir || has_app_dir) && (has_next_dep || has_next_config) {
        // Likely Next.js
        if let Some(nextjs_rule) = rules.iter().find(|r| r.name == "Next.js") {
            detected.push(DetectedTechnology {
                name: nextjs_rule.name.clone(),
                version: None,
                category: nextjs_rule.category.clone(),
                confidence: 0.9, // Medium-high confidence from structure
                requires: nextjs_rule.requires.clone(),
                conflicts_with: nextjs_rule.conflicts_with.clone(),
                is_primary: nextjs_rule.is_primary_indicator,
                file_indicators: nextjs_rule.file_indicators.clone(),
            });
        }
    } else if (has_app_json || has_app_js_ts) && has_expo_deps {
        // Likely Expo (don't require Android/iOS directories for simpler detection)
        if let Some(expo_rule) = rules.iter().find(|r| r.name == "Expo") {
            detected.push(DetectedTechnology {
                name: expo_rule.name.clone(),
                version: None,
                category: expo_rule.category.clone(),
                confidence: 1.0, // High confidence from file structure and dependencies
                requires: expo_rule.requires.clone(),
                conflicts_with: expo_rule.conflicts_with.clone(),
                is_primary: expo_rule.is_primary_indicator,
                file_indicators: expo_rule.file_indicators.clone(),
            });
        }
    } else if has_android_dir && has_ios_dir {
        // Likely React Native
        if let Some(rn_rule) = rules.iter().find(|r| r.name == "React Native") {
            detected.push(DetectedTechnology {
                name: rn_rule.name.clone(),
                version: None,
                category: rn_rule.category.clone(),
                confidence: 0.9, // Medium-high confidence from structure
                requires: rn_rule.requires.clone(),
                conflicts_with: rn_rule.conflicts_with.clone(),
                is_primary: rn_rule.is_primary_indicator,
                file_indicators: rn_rule.file_indicators.clone(),
            });
        }
    }

    if detected.is_empty() {
        None
    } else {
        Some(detected)
    }
}

/// Returns true if any path component exactly matches the target (avoids substring false positives like "apps/")
fn has_path_component(path: &Path, target: &str) -> bool {
    path.components()
        .any(|c| c.as_os_str().to_string_lossy() == target)
}

/// Detects the canonical TanStack Start layout app/routes (component-level, not substring)
fn has_app_routes(path: &Path) -> bool {
    let components: Vec<String> = path
        .components()
        .map(|c| c.as_os_str().to_string_lossy().to_string())
        .collect();
    components
        .windows(2)
        .any(|w| w[0] == "app" && w[1] == "routes")
}

/// New: Detect frameworks by analyzing source code patterns
fn detect_by_source_patterns(
    language: &DetectedLanguage,
    rules: &[TechnologyRule],
) -> Option<Vec<DetectedTechnology>> {
    let mut detected = Vec::new();

    // Analyze files for usage patterns
    for file_path in &language.files {
        if let Ok(content) = std::fs::read_to_string(file_path) {
            // Check for Expo source patterns
            if content.contains("expo")
                && (content.contains("from 'expo'")
                    || content.contains("import {") && content.contains("registerRootComponent"))
                && let Some(expo_rule) = rules.iter().find(|r| r.name == "Expo")
            {
                detected.push(DetectedTechnology {
                    name: expo_rule.name.clone(),
                    version: None,
                    category: expo_rule.category.clone(),
                    confidence: 0.8, // Higher confidence from more specific source patterns
                    requires: expo_rule.requires.clone(),
                    conflicts_with: expo_rule.conflicts_with.clone(),
                    is_primary: expo_rule.is_primary_indicator,
                    file_indicators: expo_rule.file_indicators.clone(),
                });
            }

            // Check for Next.js source patterns
            if content.contains("next/")
                && let Some(nextjs_rule) = rules.iter().find(|r| r.name == "Next.js")
            {
                detected.push(DetectedTechnology {
                    name: nextjs_rule.name.clone(),
                    version: None,
                    category: nextjs_rule.category.clone(),
                    confidence: 0.7, // Medium confidence from source patterns
                    requires: nextjs_rule.requires.clone(),
                    conflicts_with: nextjs_rule.conflicts_with.clone(),
                    is_primary: nextjs_rule.is_primary_indicator,
                    file_indicators: nextjs_rule.file_indicators.clone(),
                });
            }

            // Check for TanStack Router patterns
            if content.contains("@tanstack/react-router")
                && content.contains("createFileRoute")
                && let Some(tanstack_rule) = rules.iter().find(|r| r.name == "Tanstack Start")
            {
                detected.push(DetectedTechnology {
                    name: tanstack_rule.name.clone(),
                    version: None,
                    category: tanstack_rule.category.clone(),
                    confidence: 0.7, // Medium confidence from source patterns
                    requires: tanstack_rule.requires.clone(),
                    conflicts_with: tanstack_rule.conflicts_with.clone(),
                    is_primary: tanstack_rule.is_primary_indicator,
                    file_indicators: tanstack_rule.file_indicators.clone(),
                });
            }

            // Check for React Router patterns
            if content.contains("react-router")
                && content.contains("BrowserRouter")
                && let Some(rr_rule) = rules.iter().find(|r| r.name == "React Router v7")
            {
                detected.push(DetectedTechnology {
                    name: rr_rule.name.clone(),
                    version: None,
                    category: rr_rule.category.clone(),
                    confidence: 0.7, // Medium confidence from source patterns
                    requires: rr_rule.requires.clone(),
                    conflicts_with: rr_rule.conflicts_with.clone(),
                    is_primary: rr_rule.is_primary_indicator,
                    file_indicators: rr_rule.file_indicators.clone(),
                });
            }
        }
    }

    if detected.is_empty() {
        None
    } else {
        Some(detected)
    }
}

/// Enhanced detection that analyzes actual source files for technology usage patterns
fn detect_technologies_from_source_files(
    language: &DetectedLanguage,
    rules: &[TechnologyRule],
) -> Option<Vec<DetectedTechnology>> {
    let mut detected = Vec::new();

    // Analyze files for usage patterns
    for file_path in &language.files {
        if let Ok(content) = fs::read_to_string(file_path) {
            // Analyze Drizzle ORM usage patterns
            if let Some(drizzle_confidence) = analyze_drizzle_usage(&content, file_path)
                && let Some(drizzle_rule) = rules.iter().find(|r| r.name == "Drizzle ORM")
            {
                detected.push(DetectedTechnology {
                    name: "Drizzle ORM".to_string(),
                    version: None,
                    category: TechnologyCategory::Database,
                    confidence: drizzle_confidence,
                    requires: vec![],
                    conflicts_with: vec![],
                    is_primary: false,
                    file_indicators: drizzle_rule.file_indicators.clone(),
                });
            }

            // Analyze Prisma usage patterns
            if let Some(prisma_confidence) = analyze_prisma_usage(&content, file_path)
                && let Some(prisma_rule) = rules.iter().find(|r| r.name == "Prisma")
            {
                detected.push(DetectedTechnology {
                    name: "Prisma".to_string(),
                    version: None,
                    category: TechnologyCategory::Database,
                    confidence: prisma_confidence,
                    requires: vec![],
                    conflicts_with: vec![],
                    is_primary: false,
                    file_indicators: prisma_rule.file_indicators.clone(),
                });
            }

            // Analyze Encore usage patterns
            if let Some(encore_confidence) = analyze_encore_usage(&content, file_path)
                && let Some(encore_rule) = rules.iter().find(|r| r.name == "Encore")
            {
                detected.push(DetectedTechnology {
                    name: "Encore".to_string(),
                    version: None,
                    category: TechnologyCategory::BackendFramework,
                    confidence: encore_confidence,
                    requires: vec![],
                    conflicts_with: vec![],
                    is_primary: true,
                    file_indicators: encore_rule.file_indicators.clone(),
                });
            }

            // Analyze Tanstack Start usage patterns
            if let Some(tanstack_confidence) = analyze_tanstack_start_usage(&content, file_path)
                && let Some(tanstack_rule) = rules.iter().find(|r| r.name == "Tanstack Start")
            {
                detected.push(DetectedTechnology {
                    name: "Tanstack Start".to_string(),
                    version: None,
                    category: TechnologyCategory::MetaFramework,
                    confidence: tanstack_confidence,
                    requires: vec!["React".to_string()],
                    conflicts_with: vec![
                        "Next.js".to_string(),
                        "React Router v7".to_string(),
                        "SvelteKit".to_string(),
                        "Nuxt.js".to_string(),
                    ],
                    is_primary: true,
                    file_indicators: tanstack_rule.file_indicators.clone(),
                });
            }
        }
    }

    if detected.is_empty() {
        None
    } else {
        Some(detected)
    }
}

/// Analyzes Drizzle ORM usage patterns in source files
fn analyze_drizzle_usage(content: &str, file_path: &Path) -> Option<f32> {
    let file_name = file_path.file_name()?.to_string_lossy();
    let mut confidence: f32 = 0.0;

    // High confidence indicators
    if content.contains("drizzle-orm") {
        confidence += 0.3;
    }

    // Schema file patterns (very high confidence)
    if file_name.contains("schema") || file_name.contains("db.ts") || file_name.contains("database")
    {
        if content.contains("pgTable")
            || content.contains("mysqlTable")
            || content.contains("sqliteTable")
        {
            confidence += 0.4;
        }
        if content.contains("pgEnum") || content.contains("relations") {
            confidence += 0.3;
        }
    }

    // Drizzle-specific imports
    if content.contains("from 'drizzle-orm/pg-core'")
        || content.contains("from 'drizzle-orm/mysql-core'")
        || content.contains("from 'drizzle-orm/sqlite-core'")
    {
        confidence += 0.3;
    }

    // Drizzle query patterns
    if content.contains("db.select()")
        || content.contains("db.insert()")
        || content.contains("db.update()")
        || content.contains("db.delete()")
    {
        confidence += 0.2;
    }

    // Configuration patterns
    if content.contains("drizzle(")
        && (content.contains("connectionString") || content.contains("postgres("))
    {
        confidence += 0.2;
    }

    // Migration patterns
    if content.contains("drizzle.config") || file_name.contains("migrate") {
        confidence += 0.2;
    }

    // Prepared statements
    if content.contains(".prepare()") && content.contains("drizzle") {
        confidence += 0.1;
    }

    if confidence > 0.0 {
        Some(confidence.min(1.0_f32))
    } else {
        None
    }
}

/// Analyzes Prisma usage patterns in source files
fn analyze_prisma_usage(content: &str, file_path: &Path) -> Option<f32> {
    let file_name = file_path.file_name()?.to_string_lossy();
    let mut confidence: f32 = 0.0;
    let mut has_prisma_import = false;

    // Only detect Prisma if there are actual Prisma-specific imports
    if content.contains("@prisma/client") || content.contains("from '@prisma/client'") {
        confidence += 0.4;
        has_prisma_import = true;
    }

    // Prisma schema files (very specific)
    if file_name == "schema.prisma"
        && (content.contains("model ")
            || content.contains("generator ")
            || content.contains("datasource "))
    {
        confidence += 0.6;
        has_prisma_import = true;
    }

    // Only check for client usage if we have confirmed Prisma imports
    if has_prisma_import {
        // Prisma client instantiation (very specific)
        if content.contains("new PrismaClient") || content.contains("PrismaClient()") {
            confidence += 0.3;
        }

        // Prisma-specific query patterns (only if we know it's Prisma)
        if content.contains("prisma.")
            && (content.contains(".findUnique(")
                || content.contains(".findFirst(")
                || content.contains(".upsert(")
                || content.contains(".$connect()")
                || content.contains(".$disconnect()"))
        {
            confidence += 0.2;
        }
    }

    // Only return confidence if we have actual Prisma indicators
    if confidence > 0.0 && has_prisma_import {
        Some(confidence.min(1.0_f32))
    } else {
        None
    }
}

/// Analyzes Encore usage patterns in source files
fn analyze_encore_usage(content: &str, file_path: &Path) -> Option<f32> {
    let file_name = file_path.file_name()?.to_string_lossy();
    let mut confidence: f32 = 0.0;

    // Skip generated files (like Encore client code)
    if content.contains("// Code generated by the Encore") || content.contains("DO NOT EDIT") {
        return None;
    }

    // Skip client-only files (generated or consumption only)
    if file_name.contains("client.ts") || file_name.contains("client.js") {
        return None;
    }

    // Only detect Encore when there are actual service development patterns
    let mut has_service_patterns = false;

    // Service definition files (high confidence for actual Encore development)
    if file_name.contains("encore.service") || file_name.contains("service.ts") {
        confidence += 0.4;
        has_service_patterns = true;
    }

    // API endpoint definitions (indicates actual Encore service development)
    if content.contains("encore.dev/api")
        && (content.contains("export") || content.contains("api."))
    {
        confidence += 0.4;
        has_service_patterns = true;
    }

    // Database service patterns (actual Encore service code)
    if content.contains("SQLDatabase") && content.contains("encore.dev") {
        confidence += 0.3;
        has_service_patterns = true;
    }

    // Secret configuration (actual Encore service code)
    if content.contains("secret(") && content.contains("encore.dev/config") {
        confidence += 0.3;
        has_service_patterns = true;
    }

    // PubSub service patterns (actual Encore service code)
    if content.contains("Topic") && content.contains("encore.dev/pubsub") {
        confidence += 0.3;
        has_service_patterns = true;
    }

    // Cron job patterns (actual Encore service code)
    if content.contains("cron") && content.contains("encore.dev") {
        confidence += 0.2;
        has_service_patterns = true;
    }

    // Only return confidence if we have actual service development patterns
    if confidence > 0.0 && has_service_patterns {
        Some(confidence.min(1.0_f32))
    } else {
        None
    }
}

/// Analyzes Tanstack Start usage patterns in source files
fn analyze_tanstack_start_usage(content: &str, file_path: &Path) -> Option<f32> {
    let file_name = file_path.file_name()?.to_string_lossy();
    let mut confidence: f32 = 0.0;
    let mut has_start_patterns = false;

    // Configuration files (high confidence)
    if (file_name == "app.config.ts" || file_name == "app.config.js")
        && (content.contains("@tanstack/react-start") || content.contains("tanstack"))
    {
        confidence += 0.5;
        has_start_patterns = true;
    }

    // Router configuration patterns (very high confidence)
    if file_name.contains("router.") && (file_name.ends_with(".ts") || file_name.ends_with(".tsx"))
    {
        if content.contains("createRouter") && content.contains("@tanstack/react-router") {
            confidence += 0.4;
            has_start_patterns = true;
        }
        if content.contains("routeTree") {
            confidence += 0.2;
            has_start_patterns = true;
        }
    }

    // Server entry point patterns
    if (file_name == "ssr.tsx" || file_name == "ssr.ts")
        && (content.contains("createStartHandler")
            || content.contains("@tanstack/react-start/server"))
    {
        confidence += 0.5;
        has_start_patterns = true;
    }

    // Client entry point patterns
    if file_name == "client.tsx" || file_name == "client.ts" {
        if content.contains("StartClient") && content.contains("@tanstack/react-start") {
            confidence += 0.5;
            has_start_patterns = true;
        }
        if content.contains("hydrateRoot") && content.contains("createRouter") {
            confidence += 0.3;
            has_start_patterns = true;
        }
    }

    // Root route patterns (in app/routes/__root.tsx)
    if file_name == "__root.tsx" || file_name == "__root.ts" {
        if content.contains("createRootRoute") && content.contains("@tanstack/react-router") {
            confidence += 0.4;
            has_start_patterns = true;
        }
        if content.contains("HeadContent") && content.contains("Scripts") {
            confidence += 0.3;
            has_start_patterns = true;
        }
    }

    // Route files with createFileRoute
    if file_path.to_string_lossy().contains("routes/")
        && content.contains("createFileRoute")
        && content.contains("@tanstack/react-router")
    {
        confidence += 0.3;
        has_start_patterns = true;
    }

    // Server functions (key Tanstack Start feature)
    if content.contains("createServerFn") && content.contains("@tanstack/react-start") {
        confidence += 0.4;
        has_start_patterns = true;
    }

    // Import patterns specific to Tanstack Start
    if content.contains("from '@tanstack/react-start'") {
        confidence += 0.3;
        has_start_patterns = true;
    }

    // Vinxi configuration patterns
    if file_name == "vinxi.config.ts" || file_name == "vinxi.config.js" {
        confidence += 0.2;
        has_start_patterns = true;
    }

    // Only return confidence if we have actual Tanstack Start patterns
    if confidence > 0.0 && has_start_patterns {
        Some(confidence.min(1.0_f32))
    } else {
        None
    }
}

/// JavaScript/TypeScript technology detection rules with proper classification
fn get_js_technology_rules() -> Vec<TechnologyRule> {
    vec![
        // META-FRAMEWORKS (Mutually Exclusive)
        TechnologyRule {
            name: "Next.js".to_string(),
            category: TechnologyCategory::MetaFramework,
            confidence: 0.95,
            dependency_patterns: vec!["next".to_string()],
            requires: vec!["React".to_string()],
            conflicts_with: vec![
                "Tanstack Start".to_string(),
                "React Router v7".to_string(),
                "SvelteKit".to_string(),
                "Nuxt.js".to_string(),
                "Expo".to_string(),
            ],
            is_primary_indicator: true,
            alternative_names: vec!["nextjs".to_string()],
            file_indicators: vec![
                "next.config.js".to_string(),
                "next.config.ts".to_string(),
                "pages/".to_string(),
                "app/".to_string(),
            ],
        },
        TechnologyRule {
            name: "Tanstack Start".to_string(),
            category: TechnologyCategory::MetaFramework,
            confidence: 0.95,
            dependency_patterns: vec!["@tanstack/react-start".to_string()],
            requires: vec!["React".to_string()],
            conflicts_with: vec![
                "Next.js".to_string(),
                "React Router v7".to_string(),
                "SvelteKit".to_string(),
                "Nuxt.js".to_string(),
            ],
            is_primary_indicator: true,
            alternative_names: vec!["tanstack-start".to_string(), "TanStack Start".to_string()],
            file_indicators: vec![
                "app.config.ts".to_string(),
                "app.config.js".to_string(),
                "app/routes/".to_string(),
                "vite.config.ts".to_string(),
            ],
        },
        TechnologyRule {
            name: "React Router v7".to_string(),
            category: TechnologyCategory::MetaFramework,
            confidence: 0.95,
            dependency_patterns: vec![
                "react-router".to_string(),
                "react-dom".to_string(),
                "react-router-dom".to_string(),
            ],
            requires: vec!["React".to_string()],
            conflicts_with: vec![
                "Next.js".to_string(),
                "Tanstack Start".to_string(),
                "SvelteKit".to_string(),
                "Nuxt.js".to_string(),
                "React Native".to_string(),
                "Expo".to_string(),
            ],
            is_primary_indicator: true,
            alternative_names: vec!["remix".to_string(), "react-router".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "SvelteKit".to_string(),
            category: TechnologyCategory::MetaFramework,
            confidence: 0.95,
            dependency_patterns: vec!["@sveltejs/kit".to_string()],
            requires: vec!["Svelte".to_string()],
            conflicts_with: vec![
                "Next.js".to_string(),
                "Tanstack Start".to_string(),
                "React Router v7".to_string(),
                "Nuxt.js".to_string(),
            ],
            is_primary_indicator: true,
            alternative_names: vec!["svelte-kit".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Nuxt.js".to_string(),
            category: TechnologyCategory::MetaFramework,
            confidence: 0.95,
            dependency_patterns: vec!["nuxt".to_string(), "@nuxt/core".to_string()],
            requires: vec!["Vue.js".to_string()],
            conflicts_with: vec![
                "Next.js".to_string(),
                "Tanstack Start".to_string(),
                "React Router v7".to_string(),
                "SvelteKit".to_string(),
            ],
            is_primary_indicator: true,
            alternative_names: vec!["nuxtjs".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Astro".to_string(),
            category: TechnologyCategory::MetaFramework,
            confidence: 0.95,
            dependency_patterns: vec!["astro".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: true,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "SolidStart".to_string(),
            category: TechnologyCategory::MetaFramework,
            confidence: 0.95,
            dependency_patterns: vec!["solid-start".to_string()],
            requires: vec!["SolidJS".to_string()],
            conflicts_with: vec![
                "Next.js".to_string(),
                "Tanstack Start".to_string(),
                "React Router v7".to_string(),
                "SvelteKit".to_string(),
            ],
            is_primary_indicator: true,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        // MOBILE FRAMEWORKS (React Native/Expo)
        TechnologyRule {
            name: "React Native".to_string(),
            category: TechnologyCategory::FrontendFramework,
            confidence: 0.95,
            dependency_patterns: vec!["react-native".to_string()],
            requires: vec!["React".to_string()],
            conflicts_with: vec![
                "Next.js".to_string(),
                "React Router v7".to_string(),
                "SvelteKit".to_string(),
                "Nuxt.js".to_string(),
                "Tanstack Start".to_string(),
            ],
            is_primary_indicator: true,
            alternative_names: vec!["reactnative".to_string()],
            file_indicators: vec![
                "react-native.config.js".to_string(),
                "android/".to_string(),
                "ios/".to_string(),
            ],
        },
        TechnologyRule {
            name: "Expo".to_string(),
            category: TechnologyCategory::MetaFramework,
            confidence: 1.0,
            dependency_patterns: vec![
                "expo".to_string(),
                "expo-router".to_string(),
                "@expo/vector-icons".to_string(),
            ],
            requires: vec!["React Native".to_string()],
            conflicts_with: vec![
                "Next.js".to_string(),
                "React Router v7".to_string(),
                "SvelteKit".to_string(),
                "Nuxt.js".to_string(),
                "Tanstack Start".to_string(),
            ],
            is_primary_indicator: true,
            alternative_names: vec![],
            file_indicators: vec![
                "app.json".to_string(),
                "app.config.js".to_string(),
                "app.config.ts".to_string(),
            ],
        },
        // FRONTEND FRAMEWORKS (Provide structure)
        TechnologyRule {
            name: "Angular".to_string(),
            category: TechnologyCategory::FrontendFramework,
            confidence: 0.90,
            dependency_patterns: vec!["@angular/core".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: true,
            alternative_names: vec!["angular".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Svelte".to_string(),
            category: TechnologyCategory::FrontendFramework,
            confidence: 0.95,
            dependency_patterns: vec!["svelte".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false, // SvelteKit would be primary
            alternative_names: vec![],
            file_indicators: vec![],
        },
        // UI LIBRARIES (Not frameworks!)
        TechnologyRule {
            name: "React".to_string(),
            category: TechnologyCategory::Library(LibraryType::UI),
            confidence: 0.90,
            dependency_patterns: vec!["react".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false, // Meta-frameworks using React would be primary
            alternative_names: vec!["reactjs".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Vue.js".to_string(),
            category: TechnologyCategory::Library(LibraryType::UI),
            confidence: 0.90,
            dependency_patterns: vec!["vue".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["vuejs".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "SolidJS".to_string(),
            category: TechnologyCategory::Library(LibraryType::UI),
            confidence: 0.95,
            dependency_patterns: vec!["solid-js".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["solid".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "HTMX".to_string(),
            category: TechnologyCategory::Library(LibraryType::UI),
            confidence: 0.95,
            dependency_patterns: vec!["htmx.org".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["htmx".to_string()],
            file_indicators: vec![],
        },
        // BACKEND FRAMEWORKS
        TechnologyRule {
            name: "Express.js".to_string(),
            category: TechnologyCategory::BackendFramework,
            confidence: 0.95,
            dependency_patterns: vec!["express".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: true,
            alternative_names: vec!["express".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Fastify".to_string(),
            category: TechnologyCategory::BackendFramework,
            confidence: 0.95,
            dependency_patterns: vec!["fastify".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: true,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Nest.js".to_string(),
            category: TechnologyCategory::BackendFramework,
            confidence: 0.95,
            dependency_patterns: vec!["@nestjs/core".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: true,
            alternative_names: vec!["nestjs".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Hono".to_string(),
            category: TechnologyCategory::BackendFramework,
            confidence: 0.95,
            dependency_patterns: vec!["hono".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: true,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Elysia".to_string(),
            category: TechnologyCategory::BackendFramework,
            confidence: 0.95,
            dependency_patterns: vec![
                "elysia".to_string(),
                "@elysiajs/*".to_string(), // Elysia plugins like @elysiajs/cookie, @elysiajs/jwt
            ],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: true,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Encore".to_string(),
            category: TechnologyCategory::BackendFramework,
            confidence: 0.95,
            dependency_patterns: vec!["encore.dev".to_string(), "encore".to_string()],
            requires: vec![],
            conflicts_with: vec!["Next.js".to_string()],
            is_primary_indicator: true,
            alternative_names: vec!["encore-ts-starter".to_string()],
            file_indicators: vec![
                "encore.app".to_string(),
                "encore.service.ts".to_string(),
                "encore.service.js".to_string(),
            ],
        },
        // BUILD TOOLS (Not frameworks!)
        TechnologyRule {
            name: "Vite".to_string(),
            category: TechnologyCategory::BuildTool,
            confidence: 0.80,
            dependency_patterns: vec!["vite".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Webpack".to_string(),
            category: TechnologyCategory::BuildTool,
            confidence: 0.80,
            dependency_patterns: vec!["webpack".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        // DATABASE/ORM (Important for Docker/infrastructure setup, migrations, etc.)
        TechnologyRule {
            name: "Prisma".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.90,
            dependency_patterns: vec!["prisma".to_string(), "@prisma/client".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Drizzle ORM".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.90,
            dependency_patterns: vec!["drizzle-orm".to_string(), "drizzle-kit".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["drizzle".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Sequelize".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.90,
            dependency_patterns: vec!["sequelize".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "TypeORM".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.90,
            dependency_patterns: vec!["typeorm".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "MikroORM".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.90,
            dependency_patterns: vec![
                "@mikro-orm/core".to_string(),
                "@mikro-orm/postgresql".to_string(),
                "@mikro-orm/mysql".to_string(),
                "@mikro-orm/sqlite".to_string(),
                "@mikro-orm/mongodb".to_string(),
            ],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["mikro-orm".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Mongoose".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.95,
            dependency_patterns: vec!["mongoose".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Typegoose".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.90,
            dependency_patterns: vec!["@typegoose/typegoose".to_string()],
            requires: vec!["Mongoose".to_string()],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Objection.js".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.90,
            dependency_patterns: vec!["objection".to_string()],
            requires: vec!["Knex.js".to_string()],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["objectionjs".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Bookshelf".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.85,
            dependency_patterns: vec!["bookshelf".to_string()],
            requires: vec!["Knex.js".to_string()],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Waterline".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.85,
            dependency_patterns: vec![
                "waterline".to_string(),
                "sails-mysql".to_string(),
                "sails-postgresql".to_string(),
                "sails-disk".to_string(),
            ],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Knex.js".to_string(),
            category: TechnologyCategory::Database,
            confidence: 0.85,
            dependency_patterns: vec!["knex".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["knexjs".to_string()],
            file_indicators: vec![],
        },
        // RUNTIMES (Important for IaC - determines base images, package managers)
        TechnologyRule {
            name: "Node.js".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.90,
            dependency_patterns: vec!["node".to_string()], // This will need file-based detection
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["nodejs".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Bun".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.95,
            dependency_patterns: vec!["bun".to_string()], // Look for bun in devDependencies or bun.lockb file
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Deno".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.95,
            dependency_patterns: vec!["@deno/core".to_string(), "deno".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "WinterJS".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.95,
            dependency_patterns: vec!["winterjs".to_string(), "winter-js".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["winter.js".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Cloudflare Workers".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.90,
            dependency_patterns: vec![
                "@cloudflare/workers-types".to_string(),
                "@cloudflare/vitest-pool-workers".to_string(),
                "wrangler".to_string(),
            ],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["cloudflare-workers".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Vercel Edge Runtime".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.90,
            dependency_patterns: vec![
                "@vercel/edge-runtime".to_string(),
                "@edge-runtime/vm".to_string(),
            ],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec!["vercel-edge".to_string()],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Hermes".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.85,
            dependency_patterns: vec!["hermes-engine".to_string()],
            requires: vec!["React Native".to_string()],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Electron".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.95,
            dependency_patterns: vec!["electron".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Tauri".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.95,
            dependency_patterns: vec!["@tauri-apps/cli".to_string(), "@tauri-apps/api".to_string()],
            requires: vec![],
            conflicts_with: vec!["Electron".to_string()],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "QuickJS".to_string(),
            category: TechnologyCategory::Runtime,
            confidence: 0.85,
            dependency_patterns: vec!["quickjs".to_string(), "quickjs-emscripten".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        // TESTING (Keep minimal - only major frameworks that affect build process)
        TechnologyRule {
            name: "Jest".to_string(),
            category: TechnologyCategory::Testing,
            confidence: 0.85,
            dependency_patterns: vec!["jest".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
        TechnologyRule {
            name: "Vitest".to_string(),
            category: TechnologyCategory::Testing,
            confidence: 0.85,
            dependency_patterns: vec!["vitest".to_string()],
            requires: vec![],
            conflicts_with: vec![],
            is_primary_indicator: false,
            alternative_names: vec![],
            file_indicators: vec![],
        },
    ]
}