aof-core 0.4.0-beta

Core types, traits, and abstractions for AOF framework
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
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::fmt;
use std::sync::Arc;

use crate::mcp::McpServerConfig;
use crate::AofResult;

/// Output schema specification using JSON Schema format
/// Enables structured, validated agent responses
///
/// This is the YAML-friendly version for config files. It gets converted
/// to `crate::schema::OutputSchema` for runtime use.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OutputSchemaSpec {
    /// JSON Schema type (object, array, string, number, boolean)
    #[serde(rename = "type")]
    pub schema_type: String,

    /// Properties for object type
    #[serde(skip_serializing_if = "Option::is_none")]
    pub properties: Option<HashMap<String, serde_json::Value>>,

    /// Required properties for object type
    #[serde(skip_serializing_if = "Option::is_none")]
    pub required: Option<Vec<String>>,

    /// Items schema for array type
    #[serde(skip_serializing_if = "Option::is_none")]
    pub items: Option<Box<serde_json::Value>>,

    /// Enum values for string type
    #[serde(rename = "enum", skip_serializing_if = "Option::is_none")]
    pub enum_values: Option<Vec<String>>,

    /// Description of the schema
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,

    /// Allow additional properties (default: false for strict validation)
    #[serde(default, rename = "additionalProperties")]
    pub additional_properties: Option<bool>,

    /// Validation mode: strict (default), lenient, coerce
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub validation_mode: Option<String>,

    /// Behavior on validation error: fail (default), retry, passthrough
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub on_validation_error: Option<String>,

    /// Max retries if on_validation_error is "retry"
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub max_retries: Option<u32>,

    /// Additional JSON Schema properties (oneOf, anyOf, etc.)
    #[serde(flatten)]
    pub extra: HashMap<String, serde_json::Value>,
}

impl OutputSchemaSpec {
    /// Convert to JSON Schema Value for validation
    pub fn to_json_schema(&self) -> serde_json::Value {
        let mut schema = serde_json::json!({
            "type": self.schema_type
        });

        if let Some(props) = &self.properties {
            schema["properties"] = serde_json::json!(props);
        }

        if let Some(req) = &self.required {
            schema["required"] = serde_json::json!(req);
        }

        if let Some(items) = &self.items {
            schema["items"] = serde_json::json!(items);
        }

        if let Some(enum_vals) = &self.enum_values {
            schema["enum"] = serde_json::json!(enum_vals);
        }

        if let Some(desc) = &self.description {
            schema["description"] = serde_json::json!(desc);
        }

        if let Some(additional) = &self.additional_properties {
            schema["additionalProperties"] = serde_json::json!(additional);
        }

        // Merge extra fields (oneOf, anyOf, etc.)
        if let serde_json::Value::Object(ref mut map) = schema {
            for (key, value) in &self.extra {
                map.insert(key.clone(), value.clone());
            }
        }

        schema
    }

    /// Get validation mode (defaults to "strict")
    pub fn get_validation_mode(&self) -> &str {
        self.validation_mode.as_deref().unwrap_or("strict")
    }

    /// Get error handling behavior (defaults to "fail")
    pub fn get_error_behavior(&self) -> &str {
        self.on_validation_error.as_deref().unwrap_or("fail")
    }

    /// Generate schema instructions for the LLM
    pub fn to_instructions(&self) -> String {
        let schema = self.to_json_schema();
        format!(
            "You MUST respond with valid JSON matching this schema:\n```json\n{}\n```\nDo not include any text outside the JSON object.",
            serde_json::to_string_pretty(&schema).unwrap_or_default()
        )
    }
}

/// Convert YAML-friendly OutputSchemaSpec to runtime OutputSchema
impl From<OutputSchemaSpec> for crate::schema::OutputSchema {
    fn from(spec: OutputSchemaSpec) -> Self {
        // Get validation mode before moving spec
        let strict = spec.get_validation_mode() == "strict";
        let description = spec.description.clone();

        let schema = spec.to_json_schema();
        let mut output = crate::schema::OutputSchema::from_json_schema(schema);

        // Transfer description if present
        if let Some(desc) = description {
            output = output.with_description(desc);
        }

        // Set strict mode based on validation_mode
        output = output.with_strict(strict);

        output
    }
}

/// Memory specification - unified way to configure memory backends
///
/// Supports multiple formats:
/// 1. Simple string: `"file:./memory.json"` or `"in_memory"`
/// 2. Object with type: `{type: "File", config: {path: "./memory.json", max_messages: 50}}`
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum MemorySpec {
    /// Simple memory specification (backward compatible)
    /// Format: "type" or "type:path" (e.g., "in_memory", "file:./memory.json")
    Simple(String),

    /// Structured memory configuration
    Structured(StructuredMemoryConfig),
}

impl MemorySpec {
    /// Get the memory type
    pub fn memory_type(&self) -> &str {
        match self {
            MemorySpec::Simple(s) => {
                // Extract type from "type" or "type:path" format
                s.split(':').next().unwrap_or(s)
            }
            MemorySpec::Structured(config) => &config.memory_type,
        }
    }

    /// Get the file path if this is a file-based memory
    pub fn path(&self) -> Option<String> {
        match self {
            MemorySpec::Simple(s) => {
                // Extract path from "file:./path.json" format
                if s.contains(':') {
                    s.split(':').nth(1).map(|s| s.to_string())
                } else {
                    None
                }
            }
            MemorySpec::Structured(config) => config
                .config
                .as_ref()
                .and_then(|c| c.get("path"))
                .and_then(|v| v.as_str())
                .map(|s| s.to_string()),
        }
    }

    /// Get max_messages configuration if available
    pub fn max_messages(&self) -> Option<usize> {
        match self {
            MemorySpec::Simple(_) => None,
            MemorySpec::Structured(config) => config
                .config
                .as_ref()
                .and_then(|c| c.get("max_messages"))
                .and_then(|v| v.as_u64())
                .map(|n| n as usize),
        }
    }

    /// Get the full configuration object
    pub fn config(&self) -> Option<&serde_json::Value> {
        match self {
            MemorySpec::Simple(_) => None,
            MemorySpec::Structured(config) => config.config.as_ref(),
        }
    }

    /// Check if this is an in-memory backend
    pub fn is_in_memory(&self) -> bool {
        let t = self.memory_type().to_lowercase();
        t == "in_memory" || t == "inmemory" || t == "memory"
    }

    /// Check if this is a file-based backend
    pub fn is_file(&self) -> bool {
        self.memory_type().to_lowercase() == "file"
    }
}

/// Structured memory configuration with type and config fields
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StructuredMemoryConfig {
    /// Memory backend type: "File", "InMemory", etc.
    #[serde(rename = "type")]
    pub memory_type: String,

    /// Backend-specific configuration
    #[serde(skip_serializing_if = "Option::is_none")]
    pub config: Option<serde_json::Value>,
}

impl fmt::Display for MemorySpec {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            MemorySpec::Simple(s) => write!(f, "{}", s),
            MemorySpec::Structured(config) => {
                if let Some(path) = self.path() {
                    write!(f, "{} (path: {})", config.memory_type, path)
                } else {
                    write!(f, "{}", config.memory_type)
                }
            }
        }
    }
}

/// Tool specification - unified way to configure both built-in and MCP tools
///
/// Supports multiple formats:
/// 1. Simple string: `"shell"` - built-in tool with defaults
/// 2. Type-based: `{type: "Shell", config: {allowed_commands: [...]}}`
/// 3. Object with source: `{name: "kubectl_get", source: "builtin", config: {...}}`
/// 4. MCP tool: `{name: "read_file", source: "mcp", server: "filesystem"}`
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ToolSpec {
    /// Simple tool name (for backward compatibility)
    /// Assumes built-in if the tool exists, otherwise tries MCP
    Simple(String),

    /// Type-based tool specification (type: Shell/MCP/HTTP)
    /// Format: {type: "Shell", config: {allowed_commands: [...]}}
    TypeBased(TypeBasedToolSpec),

    /// Fully qualified tool specification
    Qualified(QualifiedToolSpec),
}

/// Type-based tool specification
/// Supports: Shell, MCP, HTTP tool types with their configurations
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TypeBasedToolSpec {
    /// Tool type: Shell, MCP, HTTP
    #[serde(rename = "type")]
    pub tool_type: TypeBasedToolType,

    /// Tool-specific configuration
    #[serde(default)]
    pub config: serde_json::Value,
}

/// Tool types for type-based specification
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
pub enum TypeBasedToolType {
    /// Shell command execution with restrictions
    Shell,
    /// MCP server tool
    MCP,
    /// HTTP API tool
    HTTP,
}

impl ToolSpec {
    /// Get the tool name
    pub fn name(&self) -> &str {
        match self {
            ToolSpec::Simple(name) => name,
            ToolSpec::TypeBased(spec) => match spec.tool_type {
                TypeBasedToolType::Shell => "shell",
                TypeBasedToolType::MCP => spec
                    .config
                    .get("name")
                    .and_then(|v| v.as_str())
                    .unwrap_or("mcp"),
                TypeBasedToolType::HTTP => "http",
            },
            ToolSpec::Qualified(spec) => &spec.name,
        }
    }

    /// Check if this is explicitly a built-in tool
    pub fn is_builtin(&self) -> bool {
        match self {
            ToolSpec::Simple(_) => true, // default to builtin for simple names
            ToolSpec::TypeBased(spec) => spec.tool_type == TypeBasedToolType::Shell,
            ToolSpec::Qualified(spec) => spec.source == ToolSource::Builtin,
        }
    }

    /// Check if this is explicitly an MCP tool
    pub fn is_mcp(&self) -> bool {
        match self {
            ToolSpec::Simple(_) => false,
            ToolSpec::TypeBased(spec) => spec.tool_type == TypeBasedToolType::MCP,
            ToolSpec::Qualified(spec) => spec.source == ToolSource::Mcp,
        }
    }

    /// Check if this is an HTTP tool
    pub fn is_http(&self) -> bool {
        match self {
            ToolSpec::Simple(_) => false,
            ToolSpec::TypeBased(spec) => spec.tool_type == TypeBasedToolType::HTTP,
            ToolSpec::Qualified(_) => false,
        }
    }

    /// Check if this is a Shell tool (type-based)
    pub fn is_shell(&self) -> bool {
        match self {
            ToolSpec::Simple(name) => name == "shell",
            ToolSpec::TypeBased(spec) => spec.tool_type == TypeBasedToolType::Shell,
            ToolSpec::Qualified(spec) => spec.name == "shell",
        }
    }

    /// Get the tool type (for type-based specs)
    pub fn tool_type(&self) -> Option<TypeBasedToolType> {
        match self {
            ToolSpec::TypeBased(spec) => Some(spec.tool_type),
            _ => None,
        }
    }

    /// Get the MCP server name (if this is an MCP tool)
    pub fn mcp_server(&self) -> Option<&str> {
        match self {
            ToolSpec::Simple(_) => None,
            ToolSpec::TypeBased(spec) => {
                if spec.tool_type == TypeBasedToolType::MCP {
                    spec.config.get("name").and_then(|v| v.as_str())
                } else {
                    None
                }
            }
            ToolSpec::Qualified(spec) => spec.server.as_deref(),
        }
    }

    /// Get tool configuration
    pub fn config(&self) -> Option<&serde_json::Value> {
        match self {
            ToolSpec::Simple(_) => None,
            ToolSpec::TypeBased(spec) => Some(&spec.config),
            ToolSpec::Qualified(spec) => spec.config.as_ref(),
        }
    }

    /// Get type-based spec if this is a type-based tool
    pub fn type_based_spec(&self) -> Option<&TypeBasedToolSpec> {
        match self {
            ToolSpec::TypeBased(spec) => Some(spec),
            _ => None,
        }
    }
}

/// Fully qualified tool specification
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QualifiedToolSpec {
    /// Tool name
    pub name: String,

    /// Tool source: builtin or mcp
    #[serde(default)]
    pub source: ToolSource,

    /// MCP server name (required if source is "mcp")
    #[serde(skip_serializing_if = "Option::is_none")]
    pub server: Option<String>,

    /// Tool-specific configuration/arguments
    /// For built-in tools: default values, restrictions, etc.
    /// For MCP tools: tool-specific options
    #[serde(skip_serializing_if = "Option::is_none")]
    pub config: Option<serde_json::Value>,

    /// Whether the tool is enabled (default: true)
    #[serde(default = "default_enabled")]
    pub enabled: bool,

    /// Timeout override for this specific tool
    #[serde(skip_serializing_if = "Option::is_none")]
    pub timeout_secs: Option<u64>,
}

fn default_enabled() -> bool {
    true
}

/// Tool source - where the tool comes from
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum ToolSource {
    /// Built-in AOF tool (Rust implementation)
    #[default]
    Builtin,
    /// MCP server tool
    Mcp,
}

/// Core agent trait - the foundation of AOF
///
/// Agents orchestrate models, tools, and memory to accomplish tasks.
/// Implementations should be zero-cost wrappers where possible.
#[async_trait]
pub trait Agent: Send + Sync {
    /// Execute the agent with given input
    async fn execute(&self, ctx: &mut AgentContext) -> AofResult<String>;

    /// Agent metadata
    fn metadata(&self) -> &AgentMetadata;

    /// Initialize agent (setup resources, validate config)
    async fn init(&mut self) -> AofResult<()> {
        Ok(())
    }

    /// Cleanup agent resources
    async fn cleanup(&mut self) -> AofResult<()> {
        Ok(())
    }

    /// Validate agent configuration
    fn validate(&self) -> AofResult<()> {
        Ok(())
    }
}

/// Agent execution context - passed through the execution chain
#[derive(Debug, Clone)]
pub struct AgentContext {
    /// User input/query
    pub input: String,

    /// Conversation history
    pub messages: Vec<Message>,

    /// Session state/variables
    pub state: HashMap<String, serde_json::Value>,

    /// Tool execution results
    pub tool_results: Vec<ToolResult>,

    /// Execution metadata
    pub metadata: ExecutionMetadata,

    /// Optional output schema for structured responses
    pub output_schema: Option<crate::schema::OutputSchema>,

    /// Optional input schema for validation
    pub input_schema: Option<crate::schema::InputSchema>,
}

/// Message in conversation history
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Message {
    pub role: MessageRole,
    pub content: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_calls: Option<Vec<crate::ToolCall>>,
    /// Tool call ID (required for Tool role messages)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool_call_id: Option<String>,
}

/// Message role
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum MessageRole {
    User,
    Assistant,
    System,
    Tool,
}

/// Tool execution result
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ToolResult {
    pub tool_name: String,
    pub result: serde_json::Value,
    pub success: bool,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub error: Option<String>,
}

/// Execution metadata
#[derive(Debug, Clone, Default)]
pub struct ExecutionMetadata {
    /// Tokens used (input)
    pub input_tokens: usize,
    /// Tokens used (output)
    pub output_tokens: usize,
    /// Execution time (ms)
    pub execution_time_ms: u64,
    /// Number of tool calls
    pub tool_calls: usize,
    /// Model used
    pub model: Option<String>,
}

impl AgentContext {
    /// Create new context with input
    pub fn new(input: impl Into<String>) -> Self {
        Self {
            input: input.into(),
            messages: Vec::new(),
            state: HashMap::new(),
            tool_results: Vec::new(),
            metadata: ExecutionMetadata::default(),
            output_schema: None,
            input_schema: None,
        }
    }

    /// Set output schema for structured responses
    pub fn with_output_schema(mut self, schema: crate::schema::OutputSchema) -> Self {
        self.output_schema = Some(schema);
        self
    }

    /// Set input schema for validation
    pub fn with_input_schema(mut self, schema: crate::schema::InputSchema) -> Self {
        self.input_schema = Some(schema);
        self
    }

    /// Add a message to history
    pub fn add_message(&mut self, role: MessageRole, content: impl Into<String>) {
        self.messages.push(Message {
            role,
            content: content.into(),
            tool_calls: None,
            tool_call_id: None,
        });
    }

    /// Get state value
    pub fn get_state<T: serde::de::DeserializeOwned>(&self, key: &str) -> Option<T> {
        self.state
            .get(key)
            .and_then(|v| serde_json::from_value(v.clone()).ok())
    }

    /// Set state value
    pub fn set_state<T: Serialize>(&mut self, key: impl Into<String>, value: T) -> AofResult<()> {
        let json_value = serde_json::to_value(value)?;
        self.state.insert(key.into(), json_value);
        Ok(())
    }
}

/// Agent metadata
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentMetadata {
    /// Agent name
    pub name: String,

    /// Agent description
    pub description: String,

    /// Agent version
    pub version: String,

    /// Supported capabilities
    pub capabilities: Vec<String>,

    /// Custom metadata
    #[serde(flatten)]
    pub extra: HashMap<String, serde_json::Value>,
}

/// Agent configuration
/// Supports both flat format and Kubernetes-style format
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(from = "AgentConfigInput")]
pub struct AgentConfig {
    /// Agent name
    pub name: String,

    /// System prompt (also accepts "instructions" alias)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub system_prompt: Option<String>,

    /// Model to use (can be "provider:model" format or just "model")
    pub model: String,

    /// LLM provider (anthropic, openai, google, ollama, groq, bedrock, azure)
    /// Optional if provider is specified in model string (e.g., "google:gemini-2.0-flash")
    #[serde(skip_serializing_if = "Option::is_none")]
    pub provider: Option<String>,

    /// Tools available to agent
    /// Supports both simple strings (backward compatible) and qualified specs
    /// Simple string: "shell" - uses built-in tool with defaults
    /// Qualified: {name: "shell", source: "builtin", config: {...}}
    #[serde(default)]
    pub tools: Vec<ToolSpec>,

    /// MCP servers configuration (flexible MCP tool sources)
    /// Each server can use stdio, sse, or http transport
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub mcp_servers: Vec<McpServerConfig>,

    /// Memory backend configuration
    /// Supports both simple string format and structured object format
    #[serde(skip_serializing_if = "Option::is_none")]
    pub memory: Option<MemorySpec>,

    /// Maximum number of conversation messages to include in context
    /// Controls token usage by limiting how much history is sent to the LLM.
    /// Default is 10 messages. Set higher for longer context, lower to save tokens.
    #[serde(default = "default_max_context_messages")]
    pub max_context_messages: usize,

    /// Max iterations
    #[serde(default = "default_max_iterations")]
    pub max_iterations: usize,

    /// Temperature (0.0-1.0)
    #[serde(default = "default_temperature")]
    pub temperature: f32,

    /// Max tokens
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_tokens: Option<usize>,

    /// Output schema for structured responses (JSON Schema format)
    /// When specified, agent responses will be validated against this schema
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output_schema: Option<OutputSchemaSpec>,

    /// Custom configuration
    #[serde(flatten)]
    pub extra: HashMap<String, serde_json::Value>,
}

impl AgentConfig {
    /// Get all tool names (for backward compatibility)
    pub fn tool_names(&self) -> Vec<&str> {
        self.tools.iter().map(|t| t.name()).collect()
    }

    /// Get built-in tools only
    pub fn builtin_tools(&self) -> Vec<&ToolSpec> {
        self.tools.iter().filter(|t| t.is_builtin()).collect()
    }

    /// Get MCP tools only
    pub fn mcp_tools(&self) -> Vec<&ToolSpec> {
        self.tools.iter().filter(|t| t.is_mcp()).collect()
    }

    /// Get type-based Shell tools
    pub fn type_based_shell_tools(&self) -> Vec<&TypeBasedToolSpec> {
        self.tools
            .iter()
            .filter_map(|t| match t {
                ToolSpec::TypeBased(spec) if spec.tool_type == TypeBasedToolType::Shell => {
                    Some(spec)
                }
                _ => None,
            })
            .collect()
    }

    /// Get type-based MCP tools
    pub fn type_based_mcp_tools(&self) -> Vec<&TypeBasedToolSpec> {
        self.tools
            .iter()
            .filter_map(|t| match t {
                ToolSpec::TypeBased(spec) if spec.tool_type == TypeBasedToolType::MCP => Some(spec),
                _ => None,
            })
            .collect()
    }

    /// Get type-based HTTP tools
    pub fn type_based_http_tools(&self) -> Vec<&TypeBasedToolSpec> {
        self.tools
            .iter()
            .filter_map(|t| match t {
                ToolSpec::TypeBased(spec) if spec.tool_type == TypeBasedToolType::HTTP => {
                    Some(spec)
                }
                _ => None,
            })
            .collect()
    }

    /// Check if there are any type-based tools
    pub fn has_type_based_tools(&self) -> bool {
        self.tools.iter().any(|t| matches!(t, ToolSpec::TypeBased(_)))
    }

    /// Convert type-based MCP tools to McpServerConfig
    /// Returns configs that can be used with create_mcp_executor_from_config
    pub fn type_based_mcp_to_server_configs(&self) -> Vec<crate::mcp::McpServerConfig> {
        self.type_based_mcp_tools()
            .iter()
            .filter_map(|spec| {
                let config = &spec.config;
                let name = config.get("name")?.as_str()?;

                // Extract command - can be string or array
                let command = config.get("command").and_then(|v| {
                    if let Some(s) = v.as_str() {
                        Some(s.to_string())
                    } else if let Some(arr) = v.as_array() {
                        arr.first().and_then(|v| v.as_str()).map(|s| s.to_string())
                    } else {
                        None
                    }
                });

                // Extract args from command array (skip first element)
                let args: Vec<String> = config
                    .get("command")
                    .and_then(|v| v.as_array())
                    .map(|arr| {
                        arr.iter()
                            .skip(1)
                            .filter_map(|v| v.as_str().map(|s| s.to_string()))
                            .collect()
                    })
                    .unwrap_or_default();

                // Extract env vars
                let env: std::collections::HashMap<String, String> = config
                    .get("env")
                    .and_then(|v| v.as_object())
                    .map(|obj| {
                        obj.iter()
                            .filter_map(|(k, v)| v.as_str().map(|s| (k.clone(), s.to_string())))
                            .collect()
                    })
                    .unwrap_or_default();

                Some(crate::mcp::McpServerConfig {
                    name: name.to_string(),
                    transport: crate::mcp::McpTransport::Stdio,
                    command,
                    args,
                    env,
                    endpoint: None,
                    tools: vec![],
                    init_options: None,
                    timeout_secs: config
                        .get("timeout_seconds")
                        .and_then(|v| v.as_u64())
                        .unwrap_or(30),
                    auto_reconnect: true,
                })
            })
            .collect()
    }

    /// Get Shell tool configuration (allowed_commands, working_directory, etc.)
    pub fn shell_tool_config(&self) -> Option<ShellToolConfig> {
        self.type_based_shell_tools().first().map(|spec| {
            let config = &spec.config;
            ShellToolConfig {
                allowed_commands: config
                    .get("allowed_commands")
                    .and_then(|v| v.as_array())
                    .map(|arr| {
                        arr.iter()
                            .filter_map(|v| v.as_str().map(|s| s.to_string()))
                            .collect()
                    })
                    .unwrap_or_default(),
                working_directory: config
                    .get("working_directory")
                    .and_then(|v| v.as_str())
                    .map(|s| s.to_string()),
                timeout_seconds: config
                    .get("timeout_seconds")
                    .and_then(|v| v.as_u64())
                    .map(|n| n as u32),
            }
        })
    }

    /// Get HTTP tool configuration
    pub fn http_tool_config(&self) -> Option<HttpToolConfig> {
        self.type_based_http_tools().first().map(|spec| {
            let config = &spec.config;
            HttpToolConfig {
                base_url: config
                    .get("base_url")
                    .and_then(|v| v.as_str())
                    .map(|s| s.to_string()),
                timeout_seconds: config
                    .get("timeout_seconds")
                    .and_then(|v| v.as_u64())
                    .map(|n| n as u32),
                allowed_methods: config
                    .get("allowed_methods")
                    .and_then(|v| v.as_array())
                    .map(|arr| {
                        arr.iter()
                            .filter_map(|v| v.as_str().map(|s| s.to_string()))
                            .collect()
                    })
                    .unwrap_or_default(),
            }
        })
    }
}

/// Shell tool configuration extracted from type-based spec
#[derive(Debug, Clone, Default)]
pub struct ShellToolConfig {
    pub allowed_commands: Vec<String>,
    pub working_directory: Option<String>,
    pub timeout_seconds: Option<u32>,
}

/// HTTP tool configuration extracted from type-based spec
#[derive(Debug, Clone, Default)]
pub struct HttpToolConfig {
    pub base_url: Option<String>,
    pub timeout_seconds: Option<u32>,
    pub allowed_methods: Vec<String>,
}

/// Internal type for flexible config parsing
/// Supports both flat format and Kubernetes-style format
#[derive(Debug, Clone, Deserialize)]
#[serde(untagged)]
enum AgentConfigInput {
    /// Flat format (original) - try this first since it has required fields
    Flat(FlatAgentConfig),
    /// Kubernetes-style format with apiVersion, kind, metadata, spec
    Kubernetes(KubernetesConfig),
}

/// Kubernetes-style config wrapper
#[derive(Debug, Clone, Deserialize)]
struct KubernetesConfig {
    #[serde(rename = "apiVersion")]
    api_version: String,  // Required for K8s format
    kind: String,         // Required for K8s format
    metadata: KubernetesMetadata,
    spec: AgentSpec,
}

#[derive(Debug, Clone, Deserialize)]
struct KubernetesMetadata {
    name: String,
    #[serde(default)]
    labels: HashMap<String, String>,
    #[serde(default)]
    annotations: HashMap<String, String>,
}

#[derive(Debug, Clone, Deserialize)]
struct AgentSpec {
    model: String,
    provider: Option<String>,
    #[serde(alias = "system_prompt")]
    instructions: Option<String>,
    #[serde(default)]
    tools: Vec<ToolSpec>,
    #[serde(default)]
    mcp_servers: Vec<McpServerConfig>,
    memory: Option<MemorySpec>,
    #[serde(default = "default_max_context_messages")]
    max_context_messages: usize,
    #[serde(default = "default_max_iterations")]
    max_iterations: usize,
    #[serde(default = "default_temperature")]
    temperature: f32,
    max_tokens: Option<usize>,
    output_schema: Option<OutputSchemaSpec>,
    #[serde(flatten)]
    extra: HashMap<String, serde_json::Value>,
}

#[derive(Debug, Clone, Deserialize)]
struct FlatAgentConfig {
    name: String,
    #[serde(alias = "instructions")]
    system_prompt: Option<String>,
    model: String,
    provider: Option<String>,
    #[serde(default)]
    tools: Vec<ToolSpec>,
    #[serde(default)]
    mcp_servers: Vec<McpServerConfig>,
    memory: Option<MemorySpec>,
    #[serde(default = "default_max_context_messages")]
    max_context_messages: usize,
    #[serde(default = "default_max_iterations")]
    max_iterations: usize,
    #[serde(default = "default_temperature")]
    temperature: f32,
    max_tokens: Option<usize>,
    output_schema: Option<OutputSchemaSpec>,
    #[serde(flatten)]
    extra: HashMap<String, serde_json::Value>,
}

impl From<AgentConfigInput> for AgentConfig {
    fn from(input: AgentConfigInput) -> Self {
        match input {
            AgentConfigInput::Flat(flat) => AgentConfig {
                name: flat.name,
                system_prompt: flat.system_prompt,
                model: flat.model,
                provider: flat.provider,
                tools: flat.tools,
                mcp_servers: flat.mcp_servers,
                memory: flat.memory,
                max_context_messages: flat.max_context_messages,
                max_iterations: flat.max_iterations,
                temperature: flat.temperature,
                max_tokens: flat.max_tokens,
                output_schema: flat.output_schema,
                extra: flat.extra,
            },
            AgentConfigInput::Kubernetes(k8s) => {
                AgentConfig {
                    name: k8s.metadata.name,
                    system_prompt: k8s.spec.instructions,
                    model: k8s.spec.model,
                    provider: k8s.spec.provider,
                    tools: k8s.spec.tools,
                    mcp_servers: k8s.spec.mcp_servers,
                    memory: k8s.spec.memory,
                    max_context_messages: k8s.spec.max_context_messages,
                    max_iterations: k8s.spec.max_iterations,
                    temperature: k8s.spec.temperature,
                    max_tokens: k8s.spec.max_tokens,
                    output_schema: k8s.spec.output_schema,
                    extra: k8s.spec.extra,
                }
            }
        }
    }
}

fn default_max_iterations() -> usize {
    10
}

fn default_max_context_messages() -> usize {
    10
}

fn default_temperature() -> f32 {
    0.7
}

/// Reference-counted agent
pub type AgentRef = Arc<dyn Agent>;

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

    #[test]
    fn test_agent_context_new() {
        let ctx = AgentContext::new("Hello, world!");
        assert_eq!(ctx.input, "Hello, world!");
        assert!(ctx.messages.is_empty());
        assert!(ctx.state.is_empty());
        assert!(ctx.tool_results.is_empty());
    }

    #[test]
    fn test_agent_context_add_message() {
        let mut ctx = AgentContext::new("test");
        ctx.add_message(MessageRole::User, "user message");
        ctx.add_message(MessageRole::Assistant, "assistant response");

        assert_eq!(ctx.messages.len(), 2);
        assert_eq!(ctx.messages[0].role, MessageRole::User);
        assert_eq!(ctx.messages[0].content, "user message");
        assert_eq!(ctx.messages[1].role, MessageRole::Assistant);
        assert_eq!(ctx.messages[1].content, "assistant response");
    }

    #[test]
    fn test_agent_context_state() {
        let mut ctx = AgentContext::new("test");

        // Set string state
        ctx.set_state("name", "test_agent").unwrap();
        let name: Option<String> = ctx.get_state("name");
        assert_eq!(name, Some("test_agent".to_string()));

        // Set numeric state
        ctx.set_state("count", 42i32).unwrap();
        let count: Option<i32> = ctx.get_state("count");
        assert_eq!(count, Some(42));

        // Get non-existent key
        let missing: Option<String> = ctx.get_state("missing");
        assert!(missing.is_none());
    }

    #[test]
    fn test_message_role_serialization() {
        let user = MessageRole::User;
        let serialized = serde_json::to_string(&user).unwrap();
        assert_eq!(serialized, "\"user\"");

        let deserialized: MessageRole = serde_json::from_str("\"assistant\"").unwrap();
        assert_eq!(deserialized, MessageRole::Assistant);
    }

    #[test]
    fn test_agent_config_defaults() {
        let yaml = r#"
            name: test-agent
            model: claude-3-5-sonnet
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.name, "test-agent");
        assert_eq!(config.model, "claude-3-5-sonnet");
        assert_eq!(config.max_iterations, 10); // default
        assert_eq!(config.temperature, 0.7); // default
        assert!(config.tools.is_empty());
        assert!(config.system_prompt.is_none());
    }

    #[test]
    fn test_agent_config_full() {
        let yaml = r#"
            name: full-agent
            model: gpt-4
            system_prompt: "You are a helpful assistant."
            tools:
              - read_file
              - write_file
            max_iterations: 20
            temperature: 0.5
            max_tokens: 4096
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.name, "full-agent");
        assert_eq!(config.model, "gpt-4");
        assert_eq!(config.system_prompt, Some("You are a helpful assistant.".to_string()));
        assert_eq!(config.tool_names(), vec!["read_file", "write_file"]);
        assert_eq!(config.max_iterations, 20);
        assert_eq!(config.temperature, 0.5);
        assert_eq!(config.max_tokens, Some(4096));
    }

    #[test]
    fn test_tool_spec_simple() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            tools:
              - shell
              - kubectl_get
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.tools.len(), 2);
        assert_eq!(config.tools[0].name(), "shell");
        assert!(config.tools[0].is_builtin());
        assert!(!config.tools[0].is_mcp());
    }

    #[test]
    fn test_tool_spec_qualified_builtin() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            tools:
              - name: shell
                source: builtin
                config:
                  blocked_commands:
                    - rm -rf
                  timeout_secs: 60
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.tools.len(), 1);
        assert_eq!(config.tools[0].name(), "shell");
        assert!(config.tools[0].is_builtin());
        assert!(config.tools[0].config().is_some());
    }

    #[test]
    fn test_tool_spec_qualified_mcp() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            tools:
              - name: read_file
                source: mcp
                server: filesystem
                config:
                  allowed_paths:
                    - /workspace
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.tools.len(), 1);
        assert_eq!(config.tools[0].name(), "read_file");
        assert!(config.tools[0].is_mcp());
        assert_eq!(config.tools[0].mcp_server(), Some("filesystem"));
    }

    #[test]
    fn test_tool_spec_mixed() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            tools:
              # Simple builtin
              - shell
              # Qualified builtin with config
              - name: kubectl_get
                source: builtin
                timeout_secs: 120
              # MCP tool
              - name: github_search
                source: mcp
                server: github
            mcp_servers:
              - name: github
                command: npx
                args: ["@modelcontextprotocol/server-github"]
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.tools.len(), 3);

        // Check builtin tools
        let builtin_tools = config.builtin_tools();
        assert_eq!(builtin_tools.len(), 2);

        // Check MCP tools
        let mcp_tools = config.mcp_tools();
        assert_eq!(mcp_tools.len(), 1);
        assert_eq!(mcp_tools[0].mcp_server(), Some("github"));
    }

    #[test]
    fn test_tool_spec_type_based_shell() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            tools:
              - type: Shell
                config:
                  allowed_commands:
                    - kubectl
                    - helm
                  working_directory: /tmp
                  timeout_seconds: 30
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.tools.len(), 1);
        assert_eq!(config.tools[0].name(), "shell");
        assert!(config.tools[0].is_shell());
        assert!(config.tools[0].is_builtin());
        assert!(config.tools[0].config().is_some());

        let config_val = config.tools[0].config().unwrap();
        assert!(config_val.get("allowed_commands").is_some());
    }

    #[test]
    fn test_tool_spec_type_based_mcp() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            tools:
              - type: MCP
                config:
                  name: kubectl-mcp
                  command: ["npx", "-y", "@modelcontextprotocol/server-kubectl"]
                  env:
                    KUBECONFIG: "${KUBECONFIG}"
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.tools.len(), 1);
        assert!(config.tools[0].is_mcp());
        assert_eq!(config.tools[0].mcp_server(), Some("kubectl-mcp"));
    }

    #[test]
    fn test_tool_spec_type_based_http() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            tools:
              - type: HTTP
                config:
                  base_url: http://localhost:8080
                  timeout_seconds: 10
                  allowed_methods: [GET, POST]
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.tools.len(), 1);
        assert_eq!(config.tools[0].name(), "http");
        assert!(config.tools[0].is_http());

        let config_val = config.tools[0].config().unwrap();
        assert_eq!(config_val.get("base_url").unwrap(), "http://localhost:8080");
    }

    #[test]
    fn test_tool_spec_type_based_mixed() {
        // This is the exact format from the user's final_agents.yaml
        let yaml = r#"
            apiVersion: aof.dev/v1
            kind: Agent
            metadata:
              name: k8s-helper
              labels:
                purpose: operations
            spec:
              model: google:gemini-2.5-flash
              instructions: You are a K8s helper.
              tools:
                - type: Shell
                  config:
                    allowed_commands:
                      - kubectl
                      - helm
                    working_directory: /tmp
                    timeout_seconds: 30
                - type: MCP
                  config:
                    name: kubectl-mcp
                    command: ["npx", "-y", "@modelcontextprotocol/server-kubectl"]
                - type: HTTP
                  config:
                    base_url: http://localhost
                    timeout_seconds: 10
              memory:
                type: File
                config:
                  path: ./k8s-helper-memory.json
                  max_messages: 50
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.name, "k8s-helper");
        assert_eq!(config.tools.len(), 3);

        // First tool: Shell
        assert!(config.tools[0].is_shell());
        assert!(config.tools[0].is_builtin());

        // Second tool: MCP
        assert!(config.tools[1].is_mcp());
        assert_eq!(config.tools[1].mcp_server(), Some("kubectl-mcp"));

        // Third tool: HTTP
        assert!(config.tools[2].is_http());

        // Memory
        assert!(config.memory.is_some());
        let memory = config.memory.as_ref().unwrap();
        assert!(memory.is_file());
        assert_eq!(memory.path(), Some("./k8s-helper-memory.json".to_string()));
    }

    #[test]
    fn test_tool_result_serialization() {
        let result = ToolResult {
            tool_name: "test_tool".to_string(),
            result: serde_json::json!({"output": "success"}),
            success: true,
            error: None,
        };

        let json = serde_json::to_string(&result).unwrap();
        assert!(json.contains("test_tool"));
        assert!(json.contains("success"));

        let deserialized: ToolResult = serde_json::from_str(&json).unwrap();
        assert_eq!(deserialized.tool_name, "test_tool");
        assert!(deserialized.success);
    }

    #[test]
    fn test_execution_metadata_default() {
        let meta = ExecutionMetadata::default();
        assert_eq!(meta.input_tokens, 0);
        assert_eq!(meta.output_tokens, 0);
        assert_eq!(meta.execution_time_ms, 0);
        assert_eq!(meta.tool_calls, 0);
        assert!(meta.model.is_none());
    }

    #[test]
    fn test_agent_metadata_serialization() {
        let meta = AgentMetadata {
            name: "test".to_string(),
            description: "A test agent".to_string(),
            version: "1.0.0".to_string(),
            capabilities: vec!["coding".to_string(), "testing".to_string()],
            extra: HashMap::new(),
        };

        let json = serde_json::to_string(&meta).unwrap();
        let deserialized: AgentMetadata = serde_json::from_str(&json).unwrap();

        assert_eq!(deserialized.name, "test");
        assert_eq!(deserialized.capabilities.len(), 2);
    }

    #[test]
    fn test_agent_config_with_mcp_servers() {
        let yaml = r#"
            name: mcp-agent
            model: gpt-4
            mcp_servers:
              - name: filesystem
                transport: stdio
                command: npx
                args:
                  - "@anthropic-ai/mcp-server-fs"
                env:
                  MCP_FS_ROOT: /workspace
              - name: remote
                transport: sse
                endpoint: http://localhost:3000/mcp
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.name, "mcp-agent");
        assert_eq!(config.mcp_servers.len(), 2);

        // Check first server (stdio)
        let fs_server = &config.mcp_servers[0];
        assert_eq!(fs_server.name, "filesystem");
        assert_eq!(fs_server.transport, crate::mcp::McpTransport::Stdio);
        assert_eq!(fs_server.command, Some("npx".to_string()));
        assert_eq!(fs_server.args.len(), 1);
        assert!(fs_server.env.contains_key("MCP_FS_ROOT"));

        // Check second server (sse)
        let remote_server = &config.mcp_servers[1];
        assert_eq!(remote_server.name, "remote");
        assert_eq!(remote_server.transport, crate::mcp::McpTransport::Sse);
        assert_eq!(remote_server.endpoint, Some("http://localhost:3000/mcp".to_string()));
    }

    #[test]
    fn test_agent_config_k8s_style_with_mcp_servers() {
        let yaml = r#"
            apiVersion: aof.dev/v1
            kind: Agent
            metadata:
              name: k8s-mcp-agent
              labels:
                env: test
            spec:
              model: claude-3-5-sonnet
              instructions: Test agent with MCP
              mcp_servers:
                - name: tools
                  command: ./my-mcp-server
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.name, "k8s-mcp-agent");
        assert_eq!(config.mcp_servers.len(), 1);
        assert_eq!(config.mcp_servers[0].name, "tools");
        assert_eq!(config.mcp_servers[0].command, Some("./my-mcp-server".to_string()));
    }

    #[test]
    fn test_memory_spec_simple_string() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            memory: "file:./memory.json"
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert!(config.memory.is_some());
        let memory = config.memory.as_ref().unwrap();
        assert_eq!(memory.memory_type(), "file");
        assert_eq!(memory.path(), Some("./memory.json".to_string()));
        assert!(memory.is_file());
        assert!(!memory.is_in_memory());
    }

    #[test]
    fn test_memory_spec_simple_in_memory() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            memory: "in_memory"
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert!(config.memory.is_some());
        let memory = config.memory.as_ref().unwrap();
        assert_eq!(memory.memory_type(), "in_memory");
        assert!(memory.is_in_memory());
        assert!(!memory.is_file());
    }

    #[test]
    fn test_memory_spec_structured_file() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            memory:
              type: File
              config:
                path: ./k8s-helper-memory.json
                max_messages: 50
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert!(config.memory.is_some());
        let memory = config.memory.as_ref().unwrap();
        assert_eq!(memory.memory_type(), "File");
        assert_eq!(memory.path(), Some("./k8s-helper-memory.json".to_string()));
        assert_eq!(memory.max_messages(), Some(50));
        assert!(memory.is_file());
    }

    #[test]
    fn test_memory_spec_structured_in_memory() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
            memory:
              type: InMemory
              config:
                max_messages: 100
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert!(config.memory.is_some());
        let memory = config.memory.as_ref().unwrap();
        assert_eq!(memory.memory_type(), "InMemory");
        assert!(memory.is_in_memory());
        assert_eq!(memory.max_messages(), Some(100));
    }

    #[test]
    fn test_memory_spec_k8s_style_with_structured_memory() {
        // This is the exact format from the bug report
        let yaml = r#"
            apiVersion: aof.dev/v1
            kind: Agent
            metadata:
              name: k8s-helper
              labels:
                purpose: operations
                team: platform
            spec:
              model: google:gemini-2.5-flash
              instructions: |
                You are a Kubernetes helper.
              memory:
                type: File
                config:
                  path: ./k8s-helper-memory.json
                  max_messages: 50
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();

        assert_eq!(config.name, "k8s-helper");
        assert!(config.memory.is_some());
        let memory = config.memory.as_ref().unwrap();
        assert_eq!(memory.memory_type(), "File");
        assert_eq!(memory.path(), Some("./k8s-helper-memory.json".to_string()));
        assert_eq!(memory.max_messages(), Some(50));
    }

    #[test]
    fn test_memory_spec_no_memory() {
        let yaml = r#"
            name: test-agent
            model: gpt-4
        "#;
        let config: AgentConfig = serde_yaml::from_str(yaml).unwrap();
        assert!(config.memory.is_none());
    }
}