symbi-dsl 1.12.0

Symbi DSL - AI-native programming language with Tree-sitter integration
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
//! Symbiont DSL Parser Library
//!
//! This library provides parsing capabilities for the Symbiont DSL using Tree-sitter.

use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::path::{Path, PathBuf};
use std::time::Duration;
use tree_sitter::{Language, Node, Parser, Tree};

/// Canonical file extension for Symbiont agent definitions.
pub const SYMBI_EXTENSION: &str = "symbi";

/// Legacy file extension for Symbiont agent definitions. Continues to be
/// recognized indefinitely for backward compatibility; new files should
/// use `SYMBI_EXTENSION`.
pub const LEGACY_DSL_EXTENSION: &str = "dsl";

/// Returns true if the given path has a Symbiont agent definition extension
/// (either canonical `.symbi` or legacy `.dsl`).
pub fn is_symbi_file(path: &Path) -> bool {
    path.extension()
        .and_then(|ext| ext.to_str())
        .is_some_and(|ext| ext == SYMBI_EXTENSION || ext == LEGACY_DSL_EXTENSION)
}

/// Strip a recognized Symbiont agent extension (`.symbi` or `.dsl`) from a
/// filename, returning the stem. Returns `None` if the name has neither
/// extension.
pub fn strip_symbi_extension(name: &str) -> Option<&str> {
    name.strip_suffix(".symbi")
        .or_else(|| name.strip_suffix(".dsl"))
}

/// Maximum AST traversal depth. The Symbi DSL produces shallow trees in
/// practice (top-level block → attribute list → value); 256 gives generous
/// headroom for future extensions while still bounding stack usage for any
/// hand-crafted adversarial input. Exceeding this depth aborts the traversal
/// and emits a `tracing::warn!`.
const MAX_AST_DEPTH: usize = 256;

/// Sandbox tier enumeration representing different isolation levels
/// This mirrors the SandboxTier enum in the runtime crate to avoid circular dependencies
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum SandboxTier {
    /// Docker container sandbox
    Docker,
    /// gVisor sandbox for enhanced security
    GVisor,
    /// Firecracker microVM sandbox
    Firecracker,
    /// E2B.dev cloud sandbox
    E2B,
}

impl std::fmt::Display for SandboxTier {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            SandboxTier::Docker => write!(f, "docker"),
            SandboxTier::GVisor => write!(f, "gvisor"),
            SandboxTier::Firecracker => write!(f, "firecracker"),
            SandboxTier::E2B => write!(f, "e2b"),
        }
    }
}

// External function to get the language definition from the tree-sitter grammar
// This is generated by the tree-sitter build process and must be linked at compile time
extern "C" {
    fn tree_sitter_symbiont() -> Language;
}

/// Parse Symbiont DSL code and return the syntax tree
///
/// # Safety
///
/// This function uses an `unsafe` block to call the FFI function `tree_sitter_symbiont()`.
/// This is safe because:
///
/// 1. **Function Origin**: The `tree_sitter_symbiont()` function is generated by the
///    tree-sitter build process (build.rs) and follows the tree-sitter C ABI contract.
///
/// 2. **Invariants**: The tree-sitter library guarantees that language functions:
///    - Return a valid, immutable `Language` struct
///    - Are thread-safe and can be called multiple times
///    - Do not perform any unsafe memory operations
///    - Do not modify global state
///
/// 3. **Build Verification**: The language grammar is validated at build time by
///    tree-sitter's build system. Invalid grammars will fail to compile.
///
/// 4. **FFI Contract**: The tree-sitter `Language` type is an opaque handle that is
///    managed entirely by the tree-sitter library, ensuring memory safety.
///
/// # Panics
///
/// This function will panic if:
/// - The tree-sitter grammar was not properly linked at build time
/// - The language is incompatible with the tree-sitter runtime version
///
/// These are build-time errors that should be caught during development.
pub fn parse_dsl(source_code: &str) -> Result<Tree, Box<dyn std::error::Error>> {
    // SAFETY: See function documentation above. The tree_sitter_symbiont() function
    // is generated by tree-sitter's build system and follows all necessary safety
    // invariants for FFI calls. The returned Language is an opaque handle that is
    // fully managed by the tree-sitter library.
    let language = unsafe { tree_sitter_symbiont() };

    let mut parser = Parser::new();
    parser.set_language(language)?;

    let tree = parser
        .parse(source_code, None)
        .ok_or("Failed to parse DSL code")?;

    Ok(tree)
}

/// Print the AST in a readable format
pub fn print_ast(node: Node, source: &str, depth: usize) {
    let indent = "  ".repeat(depth);
    let node_text = if node.child_count() == 0 {
        let start = node.start_byte();
        let end = node.end_byte();
        format!(" \"{}\"", &source[start..end].replace('\n', "\\n"))
    } else {
        String::new()
    };

    println!(
        "{}{}: {}{}",
        indent,
        node.kind(),
        node_text,
        if node.is_error() { " [ERROR]" } else { "" }
    );

    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            print_ast(child, source, depth + 1);
        }
    }
}

/// WithBlock attribute structure
#[derive(Debug, Clone, PartialEq)]
pub struct WithAttribute {
    pub name: String,
    pub value: String,
}

/// WithBlock structure containing sandbox configuration
#[derive(Debug, Clone, PartialEq)]
pub struct WithBlock {
    pub attributes: Vec<WithAttribute>,
    pub sandbox_tier: Option<SandboxTier>,
    pub timeout: Option<u64>,
}

impl WithBlock {
    pub fn new() -> Self {
        Self {
            attributes: Vec::new(),
            sandbox_tier: None,
            timeout: None,
        }
    }

    /// Parse sandbox tier from string value, validating against known tiers
    pub fn parse_sandbox_tier(value: &str) -> Result<SandboxTier, String> {
        // Remove quotes if present
        let cleaned_value = value.trim_matches('"');
        match cleaned_value.to_lowercase().as_str() {
            "docker" => Ok(SandboxTier::Docker),
            "gvisor" => Ok(SandboxTier::GVisor),
            "firecracker" => Ok(SandboxTier::Firecracker),
            "e2b" => Ok(SandboxTier::E2B),
            _ => Err(format!(
                "Invalid sandbox tier: {}. Valid options are: docker, gvisor, firecracker, e2b",
                value
            )),
        }
    }
}

impl Default for WithBlock {
    fn default() -> Self {
        Self::new()
    }
}

/// Extract metadata from parsed AST
pub fn extract_metadata(tree: &Tree, source: &str) -> HashMap<String, String> {
    let mut metadata = HashMap::new();
    let root_node = tree.root_node();

    // Walk through the tree to find metadata blocks
    let _cursor = root_node.walk();

    fn traverse_for_metadata(
        node: Node,
        source: &str,
        metadata: &mut HashMap<String, String>,
        depth: usize,
    ) {
        if depth > MAX_AST_DEPTH {
            tracing::warn!(
                "DSL metadata traversal aborted: depth {} exceeds MAX_AST_DEPTH {}",
                depth,
                MAX_AST_DEPTH
            );
            return;
        }
        if node.kind() == "metadata_block" {
            // Extract metadata key-value pairs
            for i in 0..node.child_count() {
                if let Some(child) = node.child(i) {
                    if child.kind() == "metadata_pair" {
                        if let (Some(key_node), Some(value_node)) = (child.child(0), child.child(2))
                        {
                            let key =
                                source[key_node.start_byte()..key_node.end_byte()].to_string();
                            let value =
                                source[value_node.start_byte()..value_node.end_byte()].to_string();
                            metadata.insert(key, value);
                        }
                    }
                }
            }
        }

        // Recursively traverse children
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                traverse_for_metadata(child, source, metadata, depth + 1);
            }
        }
    }

    traverse_for_metadata(root_node, source, &mut metadata, 0);
    metadata
}

/// Extract with blocks from parsed AST
pub fn extract_with_blocks(tree: &Tree, source: &str) -> Result<Vec<WithBlock>, String> {
    let mut with_blocks = Vec::new();
    let root_node = tree.root_node();

    fn traverse_for_with_blocks(
        node: Node,
        source: &str,
        with_blocks: &mut Vec<WithBlock>,
        depth: usize,
    ) -> Result<(), String> {
        if depth > MAX_AST_DEPTH {
            return Err(format!(
                "DSL AST traversal depth exceeded MAX_AST_DEPTH ({})",
                MAX_AST_DEPTH
            ));
        }
        if node.kind() == "with_block" {
            let mut with_block = WithBlock::new();

            // Extract with attributes
            for i in 0..node.child_count() {
                if let Some(child) = node.child(i) {
                    if child.kind() == "with_attribute" {
                        if let (Some(name_node), Some(value_node)) =
                            (child.child(0), child.child(2))
                        {
                            let name =
                                source[name_node.start_byte()..name_node.end_byte()].to_string();
                            let value =
                                source[value_node.start_byte()..value_node.end_byte()].to_string();

                            let attribute = WithAttribute {
                                name: name.clone(),
                                value: value.clone(),
                            };
                            with_block.attributes.push(attribute);

                            // Parse specific attributes
                            match name.as_str() {
                                "sandbox" => match WithBlock::parse_sandbox_tier(&value) {
                                    Ok(tier) => with_block.sandbox_tier = Some(tier),
                                    Err(e) => return Err(e),
                                },
                                "timeout" => {
                                    let timeout_str = value.trim_matches('"');
                                    // Normalize DSL time suffixes to humantime units
                                    let normalized = if let Some(n) =
                                        timeout_str.strip_suffix(".seconds")
                                    {
                                        format!("{}s", n.trim())
                                    } else if let Some(n) = timeout_str.strip_suffix(".minutes") {
                                        format!("{}m", n.trim())
                                    } else if let Some(n) = timeout_str.strip_suffix(".hours") {
                                        format!("{}h", n.trim())
                                    } else {
                                        timeout_str.to_string()
                                    };

                                    // Try humantime first, fall back to bare number as seconds
                                    if let Ok(duration) = humantime::parse_duration(&normalized) {
                                        with_block.timeout = Some(duration.as_secs());
                                    } else if let Ok(seconds) = normalized.parse::<u64>() {
                                        with_block.timeout = Some(seconds);
                                    } else {
                                        return Err(format!("Invalid timeout value: {}", value));
                                    }
                                }
                                _ => {} // Other attributes are stored but not specially parsed
                            }
                        }
                    }
                }
            }

            with_blocks.push(with_block);
        }

        // Recursively traverse children
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                traverse_for_with_blocks(child, source, with_blocks, depth + 1)?;
            }
        }

        Ok(())
    }

    traverse_for_with_blocks(root_node, source, &mut with_blocks, 0)?;
    Ok(with_blocks)
}

/// A parsed schedule definition from DSL `schedule` blocks.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ScheduleDefinition {
    /// Name identifier for this schedule.
    pub name: String,
    /// Cron expression (mutually exclusive with `at`).
    pub cron: Option<String>,
    /// One-shot datetime (mutually exclusive with `cron`).
    pub at: Option<String>,
    /// IANA timezone (e.g. "America/New_York"). Defaults to "UTC".
    pub timezone: String,
    /// Name of the agent to run on this schedule.
    pub agent: Option<String>,
    /// Policy name to apply to scheduled runs.
    pub policy: Option<String>,
    /// Audit level: "none", "errors_only", or "all_operations".
    pub audit: Option<String>,
    /// If true, job runs once then disables.
    pub one_shot: bool,
    /// Optional delivery target (e.g. "slack://channel").
    pub deliver: Option<String>,
}

impl ScheduleDefinition {
    fn new(name: String) -> Self {
        Self {
            name,
            cron: None,
            at: None,
            timezone: "UTC".to_string(),
            agent: None,
            policy: None,
            audit: None,
            one_shot: false,
            deliver: None,
        }
    }
}

/// Extract schedule definitions from parsed AST.
///
/// Looks for `schedule <name> { key: value, ... }` blocks and returns
/// structured `ScheduleDefinition` values. Validates that either `cron`
/// or `at` is present (but not both).
pub fn extract_schedule_definitions(
    tree: &Tree,
    source: &str,
) -> Result<Vec<ScheduleDefinition>, String> {
    let mut schedules = Vec::new();
    let root_node = tree.root_node();

    fn traverse_for_schedules(
        node: Node,
        source: &str,
        schedules: &mut Vec<ScheduleDefinition>,
        depth: usize,
    ) -> Result<(), String> {
        if depth > MAX_AST_DEPTH {
            return Err(format!(
                "DSL AST traversal depth exceeded MAX_AST_DEPTH ({})",
                MAX_AST_DEPTH
            ));
        }
        if node.kind() == "schedule_definition" {
            // Child 0 = "schedule" keyword, Child 1 = identifier, then "{", properties, "}"
            let name_node = node
                .child(1)
                .ok_or_else(|| "schedule_definition missing name".to_string())?;
            let name = source[name_node.start_byte()..name_node.end_byte()].to_string();
            let mut sched = ScheduleDefinition::new(name);

            for i in 0..node.child_count() {
                if let Some(child) = node.child(i) {
                    if child.kind() == "schedule_property" {
                        // Child 0 = key identifier, child 1 = ":", child 2 = value
                        if let (Some(key_node), Some(val_node)) = (child.child(0), child.child(2)) {
                            let key =
                                source[key_node.start_byte()..key_node.end_byte()].to_string();
                            let raw_value =
                                source[val_node.start_byte()..val_node.end_byte()].to_string();
                            // Strip surrounding quotes if present.
                            let value = raw_value.trim_matches('"').to_string();

                            match key.as_str() {
                                "cron" => sched.cron = Some(value),
                                "at" => sched.at = Some(value),
                                "timezone" => sched.timezone = value,
                                "agent" => sched.agent = Some(value),
                                "policy" => sched.policy = Some(value),
                                "audit" => sched.audit = Some(value),
                                "one_shot" => sched.one_shot = value == "true",
                                "deliver" => sched.deliver = Some(value),
                                _ => {
                                    // Unknown properties are silently ignored for forward compat.
                                }
                            }
                        }
                    }
                }
            }

            // Validate: must have cron or at, not both.
            match (&sched.cron, &sched.at) {
                (None, None) => {
                    return Err(format!(
                        "schedule '{}': must specify either 'cron' or 'at'",
                        sched.name
                    ));
                }
                (Some(_), Some(_)) => {
                    return Err(format!(
                        "schedule '{}': cannot specify both 'cron' and 'at'",
                        sched.name
                    ));
                }
                _ => {}
            }

            schedules.push(sched);
        }

        // Recurse into children.
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                traverse_for_schedules(child, source, schedules, depth + 1)?;
            }
        }

        Ok(())
    }

    traverse_for_schedules(root_node, source, &mut schedules, 0)?;
    Ok(schedules)
}

/// Memory store backend type.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum MemoryStoreType {
    /// Markdown-file-based memory store.
    Markdown,
}

/// Search configuration for a memory store.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct MemorySearchConfig {
    /// Weight for vector/semantic similarity (0.0–1.0).
    pub vector_weight: f64,
    /// Weight for keyword/BM25 matching (0.0–1.0).
    pub keyword_weight: f64,
}

impl Default for MemorySearchConfig {
    fn default() -> Self {
        Self {
            vector_weight: 0.7,
            keyword_weight: 0.3,
        }
    }
}

/// A parsed memory definition from DSL `memory` blocks.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct MemoryDefinition {
    /// Name identifier for this memory store.
    pub name: String,
    /// Backend store type.
    pub store: MemoryStoreType,
    /// Filesystem path for the memory store.
    pub path: PathBuf,
    /// How long to retain memory entries.
    pub retention: Duration,
    /// Optional search configuration.
    pub search: Option<MemorySearchConfig>,
}

impl MemoryDefinition {
    fn new(name: String) -> Self {
        Self {
            name,
            store: MemoryStoreType::Markdown,
            path: PathBuf::from("data/agents"),
            retention: Duration::from_secs(90 * 86400),
            search: None,
        }
    }
}

/// Extract memory definitions from parsed AST.
///
/// Looks for `memory <name> { key value, ... }` blocks and returns
/// structured `MemoryDefinition` values.
pub fn extract_memory_definitions(
    tree: &Tree,
    source: &str,
) -> Result<Vec<MemoryDefinition>, String> {
    let mut memories = Vec::new();
    let root_node = tree.root_node();

    fn traverse_for_memories(
        node: Node,
        source: &str,
        memories: &mut Vec<MemoryDefinition>,
        depth: usize,
    ) -> Result<(), String> {
        if depth > MAX_AST_DEPTH {
            return Err(format!(
                "DSL AST traversal depth exceeded MAX_AST_DEPTH ({})",
                MAX_AST_DEPTH
            ));
        }
        if node.kind() == "memory_definition" {
            // Child 0 = "memory" keyword, Child 1 = identifier, then "{", properties, "}"
            let name_node = node
                .child(1)
                .ok_or_else(|| "memory_definition missing name".to_string())?;
            let name = source[name_node.start_byte()..name_node.end_byte()].to_string();
            let mut mem = MemoryDefinition::new(name);

            for i in 0..node.child_count() {
                if let Some(child) = node.child(i) {
                    match child.kind() {
                        "memory_property" => {
                            // memory_property: identifier value (space-separated, NO colon)
                            // child(0) = key, child(1) = value
                            if let (Some(key_node), Some(val_node)) =
                                (child.child(0), child.child(1))
                            {
                                let key =
                                    source[key_node.start_byte()..key_node.end_byte()].to_string();
                                let raw_value =
                                    source[val_node.start_byte()..val_node.end_byte()].to_string();
                                let value = raw_value.trim_matches('"').to_string();

                                match key.as_str() {
                                    "store" => match value.to_lowercase().as_str() {
                                        "markdown" => mem.store = MemoryStoreType::Markdown,
                                        _ => {
                                            return Err(format!(
                                                "memory '{}': unknown store type '{}'",
                                                mem.name, value
                                            ));
                                        }
                                    },
                                    "path" => mem.path = PathBuf::from(value),
                                    "retention" => {
                                        mem.retention =
                                            humantime::parse_duration(&value).map_err(|e| {
                                                format!(
                                                    "memory '{}': invalid retention '{}': {}",
                                                    mem.name, value, e
                                                )
                                            })?;
                                    }
                                    _ => {
                                        // Unknown properties are silently ignored for forward compat.
                                    }
                                }
                            }
                        }
                        "memory_search_block" => {
                            // memory_search_block: 'search' '{' repeat(memory_search_property) '}'
                            let mut search = MemorySearchConfig::default();
                            for j in 0..child.child_count() {
                                if let Some(prop_node) = child.child(j) {
                                    if prop_node.kind() == "memory_search_property" {
                                        // memory_search_property: identifier value (space-separated)
                                        // child(0) = key, child(1) = value
                                        if let (Some(key_node), Some(val_node)) =
                                            (prop_node.child(0), prop_node.child(1))
                                        {
                                            let key = source
                                                [key_node.start_byte()..key_node.end_byte()]
                                                .to_string();
                                            let raw_value = source
                                                [val_node.start_byte()..val_node.end_byte()]
                                                .to_string();

                                            match key.as_str() {
                                                "vector_weight" => {
                                                    search.vector_weight = raw_value
                                                        .parse::<f64>()
                                                        .map_err(|e| {
                                                            format!(
                                                                "memory: invalid vector_weight '{}': {}",
                                                                raw_value, e
                                                            )
                                                        })?;
                                                }
                                                "keyword_weight" => {
                                                    search.keyword_weight = raw_value
                                                        .parse::<f64>()
                                                        .map_err(|e| {
                                                            format!(
                                                                "memory: invalid keyword_weight '{}': {}",
                                                                raw_value, e
                                                            )
                                                        })?;
                                                }
                                                _ => {
                                                    // Unknown search properties ignored.
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                            mem.search = Some(search);
                        }
                        _ => {}
                    }
                }
            }

            memories.push(mem);
        }

        // Recurse into children.
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                traverse_for_memories(child, source, memories, depth + 1)?;
            }
        }

        Ok(())
    }

    traverse_for_memories(root_node, source, &mut memories, 0)?;
    Ok(memories)
}

/// Webhook provider type.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum WebhookProvider {
    /// GitHub webhook provider.
    GitHub,
    /// Stripe webhook provider.
    Stripe,
    /// Slack webhook provider.
    Slack,
    /// Custom/unknown webhook provider.
    Custom,
}

impl std::str::FromStr for WebhookProvider {
    type Err = std::convert::Infallible;

    /// Parse a provider name case-insensitively. Unknown providers become `Custom`.
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Ok(match s.to_lowercase().as_str() {
            "github" => WebhookProvider::GitHub,
            "stripe" => WebhookProvider::Stripe,
            "slack" => WebhookProvider::Slack,
            _ => WebhookProvider::Custom,
        })
    }
}

impl WebhookProvider {
    /// Parse a provider name case-insensitively. Unknown providers become `Custom`.
    pub fn parse(s: &str) -> Self {
        s.parse().unwrap()
    }
}

/// Filter configuration for a webhook.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct WebhookFilter {
    /// JSON path expression to match against the webhook payload.
    pub json_path: String,
    /// Exact match value.
    pub equals: Option<String>,
    /// Substring match value.
    pub contains: Option<String>,
}

/// A parsed webhook definition from DSL `webhook` blocks.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct WebhookDefinition {
    /// Name identifier for this webhook.
    pub name: String,
    /// URL path to receive webhooks on.
    pub path: String,
    /// Webhook provider type.
    pub provider: WebhookProvider,
    /// Secret for webhook signature verification.
    pub secret: String,
    /// Name of the agent to invoke on webhook receipt.
    pub agent: Option<String>,
    /// Optional filter to apply to incoming webhook payloads.
    pub filter: Option<WebhookFilter>,
}

impl WebhookDefinition {
    fn new(name: String) -> Self {
        Self {
            name,
            path: String::new(),
            provider: WebhookProvider::Custom,
            secret: String::new(),
            agent: None,
            filter: None,
        }
    }
}

/// Extract webhook definitions from parsed AST.
///
/// Looks for `webhook <name> { key value, ... }` blocks and returns
/// structured `WebhookDefinition` values. Validates that `path` is present.
pub fn extract_webhook_definitions(
    tree: &Tree,
    source: &str,
) -> Result<Vec<WebhookDefinition>, String> {
    let mut webhooks = Vec::new();
    let root_node = tree.root_node();

    /// Apply a key-value pair to the webhook definition.
    fn apply_webhook_property(
        key: &str,
        value: &str,
        webhook: &mut WebhookDefinition,
        has_path: &mut bool,
    ) {
        match key {
            "path" => {
                webhook.path = value.to_string();
                *has_path = true;
            }
            "provider" => {
                webhook.provider = WebhookProvider::parse(value);
            }
            "secret" => webhook.secret = value.to_string(),
            "agent" => webhook.agent = Some(value.to_string()),
            _ => {
                // Unknown properties are silently ignored for forward compat.
            }
        }
    }

    /// Extract key-value pairs from a node, handling both webhook_property nodes
    /// and ERROR nodes that contain identifier pairs (for unquoted values).
    fn extract_webhook_props_from_node(
        node: Node,
        source: &str,
        webhook: &mut WebhookDefinition,
        has_path: &mut bool,
    ) {
        match node.kind() {
            "webhook_property" => {
                // webhook_property: identifier value (space-separated, NO colon)
                // child(0) = key, child(1) = value
                if let (Some(key_node), Some(val_node)) = (node.child(0), node.child(1)) {
                    let key = source[key_node.start_byte()..key_node.end_byte()].to_string();
                    let raw_value = source[val_node.start_byte()..val_node.end_byte()].to_string();
                    let value = raw_value.trim_matches('"').to_string();
                    apply_webhook_property(&key, &value, webhook, has_path);
                }
            }
            "ERROR" => {
                // When tree-sitter encounters an unquoted identifier as a value
                // (e.g. `provider github`), it wraps the pair in an ERROR node
                // with two identifier children. We also recurse to find any
                // webhook_property nodes nested inside the ERROR node.
                let mut i = 0;
                while i < node.child_count() {
                    if let Some(child) = node.child(i) {
                        if child.kind() == "identifier" {
                            // Check if next sibling is also an identifier (unquoted value pair)
                            if let Some(next) = node.child(i + 1) {
                                if next.kind() == "identifier" {
                                    let key =
                                        source[child.start_byte()..child.end_byte()].to_string();
                                    let value =
                                        source[next.start_byte()..next.end_byte()].to_string();
                                    apply_webhook_property(&key, &value, webhook, has_path);
                                    i += 2;
                                    continue;
                                }
                            }
                        } else if child.kind() == "webhook_property" {
                            // Nested webhook_property inside ERROR node
                            extract_webhook_props_from_node(child, source, webhook, has_path);
                        }
                    }
                    i += 1;
                }
            }
            _ => {}
        }
    }

    fn traverse_for_webhooks(
        node: Node,
        source: &str,
        webhooks: &mut Vec<WebhookDefinition>,
        depth: usize,
    ) -> Result<(), String> {
        if depth > MAX_AST_DEPTH {
            return Err(format!(
                "DSL AST traversal depth exceeded MAX_AST_DEPTH ({})",
                MAX_AST_DEPTH
            ));
        }
        if node.kind() == "webhook_definition" {
            // Child 0 = "webhook" keyword, Child 1 = identifier, then "{", properties, "}"
            let name_node = node
                .child(1)
                .ok_or_else(|| "webhook_definition missing name".to_string())?;
            let name = source[name_node.start_byte()..name_node.end_byte()].to_string();
            let mut webhook = WebhookDefinition::new(name);
            let mut has_path = false;

            for i in 0..node.child_count() {
                if let Some(child) = node.child(i) {
                    if child.kind() == "webhook_filter_block" {
                        // webhook_filter_block: 'filter' '{' repeat(webhook_filter_property) '}'
                        let mut json_path = String::new();
                        let mut equals = None;
                        let mut contains = None;

                        for j in 0..child.child_count() {
                            if let Some(prop_node) = child.child(j) {
                                if prop_node.kind() == "webhook_filter_property" {
                                    // webhook_filter_property: identifier value (space-separated)
                                    // child(0) = key, child(1) = value
                                    if let (Some(key_node), Some(val_node)) =
                                        (prop_node.child(0), prop_node.child(1))
                                    {
                                        let key = source
                                            [key_node.start_byte()..key_node.end_byte()]
                                            .to_string();
                                        let raw_value = source
                                            [val_node.start_byte()..val_node.end_byte()]
                                            .to_string();
                                        let value = raw_value.trim_matches('"').to_string();

                                        match key.as_str() {
                                            "json_path" => json_path = value,
                                            "equals" => equals = Some(value),
                                            "contains" => contains = Some(value),
                                            _ => {
                                                // Unknown filter properties ignored.
                                            }
                                        }
                                    }
                                }
                            }
                        }

                        webhook.filter = Some(WebhookFilter {
                            json_path,
                            equals,
                            contains,
                        });
                    } else {
                        extract_webhook_props_from_node(child, source, &mut webhook, &mut has_path);
                    }
                }
            }

            // Validate: path is required.
            if !has_path {
                return Err(format!("webhook '{}': must specify 'path'", webhook.name));
            }

            webhooks.push(webhook);
        }

        // Recurse into children.
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                traverse_for_webhooks(child, source, webhooks, depth + 1)?;
            }
        }

        Ok(())
    }

    traverse_for_webhooks(root_node, source, &mut webhooks, 0)?;
    Ok(webhooks)
}

/// A parsed channel definition from DSL `channel` blocks.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ChannelDefinition {
    pub name: String,
    pub platform: Option<String>,
    pub workspace: Option<String>,
    pub channels: Vec<String>,
    pub default_agent: Option<String>,
    pub dlp_profile: Option<String>,
    pub audit_level: Option<String>,
    pub default_deny: bool,
    pub policy_rules: Vec<ChannelPolicyRule>,
    pub data_classification: Vec<DataClassificationEntry>,
}

impl ChannelDefinition {
    fn new(name: String) -> Self {
        Self {
            name,
            platform: None,
            workspace: None,
            channels: Vec::new(),
            default_agent: None,
            dlp_profile: None,
            audit_level: None,
            default_deny: false,
            policy_rules: Vec::new(),
            data_classification: Vec::new(),
        }
    }
}

/// A policy rule within a channel definition.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ChannelPolicyRule {
    /// Action kind: "allow", "deny", "require", or "audit".
    pub action: String,
    /// Raw expression text (e.g. `invoke("compliance_check")`).
    pub expression: String,
}

/// A data classification entry within a channel definition.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DataClassificationEntry {
    /// Category label (e.g. "pii", "phi", "api_key").
    pub category: String,
    /// Action to take: "redact", "block", "allow".
    pub action: String,
}

/// Extract channel definitions from parsed AST.
///
/// Looks for `channel <name> { ... }` blocks and returns structured
/// `ChannelDefinition` values. Validates that `platform` is present.
pub fn extract_channel_definitions(
    tree: &Tree,
    source: &str,
) -> Result<Vec<ChannelDefinition>, String> {
    let mut channels = Vec::new();
    let root_node = tree.root_node();

    fn extract_array_strings(node: Node, source: &str) -> Vec<String> {
        let mut items = Vec::new();
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                if child.kind() == "expression" || child.kind() == "string" {
                    // For expression nodes, look for the string child
                    let text = source[child.start_byte()..child.end_byte()].to_string();
                    items.push(text.trim_matches('"').to_string());
                } else if child.kind() != "[" && child.kind() != "]" && child.kind() != "," {
                    // Recurse into expression wrappers
                    let nested = extract_array_strings(child, source);
                    items.extend(nested);
                }
            }
        }
        items
    }

    fn traverse_for_channels(
        node: Node,
        source: &str,
        channels: &mut Vec<ChannelDefinition>,
        depth: usize,
    ) -> Result<(), String> {
        if depth > MAX_AST_DEPTH {
            return Err(format!(
                "DSL AST traversal depth exceeded MAX_AST_DEPTH ({})",
                MAX_AST_DEPTH
            ));
        }
        if node.kind() == "channel_definition" {
            let name_node = node
                .child(1)
                .ok_or_else(|| "channel_definition missing name".to_string())?;
            let name = source[name_node.start_byte()..name_node.end_byte()].to_string();
            let mut chan = ChannelDefinition::new(name);

            for i in 0..node.child_count() {
                if let Some(child) = node.child(i) {
                    match child.kind() {
                        "channel_property" => {
                            // Child 0 = key identifier, child 1 = ":", child 2 = value or array
                            if let (Some(key_node), Some(val_node)) =
                                (child.child(0), child.child(2))
                            {
                                let key =
                                    source[key_node.start_byte()..key_node.end_byte()].to_string();

                                if val_node.kind() == "array" {
                                    // Parse array elements
                                    let items = extract_array_strings(val_node, source);
                                    if key == "channels" {
                                        chan.channels = items;
                                    }
                                } else {
                                    let raw_value = source
                                        [val_node.start_byte()..val_node.end_byte()]
                                        .to_string();
                                    let value = raw_value.trim_matches('"').to_string();

                                    match key.as_str() {
                                        "platform" => chan.platform = Some(value),
                                        "workspace" => chan.workspace = Some(value),
                                        "default_agent" => chan.default_agent = Some(value),
                                        "dlp_profile" => chan.dlp_profile = Some(value),
                                        "audit_level" => chan.audit_level = Some(value),
                                        "default_deny" => chan.default_deny = value == "true",
                                        _ => {
                                            // Unknown properties ignored for forward compat.
                                        }
                                    }
                                }
                            }
                        }
                        "channel_policy_block" => {
                            // Extract nested policy rules
                            for j in 0..child.child_count() {
                                if let Some(rule_node) = child.child(j) {
                                    if rule_node.kind() == "policy_rule" {
                                        // Child 0 = action keyword, child 1 = ":", child 2 = expression
                                        if let (Some(action_node), Some(expr_node)) =
                                            (rule_node.child(0), rule_node.child(2))
                                        {
                                            let action = source
                                                [action_node.start_byte()..action_node.end_byte()]
                                                .to_string();
                                            let expression = source
                                                [expr_node.start_byte()..expr_node.end_byte()]
                                                .to_string();
                                            chan.policy_rules
                                                .push(ChannelPolicyRule { action, expression });
                                        }
                                    }
                                }
                            }
                        }
                        "channel_data_classification_block" => {
                            // Extract data classification rules
                            for j in 0..child.child_count() {
                                if let Some(rule_node) = child.child(j) {
                                    if rule_node.kind() == "data_classification_rule" {
                                        // Child 0 = category, child 1 = ":", child 2 = action
                                        if let (Some(cat_node), Some(act_node)) =
                                            (rule_node.child(0), rule_node.child(2))
                                        {
                                            let category = source
                                                [cat_node.start_byte()..cat_node.end_byte()]
                                                .to_string();
                                            let action = source
                                                [act_node.start_byte()..act_node.end_byte()]
                                                .to_string();
                                            chan.data_classification
                                                .push(DataClassificationEntry { category, action });
                                        }
                                    }
                                }
                            }
                        }
                        _ => {}
                    }
                }
            }

            // Validate: platform is required.
            if chan.platform.is_none() {
                return Err(format!("channel '{}': must specify 'platform'", chan.name));
            }

            channels.push(chan);
        }

        // Recurse into children.
        for i in 0..node.child_count() {
            if let Some(child) = node.child(i) {
                traverse_for_channels(child, source, channels, depth + 1)?;
            }
        }

        Ok(())
    }

    traverse_for_channels(root_node, source, &mut channels, 0)?;
    Ok(channels)
}

/// A structured diagnostic emitted by error analysis
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DslDiagnostic {
    /// 1-based start line
    pub start_line: usize,
    /// 1-based start column
    pub start_col: usize,
    /// 1-based end line
    pub end_line: usize,
    /// 1-based end column
    pub end_col: usize,
    /// The source text of the erroneous node
    pub snippet: String,
    /// Nesting depth at which the error was found
    pub depth: usize,
}

impl std::fmt::Display for DslDiagnostic {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "ERROR at {}:{}-{}:{}: '{}'",
            self.start_line, self.start_col, self.end_line, self.end_col, self.snippet
        )
    }
}

/// Find errors in the AST and return them as structured diagnostics
pub fn find_errors(node: Node, source: &str, depth: usize) -> Vec<DslDiagnostic> {
    let mut diagnostics = Vec::new();
    collect_errors(node, source, depth, &mut diagnostics);
    diagnostics
}

fn collect_errors(node: Node, source: &str, depth: usize, diagnostics: &mut Vec<DslDiagnostic>) {
    if node.kind() == "ERROR" {
        let start = node.start_position();
        let end = node.end_position();
        let text = &source[node.start_byte()..node.end_byte()];
        diagnostics.push(DslDiagnostic {
            start_line: start.row + 1,
            start_col: start.column + 1,
            end_line: end.row + 1,
            end_col: end.column + 1,
            snippet: text.to_string(),
            depth,
        });
    }

    for i in 0..node.child_count() {
        if let Some(child) = node.child(i) {
            collect_errors(child, source, depth + 1, diagnostics);
        }
    }
}

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

    #[test]
    fn test_extension_helpers() {
        assert!(is_symbi_file(Path::new("foo.symbi")));
        assert!(is_symbi_file(Path::new("foo.dsl")));
        assert!(is_symbi_file(Path::new("agents/bar.symbi")));
        assert!(!is_symbi_file(Path::new("foo.txt")));
        assert!(!is_symbi_file(Path::new("foo")));
        assert!(!is_symbi_file(Path::new("foo.SYMBI")));

        assert_eq!(strip_symbi_extension("agent.symbi"), Some("agent"));
        assert_eq!(strip_symbi_extension("agent.dsl"), Some("agent"));
        assert_eq!(strip_symbi_extension("agent"), None);
        assert_eq!(strip_symbi_extension("agent.txt"), None);
    }

    #[test]
    fn test_basic_parsing() {
        let simple_dsl = r#"
        agent TestAgent {
            capabilities: [test]
        }
        "#;

        let result = parse_dsl(simple_dsl);
        assert!(result.is_ok(), "Basic DSL parsing should succeed");
    }

    #[test]
    fn test_metadata_extraction() {
        let dsl_with_metadata = r#"
        metadata {
            version: "1.0",
            author: "Test"
        }
        "#;

        if let Ok(tree) = parse_dsl(dsl_with_metadata) {
            let metadata = extract_metadata(&tree, dsl_with_metadata);
            assert!(!metadata.is_empty(), "Should extract metadata");
        }
    }

    #[test]
    fn test_with_block_parsing() {
        let agent_with_sandbox = r#"
        agent code_runner(script: String) -> Output {
            with sandbox = "e2b", timeout = 60.seconds {
                return execute(script);
            }
        }
        "#;

        if let Ok(tree) = parse_dsl(agent_with_sandbox) {
            let with_blocks = extract_with_blocks(&tree, agent_with_sandbox).unwrap();
            assert_eq!(with_blocks.len(), 1, "Should extract one with block");

            let with_block = &with_blocks[0];
            assert_eq!(with_block.sandbox_tier, Some(SandboxTier::E2B));
            assert_eq!(with_block.timeout, Some(60));
        }
    }

    #[test]
    fn test_sandbox_tier_validation() {
        assert_eq!(
            WithBlock::parse_sandbox_tier("docker"),
            Ok(SandboxTier::Docker)
        );
        assert_eq!(
            WithBlock::parse_sandbox_tier("gvisor"),
            Ok(SandboxTier::GVisor)
        );
        assert_eq!(
            WithBlock::parse_sandbox_tier("firecracker"),
            Ok(SandboxTier::Firecracker)
        );
        assert_eq!(WithBlock::parse_sandbox_tier("e2b"), Ok(SandboxTier::E2B));

        // Test with quotes
        assert_eq!(
            WithBlock::parse_sandbox_tier("\"docker\""),
            Ok(SandboxTier::Docker)
        );

        // Test invalid tier
        assert!(WithBlock::parse_sandbox_tier("invalid").is_err());
    }

    #[test]
    fn test_schedule_definition_parsing() {
        let dsl = r#"
        schedule morning_report {
            cron: "0 7 * * 1-5",
            timezone: "America/New_York",
            agent: "compliance_reporter",
            policy: "hipaa_guard",
            audit: "all_operations"
        }
        "#;

        let tree = parse_dsl(dsl).expect("should parse");
        let schedules = extract_schedule_definitions(&tree, dsl).unwrap();
        assert_eq!(schedules.len(), 1);

        let s = &schedules[0];
        assert_eq!(s.name, "morning_report");
        assert_eq!(s.cron.as_deref(), Some("0 7 * * 1-5"));
        assert_eq!(s.timezone, "America/New_York");
        assert_eq!(s.agent.as_deref(), Some("compliance_reporter"));
        assert_eq!(s.policy.as_deref(), Some("hipaa_guard"));
        assert_eq!(s.audit.as_deref(), Some("all_operations"));
        assert!(!s.one_shot);
    }

    #[test]
    fn test_schedule_one_shot() {
        let dsl = r#"
        schedule quarterly_check {
            at: "2026-03-31T23:59:00",
            timezone: "UTC",
            agent: "sox_auditor",
            one_shot: true
        }
        "#;

        let tree = parse_dsl(dsl).expect("should parse");
        let schedules = extract_schedule_definitions(&tree, dsl).unwrap();
        assert_eq!(schedules.len(), 1);

        let s = &schedules[0];
        assert_eq!(s.name, "quarterly_check");
        assert!(s.cron.is_none());
        assert_eq!(s.at.as_deref(), Some("2026-03-31T23:59:00"));
        assert!(s.one_shot);
    }

    #[test]
    fn test_schedule_missing_cron_and_at() {
        let dsl = r#"
        schedule bad_schedule {
            timezone: "UTC",
            agent: "some_agent"
        }
        "#;

        let tree = parse_dsl(dsl).expect("should parse");
        let result = extract_schedule_definitions(&tree, dsl);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("must specify either"));
    }

    #[test]
    fn test_schedule_both_cron_and_at_rejected() {
        let dsl = r#"
        schedule conflicting {
            cron: "0 * * * *",
            at: "2026-01-01T00:00:00",
            agent: "some_agent"
        }
        "#;

        let tree = parse_dsl(dsl).expect("should parse");
        let result = extract_schedule_definitions(&tree, dsl);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("cannot specify both"));
    }

    #[test]
    fn test_schedule_with_delivery() {
        let dsl = r#"
        schedule alerter {
            cron: "*/30 * * * *",
            agent: "compliance_agent",
            deliver: "slack://compliance-alerts"
        }
        "#;

        let tree = parse_dsl(dsl).expect("should parse");
        let schedules = extract_schedule_definitions(&tree, dsl).unwrap();
        assert_eq!(schedules.len(), 1);
        assert_eq!(
            schedules[0].deliver.as_deref(),
            Some("slack://compliance-alerts")
        );
    }

    #[test]
    fn test_multiple_schedules() {
        let dsl = r#"
        schedule job_a {
            cron: "0 * * * *",
            agent: "agent_a"
        }
        schedule job_b {
            at: "2026-06-01T12:00:00",
            agent: "agent_b",
            one_shot: true
        }
        "#;

        let tree = parse_dsl(dsl).expect("should parse");
        let schedules = extract_schedule_definitions(&tree, dsl).unwrap();
        assert_eq!(schedules.len(), 2);
        assert_eq!(schedules[0].name, "job_a");
        assert_eq!(schedules[1].name, "job_b");
    }

    #[test]
    fn test_with_block_attributes() {
        let agent_with_multiple_attrs = r#"
        agent test_agent {
            with sandbox = "docker", timeout = 30.seconds {
                return success();
            }
        }
        "#;

        if let Ok(tree) = parse_dsl(agent_with_multiple_attrs) {
            let with_blocks = extract_with_blocks(&tree, agent_with_multiple_attrs).unwrap();
            assert_eq!(with_blocks.len(), 1);

            let with_block = &with_blocks[0];
            assert_eq!(with_block.attributes.len(), 2);
            assert_eq!(with_block.sandbox_tier, Some(SandboxTier::Docker));
            assert_eq!(with_block.timeout, Some(30));
        }
    }

    #[test]
    fn test_timeout_seconds_suffix() {
        let dsl = r#"
        agent runner(s: String) -> Output {
            with timeout = 45.seconds {
                return execute(s);
            }
        }
        "#;
        let tree = parse_dsl(dsl).unwrap();
        let blocks = extract_with_blocks(&tree, dsl).unwrap();
        assert_eq!(blocks.len(), 1);
        assert_eq!(blocks[0].timeout, Some(45));
    }

    #[test]
    fn test_timeout_minutes_suffix() {
        let dsl = r#"
        agent runner(s: String) -> Output {
            with timeout = 30.minutes {
                return execute(s);
            }
        }
        "#;
        let tree = parse_dsl(dsl).unwrap();
        let blocks = extract_with_blocks(&tree, dsl).unwrap();
        assert_eq!(blocks.len(), 1);
        assert_eq!(blocks[0].timeout, Some(30 * 60));
    }

    #[test]
    fn test_timeout_hours_suffix() {
        let dsl = r#"
        agent runner(s: String) -> Output {
            with timeout = 2.hours {
                return execute(s);
            }
        }
        "#;
        let tree = parse_dsl(dsl).unwrap();
        let blocks = extract_with_blocks(&tree, dsl).unwrap();
        assert_eq!(blocks.len(), 1);
        assert_eq!(blocks[0].timeout, Some(2 * 3600));
    }

    #[test]
    fn test_timeout_bare_number() {
        let dsl = r#"
        agent runner(s: String) -> Output {
            with timeout = 120 {
                return execute(s);
            }
        }
        "#;
        let tree = parse_dsl(dsl).unwrap();
        let blocks = extract_with_blocks(&tree, dsl).unwrap();
        assert_eq!(blocks.len(), 1);
        assert_eq!(blocks[0].timeout, Some(120));
    }
}