paladin-battalion 0.5.1

Multi-agent orchestration runtime for the Paladin framework — Formation, Phalanx, Campaign, Chain of Command, Conclave, Council, Grove, Maneuver, Commander
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
//! Grove Execution Service
//!
//! Provides intelligent routing and execution logic for the Grove pattern,
//! directing tasks to specialized Paladins based on expertise matching.

use log::{debug, info, warn};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::Arc;

use paladin_core::platform::container::battalion::BattalionError;
use paladin_core::platform::container::battalion::grove::{
    Grove, RoutingStrategy, Tree, TreeAgent,
};
use paladin_core::platform::container::prompt::{PromptItem, PromptType, UserPrompt};
use paladin_ports::output::embedding_port::EmbeddingPort;
use paladin_ports::output::llm_port::{LlmPort, LlmRequest};
use paladin_ports::output::paladin_port::PaladinPort;
use paladin_ports::output::paladin_registry::PaladinRegistry;

/// Decision made by the Grove routing system
///
/// Contains information about which agent was selected and why,
/// along with confidence metrics.
#[derive(Debug, Clone)]
pub struct RoutingDecision {
    /// Name of the selected Tree
    pub selected_tree: String,

    /// ID of the selected agent (Paladin)
    pub selected_agent: String,

    /// Confidence score (0.0 to 1.0)
    pub confidence: f32,

    /// Human-readable reasoning for the selection
    pub reasoning: String,
}

/// Result of Grove task execution
///
/// Contains the routing decision and the execution result from
/// the selected Paladin.
#[derive(Debug, Clone)]
pub struct GroveResult {
    /// Routing decision that was made
    pub routing_decision: RoutingDecision,

    /// Result from executing the selected Paladin
    pub execution_result: String,

    /// Additional metadata about the execution
    pub metadata: HashMap<String, String>,
}

/// LLM routing response structure
///
/// Expected JSON structure from LLM when performing routing decisions.
#[derive(Debug, Clone, Serialize, Deserialize)]
struct RoutingResponse {
    /// Name of the selected tree
    tree_name: String,

    /// ID of the selected agent
    agent_id: String,

    /// Confidence score (0.0 to 1.0)
    confidence: f32,

    /// Reasoning for the selection
    reasoning: String,
}

/// Service for executing Grove patterns
///
/// Routes incoming tasks to specialized Paladins using various routing strategies
/// (keyword matching, semantic similarity, LLM-based routing).
///
/// # Example
///
/// ```ignore
/// use paladin_battalion::grove_service::GroveExecutionService;
/// use std::sync::Arc;
///
/// let service = GroveExecutionService::new(
///     paladin_port,
///     Some(embedding_port),
///     Some(llm_port)
/// );
/// let result = service.execute(&grove, "Fix the authentication bug").await?;
/// println!("Routed to: {}", result.routing_decision.selected_agent);
/// ```
pub struct GroveExecutionService {
    /// Paladin execution port
    paladin_port: Arc<dyn PaladinPort>,

    /// Optional embedding port for semantic similarity routing
    embedding_port: Option<Arc<dyn EmbeddingPort>>,

    /// Optional LLM port for LLM-based routing (will be used in Task 5.0)
    #[allow(dead_code)]
    llm_port: Option<Arc<dyn LlmPort>>,

    /// Paladin registry for resolving routed agents
    registry: Arc<dyn PaladinRegistry>,
}

impl GroveExecutionService {
    /// Creates a new GroveExecutionService
    ///
    /// # Arguments
    ///
    /// * `paladin_port` - Port for executing Paladins
    /// * `embedding_port` - Optional port for generating embeddings
    /// * `llm_port` - Optional port for LLM calls (used in LLM routing)
    /// * `registry` - Paladin registry for resolving agent IDs to Paladin instances
    ///
    /// # Example
    ///
    /// ```ignore
    /// let service = GroveExecutionService::new(
    ///     paladin_port,
    ///     Some(embedding_port),
    ///     Some(llm_port),
    ///     registry
    /// );
    /// ```
    pub fn new(
        paladin_port: Arc<dyn PaladinPort>,
        embedding_port: Option<Arc<dyn EmbeddingPort>>,
        llm_port: Option<Arc<dyn LlmPort>>,
        registry: Arc<dyn PaladinRegistry>,
    ) -> Self {
        Self {
            paladin_port,
            embedding_port,
            llm_port,
            registry,
        }
    }

    /// Executes a task using the Grove pattern
    ///
    /// Routes the task to the most appropriate agent based on the Grove's
    /// routing strategy, then executes that agent with the task.
    ///
    /// # Arguments
    ///
    /// * `grove` - The Grove configuration with trees and agents
    /// * `task` - The task description to route and execute
    ///
    /// # Returns
    ///
    /// Returns a `GroveResult` containing the routing decision and execution result.
    ///
    /// # Errors
    ///
    /// Returns `BattalionError` if:
    /// - Routing fails and no fallback is available
    /// - Required embedding port is missing for SemanticSimilarity strategy
    /// - Agent not found in registry (`PaladinNotFound`)
    /// - Paladin execution fails
    ///
    /// # Example
    ///
    /// ```ignore
    /// let result = service.execute(&grove, "Analyze customer feedback").await?;
    /// println!("Agent: {}", result.routing_decision.selected_agent);
    /// println!("Result: {}", result.execution_result);
    /// ```
    pub async fn execute(&self, grove: &Grove, task: &str) -> Result<GroveResult, BattalionError> {
        info!("Grove '{}' routing task: {}", grove.node.name, task);

        // Route the task to the appropriate agent
        let routing_decision = self.route_task(grove, task).await?;

        debug!(
            "Routed to agent '{}' in tree '{}' (confidence: {:.2})",
            routing_decision.selected_agent,
            routing_decision.selected_tree,
            routing_decision.confidence
        );

        // Resolve the selected Paladin from registry
        let paladin = self
            .registry
            .get(&routing_decision.selected_agent)
            .ok_or_else(|| {
                BattalionError::PaladinNotFound(format!(
                    "Agent '{}' not found in registry",
                    routing_decision.selected_agent
                ))
            })?;

        // Execute the selected Paladin
        let execution_result = self.execute_agent(&paladin, task).await.map_err(|e| {
            BattalionError::ExecutionError(format!(
                "Failed to execute agent '{}': {}",
                routing_decision.selected_agent, e
            ))
        })?;

        // Build metadata
        let mut metadata = HashMap::new();
        metadata.insert("grove_name".to_string(), grove.node.name.clone());
        metadata.insert(
            "routing_strategy".to_string(),
            format!("{:?}", grove.node.config.routing_strategy),
        );
        metadata.insert(
            "confidence".to_string(),
            routing_decision.confidence.to_string(),
        );

        Ok(GroveResult {
            routing_decision,
            execution_result,
            metadata,
        })
    }

    /// Routes a task to the most appropriate agent
    ///
    /// Uses the Grove's configured routing strategy to select the best agent
    /// for the given task. Falls back to alternative strategies or fallback
    /// trees if the primary routing fails.
    ///
    /// # Arguments
    ///
    /// * `grove` - The Grove configuration
    /// * `task` - The task to route
    ///
    /// # Returns
    ///
    /// Returns a `RoutingDecision` containing the selected agent and reasoning.
    ///
    /// # Errors
    ///
    /// Returns `BattalionError` if routing fails and no fallback is available.
    async fn route_task(
        &self,
        grove: &Grove,
        task: &str,
    ) -> Result<RoutingDecision, BattalionError> {
        let strategy = &grove.node.config.routing_strategy;

        // Try the configured strategy
        let result = match strategy {
            RoutingStrategy::KeywordMatch => self.route_by_keywords(grove, task),
            RoutingStrategy::SemanticSimilarity => {
                self.route_by_semantic_similarity(grove, task).await
            }
            RoutingStrategy::LlmRouting => self.route_by_llm(grove, task).await,
        };

        match result {
            Ok(decision) => Ok(decision),
            Err(e) => {
                warn!(
                    "Primary routing strategy failed: {}. Attempting fallback.",
                    e
                );

                // Try fallback tree if configured
                if let Some(ref fallback_tree_name) = grove.node.config.fallback_tree
                    && let Some(fallback_tree) = grove
                        .node
                        .trees
                        .iter()
                        .find(|t| &t.name == fallback_tree_name)
                {
                    info!("Using fallback tree: {}", fallback_tree_name);
                    return self.select_from_tree(fallback_tree, task, "fallback");
                }

                // Final fallback: use first agent in first tree
                if let Some(first_tree) = grove.node.trees.first() {
                    warn!(
                        "Using default fallback: first agent in tree '{}'",
                        first_tree.name
                    );
                    return self.select_from_tree(first_tree, task, "default_fallback");
                }

                Err(BattalionError::RoutingError(
                    "No agents available for routing".to_string(),
                ))
            }
        }
    }

    /// Routes by keyword matching
    ///
    /// Tokenizes the task, counts matching keywords for each agent,
    /// and selects the agent with the highest overlap.
    fn route_by_keywords(
        &self,
        grove: &Grove,
        task: &str,
    ) -> Result<RoutingDecision, BattalionError> {
        debug!("Routing by keyword matching");

        // Normalize and tokenize the task
        let task_lower = task.to_lowercase();
        let task_tokens: Vec<String> = task_lower
            .split_whitespace()
            .map(|s| s.trim_matches(|c: char| !c.is_alphanumeric()))
            .filter(|s| !s.is_empty())
            .map(|s| s.to_string())
            .collect();

        let mut best_score = 0;
        let mut best_tree: Option<&Tree> = None;
        let mut best_agent: Option<&TreeAgent> = None;

        // Score each agent in each tree
        for tree in &grove.node.trees {
            for agent in &tree.agents {
                let score = self.calculate_keyword_score(&task_tokens, agent);

                // Track best score, but also track first agent as fallback
                if best_agent.is_none() {
                    best_tree = Some(tree);
                    best_agent = Some(agent);
                }

                if score > best_score {
                    best_score = score;
                    best_tree = Some(tree);
                    best_agent = Some(agent);
                }
            }
        }

        // Check if we found a match
        if let (Some(tree), Some(agent)) = (best_tree, best_agent) {
            let confidence = if task_tokens.is_empty() {
                0.5 // No keywords in task
            } else {
                (best_score as f32 / task_tokens.len() as f32).min(1.0)
            };

            Ok(RoutingDecision {
                selected_tree: tree.name.clone(),
                selected_agent: agent.paladin_id.clone(),
                confidence,
                reasoning: format!(
                    "Matched {} keywords from agent expertise: {:?}",
                    best_score, agent.expertise_keywords
                ),
            })
        } else {
            Err(BattalionError::RoutingError(
                "No agents found for keyword matching".to_string(),
            ))
        }
    }

    /// Calculates keyword overlap score for an agent
    ///
    /// Counts how many task tokens match the agent's expertise keywords
    /// using case-insensitive comparison.
    fn calculate_keyword_score(&self, task_tokens: &[String], agent: &TreeAgent) -> usize {
        let agent_keywords: Vec<String> = agent
            .expertise_keywords
            .iter()
            .map(|k| k.to_lowercase())
            .collect();

        task_tokens
            .iter()
            .filter(|token| agent_keywords.contains(token))
            .count()
    }

    /// Routes by semantic similarity using embeddings
    ///
    /// Embeds the task and compares it with agent expertise embeddings
    /// using cosine similarity. Selects the agent with highest similarity
    /// above the configured threshold.
    async fn route_by_semantic_similarity(
        &self,
        grove: &Grove,
        task: &str,
    ) -> Result<RoutingDecision, BattalionError> {
        debug!("Routing by semantic similarity");

        // Check if embedding port is available
        let embedding_port = self.embedding_port.as_ref().ok_or_else(|| {
            BattalionError::RoutingError(
                "EmbeddingPort required for SemanticSimilarity routing".to_string(),
            )
        })?;

        // Embed the task
        let task_embedding = embedding_port
            .embed_text(task)
            .await
            .map_err(|e| BattalionError::RoutingError(format!("Failed to embed task: {}", e)))?;

        let threshold = grove.node.config.similarity_threshold;
        let mut best_similarity = threshold; // Must meet minimum threshold
        let mut best_tree: Option<&Tree> = None;
        let mut best_agent: Option<&TreeAgent> = None;

        // Calculate similarity with each agent
        for tree in &grove.node.trees {
            for agent in &tree.agents {
                if let Some(ref agent_embedding) = agent.expertise_embedding {
                    let similarity =
                        self.cosine_similarity(&task_embedding.vector, agent_embedding);

                    if similarity > best_similarity {
                        best_similarity = similarity;
                        best_tree = Some(tree);
                        best_agent = Some(agent);
                    }
                }
            }
        }

        // Check if we found a match above threshold
        if let (Some(tree), Some(agent)) = (best_tree, best_agent) {
            Ok(RoutingDecision {
                selected_tree: tree.name.clone(),
                selected_agent: agent.paladin_id.clone(),
                confidence: best_similarity,
                reasoning: format!(
                    "Semantic similarity score: {:.3} (threshold: {:.3})",
                    best_similarity, threshold
                ),
            })
        } else {
            Err(BattalionError::RoutingError(format!(
                "No agents found with similarity above threshold {:.3}",
                threshold
            )))
        }
    }

    /// Calculates cosine similarity between two vectors
    ///
    /// Returns a value between 0.0 and 1.0, where 1.0 means identical direction.
    fn cosine_similarity(&self, vec_a: &[f32], vec_b: &[f32]) -> f32 {
        if vec_a.len() != vec_b.len() {
            warn!(
                "Dimension mismatch in cosine similarity: {} vs {}",
                vec_a.len(),
                vec_b.len()
            );
            return 0.0;
        }

        let dot_product: f32 = vec_a.iter().zip(vec_b.iter()).map(|(a, b)| a * b).sum();

        let magnitude_a: f32 = vec_a.iter().map(|x| x * x).sum::<f32>().sqrt();
        let magnitude_b: f32 = vec_b.iter().map(|x| x * x).sum::<f32>().sqrt();

        if magnitude_a == 0.0 || magnitude_b == 0.0 {
            return 0.0;
        }

        (dot_product / (magnitude_a * magnitude_b)).clamp(0.0, 1.0)
    }

    /// Routes using LLM analysis
    ///
    /// Provides the LLM with task description and agent expertise,
    /// asking it to select the best agent with reasoning.
    ///
    /// # Errors
    ///
    /// Returns `BattalionError::RoutingError` if:
    /// - LLM is not configured (None)
    /// - LLM call fails
    /// - JSON parsing fails
    /// - Confidence is below threshold and routing_fallback is "error"
    /// - Unknown agent_id in response
    async fn route_by_llm(
        &self,
        grove: &Grove,
        task: &str,
    ) -> Result<RoutingDecision, BattalionError> {
        debug!("Routing by LLM analysis");

        // Check if LLM port is available
        let llm_port = self.llm_port.as_ref().ok_or_else(|| {
            BattalionError::RoutingError(
                "LLM port not configured for LLM-based routing".to_string(),
            )
        })?;

        // Build prompt with agent information
        let mut prompt = format!(
            "You are a task routing system. Given the following task and available specialized agents, \
            select the most appropriate agent and explain your reasoning.\n\n\
            Task: {}\n\n\
            Available Agents:\n",
            task
        );

        for tree in &grove.node.trees {
            prompt.push_str(&format!("\nTree: {}\n", tree.name));
            for agent in &tree.agents {
                prompt.push_str(&format!(
                    "  - Agent ID: {}\n    Expertise: {}\n",
                    agent.paladin_id,
                    agent.expertise_keywords.join(", ")
                ));
            }
        }

        prompt.push_str(
            "\n\nRespond in JSON format with the following structure:\n\
            {\n  \
              \"tree_name\": \"selected tree name\",\n  \
              \"agent_id\": \"selected agent ID\",\n  \
              \"confidence\": 0.85,\n  \
              \"reasoning\": \"explanation for selection\"\n\
            }\n",
        );

        debug!("LLM routing prompt prepared: {} characters", prompt.len());

        // Create prompt item
        let user_prompt = UserPrompt {
            query: prompt,
            context: None,
        };

        let prompt_item = PromptItem::new(PromptType::User(user_prompt))
            .map_err(|e| BattalionError::RoutingError(format!("Failed to create prompt: {}", e)))?;

        // Call LLM
        let llm_request = LlmRequest {
            id: uuid::Uuid::new_v4(),
            model: "gpt-4".to_string(), // TODO: Make configurable
            prompt: prompt_item,
            attachments: vec![],
            stream: false,
            metadata: HashMap::new(),
        };

        let llm_response = llm_port.generate(llm_request).await.map_err(|e| {
            let msg = format!("LLM call failed: {}", e);
            warn!("{}", msg);
            e // Return the LLM error, will be handled below
        });

        let llm_response = match llm_response {
            Ok(resp) => resp,
            Err(_) => {
                return self.handle_routing_failure(grove, task, "LLM call failed");
            }
        };

        debug!(
            "LLM response received: {} characters",
            llm_response.content.len()
        );

        // Parse JSON response
        let routing_response: RoutingResponse = match serde_json::from_str(&llm_response.content) {
            Ok(resp) => resp,
            Err(e) => {
                warn!("Failed to parse LLM JSON response: {}", e);
                return self.handle_routing_failure(
                    grove,
                    task,
                    &format!("Failed to parse JSON: {}", e),
                );
            }
        };

        debug!(
            "Parsed routing response: agent={}, confidence={}",
            routing_response.agent_id, routing_response.confidence
        );

        // Validate confidence threshold
        if routing_response.confidence < grove.node.config.min_confidence {
            warn!(
                "Confidence {} below threshold {}",
                routing_response.confidence, grove.node.config.min_confidence
            );
            return self.handle_routing_failure(
                grove,
                task,
                &format!(
                    "Confidence {} below threshold {}",
                    routing_response.confidence, grove.node.config.min_confidence
                ),
            );
        }

        // Validate agent_id exists in Grove
        let agent_exists = grove.node.trees.iter().any(|tree| {
            tree.agents
                .iter()
                .any(|agent| agent.paladin_id == routing_response.agent_id)
        });

        if !agent_exists {
            warn!(
                "Unknown agent_id in LLM response: {}",
                routing_response.agent_id
            );
            return self.handle_routing_failure(
                grove,
                task,
                &format!("Unknown agent_id: {}", routing_response.agent_id),
            );
        }

        info!(
            "LLM routing successful: {} (confidence: {})",
            routing_response.agent_id, routing_response.confidence
        );

        Ok(RoutingDecision {
            selected_tree: routing_response.tree_name,
            selected_agent: routing_response.agent_id,
            confidence: routing_response.confidence,
            reasoning: routing_response.reasoning,
        })
    }

    /// Handles routing failures based on the configured fallback strategy
    ///
    /// If `routing_fallback` is "keyword", attempts keyword matching.
    /// If "error", returns an error.
    fn handle_routing_failure(
        &self,
        grove: &Grove,
        task: &str,
        reason: &str,
    ) -> Result<RoutingDecision, BattalionError> {
        match grove.node.config.routing_fallback.as_str() {
            "keyword" => {
                warn!("Falling back to keyword matching: {}", reason);
                self.route_by_keywords(grove, task).map(|mut decision| {
                    decision.reasoning = format!(
                        "LLM routing failed ({}), fell back to keyword matching: {}",
                        reason, decision.reasoning
                    );
                    decision
                })
            }
            "error" => Err(BattalionError::RoutingError(format!(
                "LLM routing failed: {}",
                reason
            ))),
            other => {
                warn!(
                    "Unknown routing_fallback value '{}', treating as 'error'",
                    other
                );
                Err(BattalionError::RoutingError(format!(
                    "LLM routing failed: {}",
                    reason
                )))
            }
        }
    }

    /// Selects the first agent from a tree
    ///
    /// Used for fallback scenarios when routing strategies fail.
    fn select_from_tree(
        &self,
        tree: &Tree,
        task: &str,
        reason: &str,
    ) -> Result<RoutingDecision, BattalionError> {
        tree.agents.first().map_or_else(
            || {
                Err(BattalionError::RoutingError(format!(
                    "Tree '{}' has no agents",
                    tree.name
                )))
            },
            |agent| {
                Ok(RoutingDecision {
                    selected_tree: tree.name.clone(),
                    selected_agent: agent.paladin_id.clone(),
                    confidence: 0.5,
                    reasoning: format!("Using {} strategy for task: {}", reason, task),
                })
            },
        )
    }

    /// Executes an agent with the given task
    ///
    /// Looks up the Paladin by agent_id (TreeAgent.paladin_id) and executes it.
    ///
    /// # Arguments
    ///
    /// * `agent_id` - ID of the agent to execute (matches index in paladins vec, e.g., "agent_0")
    /// * `paladins` - Slice of available Paladins
    /// * `task` - Task input string
    ///
    /// # Returns
    ///
    /// The output string from the Paladin execution
    async fn execute_agent(
        &self,
        paladin: &paladin_core::platform::container::paladin::Paladin,
        task: &str,
    ) -> Result<String, BattalionError> {
        debug!(
            "Executing agent '{}' with task: {}",
            paladin.node.name, task
        );

        // Execute the Paladin
        let result = self
            .paladin_port
            .execute(paladin, task)
            .await
            .map_err(|e| {
                BattalionError::ExecutionError(format!(
                    "Paladin '{}' execution failed: {}",
                    paladin.node.name, e
                ))
            })?;

        Ok(result.output)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use paladin_core::platform::container::battalion::grove::{GroveBuilder, Tree, TreeAgent};
    use paladin_ports::output::embedding_port::Embedding;

    /// Mock embedding port for testing
    struct MockEmbeddingPort;

    #[async_trait::async_trait]
    impl EmbeddingPort for MockEmbeddingPort {
        async fn embed_text(
            &self,
            text: &str,
        ) -> Result<Embedding, paladin_ports::output::embedding_port::EmbeddingError> {
            // Simple mock: return embedding based on text length
            let vector = vec![text.len() as f32 / 100.0; 128];
            Ok(Embedding {
                vector,
                model: "mock-model".to_string(),
                dimension: 128,
                token_count: Some(text.split_whitespace().count() as u32),
            })
        }

        async fn embed_batch(
            &self,
            texts: &[&str],
        ) -> Result<Vec<Embedding>, paladin_ports::output::embedding_port::EmbeddingError> {
            let mut embeddings = Vec::new();
            for text in texts {
                embeddings.push(self.embed_text(text).await?);
            }
            Ok(embeddings)
        }

        fn dimension(&self) -> usize {
            128
        }

        fn model_name(&self) -> &str {
            "mock-model"
        }
    }

    #[test]
    fn test_calculate_keyword_score() {
        let service = create_test_service();
        let agent =
            TreeAgent::new("test_agent").with_keywords(vec!["rust", "backend", "api", "database"]);

        let task_tokens = vec!["rust".to_string(), "api".to_string(), "testing".to_string()];

        let score = service.calculate_keyword_score(&task_tokens, &agent);
        assert_eq!(score, 2); // "rust" and "api" match
    }

    #[test]
    fn test_calculate_keyword_score_case_insensitive() {
        let service = create_test_service();
        let agent = TreeAgent::new("test_agent").with_keywords(vec!["Rust", "Backend", "API"]);

        let task_tokens = vec!["rust".to_string(), "api".to_string()];

        let score = service.calculate_keyword_score(&task_tokens, &agent);
        assert_eq!(score, 2);
    }

    #[test]
    fn test_calculate_keyword_score_no_match() {
        let service = create_test_service();
        let agent = TreeAgent::new("test_agent").with_keywords(vec!["python", "django"]);

        let task_tokens = vec!["rust".to_string(), "api".to_string()];

        let score = service.calculate_keyword_score(&task_tokens, &agent);
        assert_eq!(score, 0);
    }

    #[test]
    fn test_cosine_similarity_identical() {
        let service = create_test_service();
        let vec_a = vec![1.0, 2.0, 3.0];
        let vec_b = vec![1.0, 2.0, 3.0];

        let similarity = service.cosine_similarity(&vec_a, &vec_b);
        assert!((similarity - 1.0).abs() < 0.001);
    }

    #[test]
    fn test_cosine_similarity_orthogonal() {
        let service = create_test_service();
        let vec_a = vec![1.0, 0.0, 0.0];
        let vec_b = vec![0.0, 1.0, 0.0];

        let similarity = service.cosine_similarity(&vec_a, &vec_b);
        assert!((similarity - 0.0).abs() < 0.001);
    }

    #[test]
    fn test_cosine_similarity_opposite() {
        let service = create_test_service();
        let vec_a = vec![1.0, 2.0, 3.0];
        let vec_b = vec![-1.0, -2.0, -3.0];

        let similarity = service.cosine_similarity(&vec_a, &vec_b);
        // Cosine similarity is clamped to [0, 1], so opposite vectors give 0
        assert!((similarity - 0.0).abs() < 0.001);
    }

    #[test]
    fn test_cosine_similarity_dimension_mismatch() {
        let service = create_test_service();
        let vec_a = vec![1.0, 2.0];
        let vec_b = vec![1.0, 2.0, 3.0];

        let similarity = service.cosine_similarity(&vec_a, &vec_b);
        assert_eq!(similarity, 0.0);
    }

    #[test]
    fn test_route_by_keywords_basic() {
        let service = create_test_service();
        let grove = create_test_grove();

        let result = service.route_by_keywords(&grove, "rust backend api development");

        assert!(result.is_ok());
        let decision = result.unwrap();
        assert_eq!(decision.selected_agent, "backend_expert");
        assert!(decision.confidence > 0.0);
    }

    #[test]
    fn test_route_by_keywords_no_match() {
        let service = create_test_service();
        let grove = create_test_grove();

        let result = service.route_by_keywords(&grove, "quantum physics simulation");

        // Should still route, but with low confidence
        assert!(result.is_ok());
        let decision = result.unwrap();
        assert!(decision.confidence <= 0.5);
    }

    #[tokio::test]
    async fn test_grove_resolves_routed_agent() {
        // Task 4.1: Grove resolves routed agent from registry
        use crate::in_memory_registry::HashMapPaladinRegistry;
        use paladin_core::base::entity::node::Node;
        use paladin_core::platform::container::paladin::{MaxLoops, PaladinData, PaladinStatus};
        use paladin_ports::output::paladin_port::PaladinResult;
        use paladin_ports::output::paladin_registry::PaladinRegistry;

        // Create test Paladins with names matching TreeAgent paladin_ids
        let backend_paladin = Node::new(
            PaladinData {
                system_prompt: "Backend expert".to_string(),
                name: "backend_expert".to_string(),
                user_name: "User".to_string(),
                model: "gpt-4".to_string(),
                temperature: 0.7,
                max_loops: MaxLoops::Fixed(3),
                stop_words: vec![],
                status: PaladinStatus::Idle,
                vision_enabled: false,
                ..Default::default()
            },
            Some("backend_expert".to_string()),
        );

        // Create registry and register paladins
        let registry = HashMapPaladinRegistry::new();
        registry
            .register("backend_expert".to_string(), Arc::new(backend_paladin))
            .expect("Should register backend_expert");

        // Create mock that returns a result
        struct ExecutingMockPort;
        #[async_trait::async_trait]
        impl PaladinPort for ExecutingMockPort {
            async fn execute(
                &self,
                paladin: &paladin_core::platform::container::paladin::Paladin,
                input: &str,
            ) -> Result<PaladinResult, paladin_core::platform::container::paladin_error::PaladinError>
            {
                Ok(PaladinResult {
                    output: format!("[{}] Analyzed: {}", paladin.node.name, input),
                    token_count: 100,
                    execution_time_ms: 10,
                    loop_count: 1,
                    ..Default::default()
                })
            }

            async fn execute_stream(
                &self,
                _paladin: &paladin_core::platform::container::paladin::Paladin,
                _input: &str,
            ) -> Result<
                paladin_ports::output::paladin_port::PaladinStream,
                paladin_core::platform::container::paladin_error::PaladinError,
            > {
                let (_tx, rx) = tokio::sync::mpsc::channel(1);
                Ok(rx)
            }

            fn validate(
                &self,
                _paladin: &paladin_core::platform::container::paladin::Paladin,
            ) -> Result<(), paladin_core::platform::container::paladin_error::PaladinError>
            {
                Ok(())
            }
        }

        let service =
            GroveExecutionService::new(Arc::new(ExecutingMockPort), None, None, Arc::new(registry));

        let grove = create_test_grove();

        // Execute - should resolve "backend_expert" from registry
        let result = service.execute(&grove, "rust backend task").await;

        assert!(result.is_ok(), "Grove should resolve and execute agent");
        let grove_result = result.unwrap();
        assert_eq!(
            grove_result.routing_decision.selected_agent,
            "backend_expert"
        );
        assert!(grove_result.execution_result.contains("backend_expert"));
    }

    #[tokio::test]
    async fn test_grove_paladin_not_found_error() {
        // Task 4.2: Grove returns PaladinNotFound when agent missing from registry
        use crate::in_memory_registry::HashMapPaladinRegistry;

        // Create empty registry (no paladins registered)
        let registry = HashMapPaladinRegistry::new();

        let service =
            GroveExecutionService::new(Arc::new(MockPaladinPort), None, None, Arc::new(registry));

        let grove = create_test_grove();

        // Execute - routing will select "backend_expert" but it won't be in registry
        let result = service.execute(&grove, "rust backend task").await;

        assert!(result.is_err(), "Should return error when agent not found");
        match result {
            Err(BattalionError::PaladinNotFound(msg)) => {
                assert!(msg.contains("backend_expert"));
            }
            _ => panic!("Expected PaladinNotFound error"),
        }
    }

    // Helper functions
    fn create_test_service() -> GroveExecutionService {
        use crate::in_memory_registry::HashMapPaladinRegistry;
        let registry = HashMapPaladinRegistry::new();
        GroveExecutionService::new(
            Arc::new(MockPaladinPort),
            Some(Arc::new(MockEmbeddingPort)),
            Some(Arc::new(MockLlmPort)),
            Arc::new(registry),
        )
    }

    fn create_test_grove() -> Grove {
        GroveBuilder::new()
            .name("Test Grove")
            .add_tree(
                Tree::new("engineering")
                    .add_agent(
                        TreeAgent::new("backend_expert")
                            .with_keywords(vec!["rust", "backend", "api", "database"]),
                    )
                    .add_agent(TreeAgent::new("frontend_expert").with_keywords(vec![
                        "react",
                        "ui",
                        "css",
                        "javascript",
                    ])),
            )
            .build()
            .unwrap()
    }

    // Mock ports for testing
    struct MockPaladinPort;
    struct MockLlmPort;

    #[async_trait::async_trait]
    impl PaladinPort for MockPaladinPort {
        async fn execute(
            &self,
            _paladin: &paladin_core::platform::container::paladin::Paladin,
            _input: &str,
        ) -> Result<
            paladin_ports::output::paladin_port::PaladinResult,
            paladin_core::platform::container::paladin_error::PaladinError,
        > {
            unimplemented!("Mock not needed for these tests")
        }

        async fn execute_stream(
            &self,
            _paladin: &paladin_core::platform::container::paladin::Paladin,
            _input: &str,
        ) -> Result<
            paladin_ports::output::paladin_port::PaladinStream,
            paladin_core::platform::container::paladin_error::PaladinError,
        > {
            unimplemented!("Mock not needed for these tests")
        }

        fn validate(
            &self,
            _paladin: &paladin_core::platform::container::paladin::Paladin,
        ) -> Result<(), paladin_core::platform::container::paladin_error::PaladinError> {
            Ok(())
        }
    }

    #[async_trait::async_trait]
    impl LlmPort for MockLlmPort {
        async fn generate(
            &self,
            _request: paladin_ports::output::llm_port::LlmRequest,
        ) -> Result<
            paladin_ports::output::llm_port::LlmResponse,
            paladin_ports::output::llm_port::LlmError,
        > {
            unimplemented!("Mock not needed for these tests")
        }

        async fn generate_stream(
            &self,
            _request: paladin_ports::output::llm_port::LlmRequest,
        ) -> Result<
            Box<
                dyn futures::Stream<
                        Item = Result<
                            paladin_ports::output::llm_port::StreamingResponse,
                            paladin_ports::output::llm_port::LlmError,
                        >,
                    > + Send,
            >,
            paladin_ports::output::llm_port::LlmError,
        > {
            unimplemented!("Mock not needed for these tests")
        }

        async fn validate_model(
            &self,
            _model: &str,
        ) -> Result<bool, paladin_ports::output::llm_port::LlmError> {
            Ok(true)
        }

        async fn get_available_models(
            &self,
        ) -> Result<Vec<String>, paladin_ports::output::llm_port::LlmError> {
            Ok(vec!["mock-model".to_string()])
        }

        fn get_provider_name(&self) -> &'static str {
            "mock"
        }

        fn get_capabilities(&self) -> paladin_ports::output::llm_port::ProviderCapabilities {
            use paladin_ports::output::llm_port::ProviderCapabilities;
            ProviderCapabilities {
                supports_streaming: false,
                supports_tool_calling: false,
                supports_function_calling: false,
                supports_vision: false,
                supports_embeddings: false,
                max_context_tokens: Some(4096),
                supports_system_messages: true,
            }
        }
    }

    // Task 5.0: LLM-based routing tests (TDD - these should fail until implementation)

    #[tokio::test]
    async fn test_route_with_llm_successful() {
        // Mock LLM that returns valid high-confidence routing decision
        struct SuccessfulLlmMock;

        #[async_trait::async_trait]
        impl LlmPort for SuccessfulLlmMock {
            async fn generate(
                &self,
                _request: paladin_ports::output::llm_port::LlmRequest,
            ) -> Result<
                paladin_ports::output::llm_port::LlmResponse,
                paladin_ports::output::llm_port::LlmError,
            > {
                let response_json = r#"{
                    "tree_name": "engineering",
                    "agent_id": "backend_expert",
                    "confidence": 0.85,
                    "reasoning": "Task mentions rust and backend, which are backend expert's core skills"
                }"#;

                Ok(paladin_ports::output::llm_port::LlmResponse {
                    id: uuid::Uuid::new_v4(),
                    request_id: uuid::Uuid::new_v4(),
                    model: "mock-model".to_string(),
                    content: response_json.to_string(),
                    finish_reason: paladin_ports::output::llm_port::FinishReason::Stop,
                    usage: paladin_ports::output::llm_port::TokenUsage {
                        prompt_tokens: 100,
                        completion_tokens: 50,
                        total_tokens: 150,
                    },
                    created_at: chrono::Utc::now(),
                    metadata: std::collections::HashMap::new(),
                    function_call: None,
                })
            }

            async fn generate_stream(
                &self,
                _request: paladin_ports::output::llm_port::LlmRequest,
            ) -> Result<
                Box<
                    dyn futures::Stream<
                            Item = Result<
                                paladin_ports::output::llm_port::StreamingResponse,
                                paladin_ports::output::llm_port::LlmError,
                            >,
                        > + Send,
                >,
                paladin_ports::output::llm_port::LlmError,
            > {
                unimplemented!()
            }

            async fn validate_model(
                &self,
                _model: &str,
            ) -> Result<bool, paladin_ports::output::llm_port::LlmError> {
                Ok(true)
            }

            async fn get_available_models(
                &self,
            ) -> Result<Vec<String>, paladin_ports::output::llm_port::LlmError> {
                Ok(vec!["mock-model".to_string()])
            }

            fn get_provider_name(&self) -> &'static str {
                "mock"
            }

            fn get_capabilities(&self) -> paladin_ports::output::llm_port::ProviderCapabilities {
                paladin_ports::output::llm_port::ProviderCapabilities::default()
            }
        }

        use crate::in_memory_registry::HashMapPaladinRegistry;
        let registry = HashMapPaladinRegistry::new();
        let service = GroveExecutionService::new(
            Arc::new(MockPaladinPort),
            None,
            Some(Arc::new(SuccessfulLlmMock)),
            Arc::new(registry),
        );

        let grove = create_test_grove();

        let result = service
            .route_by_llm(&grove, "rust backend development task")
            .await;

        assert!(
            result.is_ok(),
            "Should route successfully with high confidence"
        );
        let decision = result.unwrap();
        assert_eq!(decision.selected_tree, "engineering");
        assert_eq!(decision.selected_agent, "backend_expert");
        assert!(decision.confidence >= 0.85);
        assert!(decision.reasoning.contains("rust"));
    }

    #[tokio::test]
    async fn test_route_with_llm_low_confidence() {
        // Mock LLM that returns valid but low-confidence routing decision
        struct LowConfidenceLlmMock;

        #[async_trait::async_trait]
        impl LlmPort for LowConfidenceLlmMock {
            async fn generate(
                &self,
                _request: paladin_ports::output::llm_port::LlmRequest,
            ) -> Result<
                paladin_ports::output::llm_port::LlmResponse,
                paladin_ports::output::llm_port::LlmError,
            > {
                let response_json = r#"{
                    "tree_name": "engineering",
                    "agent_id": "backend_expert",
                    "confidence": 0.3,
                    "reasoning": "Unclear task, best guess is backend"
                }"#;

                Ok(paladin_ports::output::llm_port::LlmResponse {
                    id: uuid::Uuid::new_v4(),
                    request_id: uuid::Uuid::new_v4(),
                    model: "mock-model".to_string(),
                    content: response_json.to_string(),
                    finish_reason: paladin_ports::output::llm_port::FinishReason::Stop,
                    usage: paladin_ports::output::llm_port::TokenUsage {
                        prompt_tokens: 100,
                        completion_tokens: 50,
                        total_tokens: 150,
                    },
                    created_at: chrono::Utc::now(),
                    metadata: std::collections::HashMap::new(),
                    function_call: None,
                })
            }

            async fn generate_stream(
                &self,
                _request: paladin_ports::output::llm_port::LlmRequest,
            ) -> Result<
                Box<
                    dyn futures::Stream<
                            Item = Result<
                                paladin_ports::output::llm_port::StreamingResponse,
                                paladin_ports::output::llm_port::LlmError,
                            >,
                        > + Send,
                >,
                paladin_ports::output::llm_port::LlmError,
            > {
                unimplemented!()
            }

            async fn validate_model(
                &self,
                _model: &str,
            ) -> Result<bool, paladin_ports::output::llm_port::LlmError> {
                Ok(true)
            }

            async fn get_available_models(
                &self,
            ) -> Result<Vec<String>, paladin_ports::output::llm_port::LlmError> {
                Ok(vec!["mock-model".to_string()])
            }

            fn get_provider_name(&self) -> &'static str {
                "mock"
            }

            fn get_capabilities(&self) -> paladin_ports::output::llm_port::ProviderCapabilities {
                paladin_ports::output::llm_port::ProviderCapabilities::default()
            }
        }

        use crate::in_memory_registry::HashMapPaladinRegistry;
        let registry = HashMapPaladinRegistry::new();
        let mut grove = create_test_grove();
        // Set routing_fallback to "error" to test that low confidence triggers fallback logic
        grove.node.config.routing_fallback = "error".to_string();
        grove.node.config.min_confidence = 0.5;

        let service = GroveExecutionService::new(
            Arc::new(MockPaladinPort),
            None,
            Some(Arc::new(LowConfidenceLlmMock)),
            Arc::new(registry),
        );

        let result = service.route_by_llm(&grove, "ambiguous task").await;

        // With routing_fallback="error" and confidence below threshold, should return error
        assert!(
            result.is_err(),
            "Should return error when confidence below threshold and fallback is 'error'"
        );
        match result {
            Err(BattalionError::RoutingError(msg)) => {
                assert!(msg.contains("confidence") || msg.contains("threshold"));
            }
            _ => panic!("Expected RoutingError for low confidence with error fallback"),
        }
    }

    #[tokio::test]
    async fn test_route_with_llm_invalid_json() {
        // Mock LLM that returns invalid JSON
        struct InvalidJsonLlmMock;

        #[async_trait::async_trait]
        impl LlmPort for InvalidJsonLlmMock {
            async fn generate(
                &self,
                _request: paladin_ports::output::llm_port::LlmRequest,
            ) -> Result<
                paladin_ports::output::llm_port::LlmResponse,
                paladin_ports::output::llm_port::LlmError,
            > {
                let response_json = "This is not JSON at all!";

                Ok(paladin_ports::output::llm_port::LlmResponse {
                    id: uuid::Uuid::new_v4(),
                    request_id: uuid::Uuid::new_v4(),
                    model: "mock-model".to_string(),
                    content: response_json.to_string(),
                    finish_reason: paladin_ports::output::llm_port::FinishReason::Stop,
                    usage: paladin_ports::output::llm_port::TokenUsage {
                        prompt_tokens: 100,
                        completion_tokens: 50,
                        total_tokens: 150,
                    },
                    created_at: chrono::Utc::now(),
                    metadata: std::collections::HashMap::new(),
                    function_call: None,
                })
            }

            async fn generate_stream(
                &self,
                _request: paladin_ports::output::llm_port::LlmRequest,
            ) -> Result<
                Box<
                    dyn futures::Stream<
                            Item = Result<
                                paladin_ports::output::llm_port::StreamingResponse,
                                paladin_ports::output::llm_port::LlmError,
                            >,
                        > + Send,
                >,
                paladin_ports::output::llm_port::LlmError,
            > {
                unimplemented!()
            }

            async fn validate_model(
                &self,
                _model: &str,
            ) -> Result<bool, paladin_ports::output::llm_port::LlmError> {
                Ok(true)
            }

            async fn get_available_models(
                &self,
            ) -> Result<Vec<String>, paladin_ports::output::llm_port::LlmError> {
                Ok(vec!["mock-model".to_string()])
            }

            fn get_provider_name(&self) -> &'static str {
                "mock"
            }

            fn get_capabilities(&self) -> paladin_ports::output::llm_port::ProviderCapabilities {
                paladin_ports::output::llm_port::ProviderCapabilities::default()
            }
        }

        use crate::in_memory_registry::HashMapPaladinRegistry;
        let registry = HashMapPaladinRegistry::new();
        let mut grove = create_test_grove();
        grove.node.config.routing_fallback = "error".to_string();

        let service = GroveExecutionService::new(
            Arc::new(MockPaladinPort),
            None,
            Some(Arc::new(InvalidJsonLlmMock)),
            Arc::new(registry),
        );

        let result = service.route_by_llm(&grove, "test task").await;

        // Invalid JSON should trigger error when routing_fallback="error"
        assert!(result.is_err(), "Should return error for invalid JSON");
        match result {
            Err(BattalionError::RoutingError(_)) => {} // Expected
            _ => panic!("Expected RoutingError for invalid JSON"),
        }
    }

    #[tokio::test]
    async fn test_route_with_llm_fallback_to_keyword() {
        // Mock LLM that returns low confidence
        struct LowConfidenceFallbackMock;

        #[async_trait::async_trait]
        impl LlmPort for LowConfidenceFallbackMock {
            async fn generate(
                &self,
                _request: paladin_ports::output::llm_port::LlmRequest,
            ) -> Result<
                paladin_ports::output::llm_port::LlmResponse,
                paladin_ports::output::llm_port::LlmError,
            > {
                let response_json = r#"{
                    "tree_name": "engineering",
                    "agent_id": "backend_expert",
                    "confidence": 0.2,
                    "reasoning": "Very uncertain"
                }"#;

                Ok(paladin_ports::output::llm_port::LlmResponse {
                    id: uuid::Uuid::new_v4(),
                    request_id: uuid::Uuid::new_v4(),
                    model: "mock-model".to_string(),
                    content: response_json.to_string(),
                    finish_reason: paladin_ports::output::llm_port::FinishReason::Stop,
                    usage: paladin_ports::output::llm_port::TokenUsage {
                        prompt_tokens: 100,
                        completion_tokens: 50,
                        total_tokens: 150,
                    },
                    created_at: chrono::Utc::now(),
                    metadata: std::collections::HashMap::new(),
                    function_call: None,
                })
            }

            async fn generate_stream(
                &self,
                _request: paladin_ports::output::llm_port::LlmRequest,
            ) -> Result<
                Box<
                    dyn futures::Stream<
                            Item = Result<
                                paladin_ports::output::llm_port::StreamingResponse,
                                paladin_ports::output::llm_port::LlmError,
                            >,
                        > + Send,
                >,
                paladin_ports::output::llm_port::LlmError,
            > {
                unimplemented!()
            }

            async fn validate_model(
                &self,
                _model: &str,
            ) -> Result<bool, paladin_ports::output::llm_port::LlmError> {
                Ok(true)
            }

            async fn get_available_models(
                &self,
            ) -> Result<Vec<String>, paladin_ports::output::llm_port::LlmError> {
                Ok(vec!["mock-model".to_string()])
            }

            fn get_provider_name(&self) -> &'static str {
                "mock"
            }

            fn get_capabilities(&self) -> paladin_ports::output::llm_port::ProviderCapabilities {
                paladin_ports::output::llm_port::ProviderCapabilities::default()
            }
        }

        use crate::in_memory_registry::HashMapPaladinRegistry;
        let registry = HashMapPaladinRegistry::new();
        let mut grove = create_test_grove();
        // Set routing_fallback to "keyword" to test fallback to keyword matching
        grove.node.config.routing_fallback = "keyword".to_string();
        grove.node.config.min_confidence = 0.5;

        let service = GroveExecutionService::new(
            Arc::new(MockPaladinPort),
            None,
            Some(Arc::new(LowConfidenceFallbackMock)),
            Arc::new(registry),
        );

        let result = service
            .route_by_llm(&grove, "rust backend development")
            .await;

        // With routing_fallback="keyword", should fallback and succeed
        assert!(
            result.is_ok(),
            "Should fallback to keyword matching when confidence below threshold"
        );
        let decision = result.unwrap();
        // Should have been routed by keyword matching (backend_expert has "rust" keyword)
        assert_eq!(decision.selected_agent, "backend_expert");
        // The reasoning should indicate fallback occurred
        assert!(decision.reasoning.contains("keyword") || decision.reasoning.contains("fallback"));
    }
}