hirn-core 0.1.0

Core types for the hirn cognitive memory database
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
use std::fmt;

use serde::{Deserialize, Serialize};

use crate::content::MemoryContent;
use crate::error::HirnError;
use crate::id::next_monotonic_ulid;
use crate::metadata::{Metadata, MetadataValue};
use crate::revision::{RevisionOperation, RevisionState};
use crate::timestamp::Timestamp;
use crate::types::{AgentId, Namespace};

/// Time-sortable, globally unique resource identifier wrapping a ULID.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Serialize, Deserialize)]
pub struct ResourceId(ulid::Ulid);

impl ResourceId {
    /// Create a new `ResourceId` with the current timestamp.
    #[must_use]
    #[allow(clippy::new_without_default)]
    pub fn new() -> Self {
        Self(next_monotonic_ulid())
    }

    /// Create a `ResourceId` from an existing ULID.
    #[must_use]
    pub const fn from_ulid(ulid: ulid::Ulid) -> Self {
        Self(ulid)
    }

    /// Get the inner ULID.
    #[must_use]
    pub const fn as_ulid(&self) -> ulid::Ulid {
        self.0
    }

    /// Parse a `ResourceId` from a ULID string.
    pub fn parse(s: &str) -> Result<Self, crate::HirnError> {
        ulid::Ulid::from_string(s)
            .map(Self)
            .map_err(|e| crate::HirnError::InvalidInput(format!("invalid resource id '{s}': {e}")))
    }
}

impl fmt::Display for ResourceId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

/// Stable identity for a resource across all of its revisions.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Serialize, Deserialize)]
pub struct LogicalResourceId(ulid::Ulid);

impl LogicalResourceId {
    /// Create a new logical resource identifier.
    #[must_use]
    #[allow(clippy::new_without_default)]
    pub fn new() -> Self {
        Self(next_monotonic_ulid())
    }

    /// Derive a stable logical identifier from a resource ID.
    #[must_use]
    pub const fn from_resource_id(id: ResourceId) -> Self {
        Self(id.as_ulid())
    }

    /// Parse a `LogicalResourceId` from a ULID string.
    pub fn parse(s: &str) -> Result<Self, crate::HirnError> {
        ulid::Ulid::from_string(s).map(Self).map_err(|e| {
            crate::HirnError::InvalidInput(format!("invalid logical resource id '{s}': {e}"))
        })
    }
}

impl fmt::Display for LogicalResourceId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

/// Immutable identifier for a specific resource revision.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Serialize, Deserialize)]
pub struct ResourceRevisionId(ulid::Ulid);

impl ResourceRevisionId {
    /// Create a new resource revision identifier.
    #[must_use]
    #[allow(clippy::new_without_default)]
    pub fn new() -> Self {
        Self(next_monotonic_ulid())
    }

    /// Derive a revision identifier from a resource ID.
    #[must_use]
    pub const fn from_resource_id(id: ResourceId) -> Self {
        Self(id.as_ulid())
    }

    /// Parse a `ResourceRevisionId` from a ULID string.
    pub fn parse(s: &str) -> Result<Self, crate::HirnError> {
        ulid::Ulid::from_string(s).map(Self).map_err(|e| {
            crate::HirnError::InvalidInput(format!("invalid resource revision id '{s}': {e}"))
        })
    }
}

impl fmt::Display for ResourceRevisionId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

/// Immutable identifier for a derived artifact.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Serialize, Deserialize)]
pub struct DerivedArtifactId(ulid::Ulid);

impl DerivedArtifactId {
    /// Create a new derived artifact identifier.
    #[must_use]
    #[allow(clippy::new_without_default)]
    pub fn new() -> Self {
        Self(next_monotonic_ulid())
    }

    /// Parse a `DerivedArtifactId` from a ULID string.
    pub fn parse(s: &str) -> Result<Self, crate::HirnError> {
        ulid::Ulid::from_string(s).map(Self).map_err(|e| {
            crate::HirnError::InvalidInput(format!("invalid derived artifact id '{s}': {e}"))
        })
    }
}

impl fmt::Display for DerivedArtifactId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

/// High-level modality classification for a resource.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
pub enum ModalityProfile {
    #[default]
    Text,
    Image,
    Audio,
    Code,
    Structured,
    Document,
    Video,
    Composite,
    External,
}

impl ModalityProfile {
    /// Stable wire representation for the modality.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Text => "text",
            Self::Image => "image",
            Self::Audio => "audio",
            Self::Code => "code",
            Self::Structured => "structured",
            Self::Document => "document",
            Self::Video => "video",
            Self::Composite => "composite",
            Self::External => "external",
        }
    }

    /// Parse a modality from its stable string form.
    pub fn parse(value: &str) -> Result<Self, HirnError> {
        match value {
            "text" => Ok(Self::Text),
            "image" => Ok(Self::Image),
            "audio" => Ok(Self::Audio),
            "code" => Ok(Self::Code),
            "structured" => Ok(Self::Structured),
            "document" => Ok(Self::Document),
            "video" => Ok(Self::Video),
            "composite" => Ok(Self::Composite),
            "external" => Ok(Self::External),
            _ => Err(HirnError::InvalidInput(format!(
                "unknown modality profile: {value}"
            ))),
        }
    }
}

impl fmt::Display for ModalityProfile {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.as_str())
    }
}

impl From<&MemoryContent> for ModalityProfile {
    fn from(value: &MemoryContent) -> Self {
        value.modality_profile()
    }
}

/// Explicit resource hydration mode for recall and fetch surfaces.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
pub enum HydrationMode {
    #[default]
    MetadataOnly,
    Preview,
    Full,
}

impl HydrationMode {
    /// Stable wire representation for the hydration mode.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::MetadataOnly => "metadata_only",
            Self::Preview => "preview",
            Self::Full => "full",
        }
    }

    /// Parse a hydration mode from its stable string form.
    pub fn parse(value: &str) -> Result<Self, HirnError> {
        match value {
            "metadata" | "metadata_only" => Ok(Self::MetadataOnly),
            "preview" => Ok(Self::Preview),
            "full" => Ok(Self::Full),
            _ => Err(HirnError::InvalidInput(format!(
                "unknown hydration mode: {value}"
            ))),
        }
    }
}

/// How a resource payload is stored or resolved.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum ResourceLocation {
    /// The payload is intentionally not materialized separately.
    Inline,
    /// The payload lives in the resource blob dataset at the given slot.
    Blob { blob_index: u32 },
    /// The payload lives behind an external URI.
    External { uri: String },
}

/// Typed relationship from a memory to a resource object or one of its artifacts.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
pub enum EvidenceRole {
    #[default]
    Source,
    Attachment,
    Proof,
    Output,
    Preview,
    Derived,
}

impl EvidenceRole {
    /// Stable wire representation for the evidence role.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Source => "source",
            Self::Attachment => "attachment",
            Self::Proof => "proof",
            Self::Output => "output",
            Self::Preview => "preview",
            Self::Derived => "derived",
        }
    }

    /// Parse an evidence role from its stable string form.
    pub fn parse(value: &str) -> Result<Self, HirnError> {
        match value {
            "source" => Ok(Self::Source),
            "attachment" => Ok(Self::Attachment),
            "proof" => Ok(Self::Proof),
            "output" => Ok(Self::Output),
            "preview" => Ok(Self::Preview),
            "derived" => Ok(Self::Derived),
            _ => Err(HirnError::InvalidInput(format!(
                "unknown evidence role: {value}"
            ))),
        }
    }
}

/// Provenance class for what an evidence link actually references.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
pub enum EvidenceProvenance {
    #[default]
    ObservedResource,
    GeneratedArtifact,
    TransformedSummary,
}

impl EvidenceProvenance {
    /// Stable wire representation for the provenance class.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::ObservedResource => "observed_resource",
            Self::GeneratedArtifact => "generated_artifact",
            Self::TransformedSummary => "transformed_summary",
        }
    }

    /// Parse a provenance class from its stable string form.
    pub fn parse(value: &str) -> Result<Self, HirnError> {
        match value {
            "observed_resource" => Ok(Self::ObservedResource),
            "generated_artifact" => Ok(Self::GeneratedArtifact),
            "transformed_summary" => Ok(Self::TransformedSummary),
            _ => Err(HirnError::InvalidInput(format!(
                "unknown evidence provenance: {value}"
            ))),
        }
    }
}

/// Typed link from a memory record to a resource object or derived artifact.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct EvidenceLink {
    pub resource_id: ResourceId,
    pub artifact_id: Option<DerivedArtifactId>,
    pub role: EvidenceRole,
    #[serde(default)]
    pub provenance: EvidenceProvenance,
    #[serde(default)]
    pub part_index: Option<u32>,
    pub description: Option<String>,
}

impl EvidenceLink {
    /// Create a direct evidence link to a resource.
    #[must_use]
    pub const fn new(resource_id: ResourceId, role: EvidenceRole) -> Self {
        Self {
            resource_id,
            artifact_id: None,
            role,
            provenance: EvidenceProvenance::ObservedResource,
            part_index: None,
            description: None,
        }
    }

    /// Attach a derived artifact to this evidence link.
    #[must_use]
    pub const fn with_artifact(mut self, artifact_id: DerivedArtifactId) -> Self {
        self.artifact_id = Some(artifact_id);
        self
    }

    /// Mark what kind of provenance surface this link references.
    #[must_use]
    pub const fn with_provenance(mut self, provenance: EvidenceProvenance) -> Self {
        self.provenance = provenance;
        self
    }

    /// Attach the content part index this evidence link hydrates.
    #[must_use]
    pub const fn with_part_index(mut self, part_index: u32) -> Self {
        self.part_index = Some(part_index);
        self
    }

    /// Attach an optional human-readable description.
    #[must_use]
    pub fn with_description(mut self, description: impl Into<String>) -> Self {
        self.description = Some(description.into());
        self
    }
}

/// Kind of derived artifact materialized from a resource.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
pub enum DerivedArtifactKind {
    #[default]
    Preview,
    OcrText,
    Transcript,
    Caption,
    Thumbnail,
    SyntaxSummary,
    SchemaSummary,
    GenerationFailure,
}

impl DerivedArtifactKind {
    /// Stable wire representation for the artifact kind.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Preview => "preview",
            Self::OcrText => "ocr_text",
            Self::Transcript => "transcript",
            Self::Caption => "caption",
            Self::Thumbnail => "thumbnail",
            Self::SyntaxSummary => "syntax_summary",
            Self::SchemaSummary => "schema_summary",
            Self::GenerationFailure => "generation_failure",
        }
    }

    /// Parse an artifact kind from its stable string form.
    pub fn parse(value: &str) -> Result<Self, HirnError> {
        match value {
            "preview" => Ok(Self::Preview),
            "ocr_text" => Ok(Self::OcrText),
            "transcript" => Ok(Self::Transcript),
            "caption" => Ok(Self::Caption),
            "thumbnail" => Ok(Self::Thumbnail),
            "syntax_summary" => Ok(Self::SyntaxSummary),
            "schema_summary" => Ok(Self::SchemaSummary),
            "generation_failure" => Ok(Self::GenerationFailure),
            _ => Err(HirnError::InvalidInput(format!(
                "unknown derived artifact kind: {value}"
            ))),
        }
    }

    /// Whether this artifact can satisfy preview-oriented hydration and packaging.
    #[must_use]
    pub const fn is_previewable(self) -> bool {
        matches!(
            self,
            Self::Preview
                | Self::OcrText
                | Self::Transcript
                | Self::Caption
                | Self::Thumbnail
                | Self::SyntaxSummary
                | Self::SchemaSummary
        )
    }

    /// Provenance class callers should expose for this artifact kind.
    #[must_use]
    pub const fn evidence_provenance(self) -> EvidenceProvenance {
        match self {
            Self::OcrText | Self::Transcript | Self::Thumbnail | Self::GenerationFailure => {
                EvidenceProvenance::GeneratedArtifact
            }
            Self::Preview | Self::Caption | Self::SyntaxSummary | Self::SchemaSummary => {
                EvidenceProvenance::TransformedSummary
            }
        }
    }
}

/// Governance state for a logical resource lineage.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
pub enum ResourceGovernanceState {
    #[default]
    Active,
    Redacted,
    Purged,
}

impl ResourceGovernanceState {
    /// Stable wire representation for the governance state.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Active => "active",
            Self::Redacted => "redacted",
            Self::Purged => "purged",
        }
    }

    /// Parse a governance state from its stable string form.
    pub fn parse(value: &str) -> Result<Self, HirnError> {
        match value {
            "active" => Ok(Self::Active),
            "redacted" => Ok(Self::Redacted),
            "purged" => Ok(Self::Purged),
            _ => Err(HirnError::InvalidInput(format!(
                "unknown resource governance state: {value}"
            ))),
        }
    }

    /// Whether payload- and artifact-bearing hydration should be blocked.
    #[must_use]
    pub const fn hides_payload(self) -> bool {
        !matches!(self, Self::Active)
    }

    /// Default placeholder label for governed resources.
    #[must_use]
    pub const fn placeholder_display_name(self) -> &'static str {
        match self {
            Self::Active => "resource",
            Self::Redacted => "redacted resource",
            Self::Purged => "purged resource",
        }
    }
}

/// Governance action applied by a retention rule.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
pub enum ResourceRetentionAction {
    #[default]
    Redact,
    Purge,
}

impl ResourceRetentionAction {
    /// Stable wire representation for the action.
    #[must_use]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Redact => "redact",
            Self::Purge => "purge",
        }
    }

    /// Parse a retention action from its stable string form.
    pub fn parse(value: &str) -> Result<Self, HirnError> {
        match value {
            "redact" => Ok(Self::Redact),
            "purge" => Ok(Self::Purge),
            _ => Err(HirnError::InvalidInput(format!(
                "unknown resource retention action: {value}"
            ))),
        }
    }

    /// Severity ordering used when multiple rules match the same resource.
    #[must_use]
    pub const fn severity(self) -> u8 {
        match self {
            Self::Redact => 1,
            Self::Purge => 2,
        }
    }
}

/// A single operator-configured retention rule for resource governance.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(default)]
pub struct ResourceRetentionRule {
    pub action: ResourceRetentionAction,
    pub namespaces: Vec<Namespace>,
    pub modalities: Vec<ModalityProfile>,
    pub classifications: Vec<String>,
}

impl ResourceRetentionRule {
    /// Create a new retention rule with the provided governance action.
    #[must_use]
    pub const fn new(action: ResourceRetentionAction) -> Self {
        Self {
            action,
            namespaces: Vec::new(),
            modalities: Vec::new(),
            classifications: Vec::new(),
        }
    }

    /// Restrict the rule to a specific namespace.
    #[must_use]
    pub fn namespace(mut self, namespace: Namespace) -> Self {
        self.namespaces.push(namespace);
        self
    }

    /// Restrict the rule to a specific modality.
    #[must_use]
    pub fn modality(mut self, modality: ModalityProfile) -> Self {
        if !self.modalities.contains(&modality) {
            self.modalities.push(modality);
        }
        self
    }

    /// Restrict the rule to a specific classification metadata label.
    #[must_use]
    pub fn classification(mut self, classification: impl Into<String>) -> Self {
        let classification = classification.into().trim().to_string();
        if !classification.is_empty()
            && !self
                .classifications
                .iter()
                .any(|existing| existing.eq_ignore_ascii_case(&classification))
        {
            self.classifications.push(classification);
        }
        self
    }

    /// Validate the rule before use.
    pub fn validate(&self) -> Result<(), HirnError> {
        if self.namespaces.is_empty()
            && self.modalities.is_empty()
            && self.classifications.is_empty()
        {
            return Err(HirnError::InvalidInput(
                "resource retention rule must target at least one namespace, modality, or classification"
                    .into(),
            ));
        }
        if self
            .classifications
            .iter()
            .any(|classification| classification.trim().is_empty())
        {
            return Err(HirnError::InvalidInput(
                "resource retention classifications must be non-empty".into(),
            ));
        }
        Ok(())
    }

    /// Whether this rule matches the provided resource head.
    #[must_use]
    pub fn matches(&self, resource: &ResourceObject) -> bool {
        let namespace_match =
            self.namespaces.is_empty() || self.namespaces.contains(&resource.namespace);
        let modality_match =
            self.modalities.is_empty() || self.modalities.contains(&resource.modality);
        let classification_match = if self.classifications.is_empty() {
            true
        } else {
            resource.classification().is_some_and(|classification| {
                self.classifications
                    .iter()
                    .any(|candidate| candidate.eq_ignore_ascii_case(classification))
            })
        };

        namespace_match && modality_match && classification_match
    }
}

/// Operator-configured resource retention policy.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(default)]
pub struct ResourceRetentionPolicy {
    pub rules: Vec<ResourceRetentionRule>,
}

impl ResourceRetentionPolicy {
    /// Append a rule to the policy.
    #[must_use]
    pub fn with_rule(mut self, rule: ResourceRetentionRule) -> Self {
        self.rules.push(rule);
        self
    }

    /// Validate all configured rules.
    pub fn validate(&self) -> Result<(), HirnError> {
        for rule in &self.rules {
            rule.validate()?;
        }
        Ok(())
    }

    /// Whether the policy contains no rules.
    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.rules.is_empty()
    }

    /// Select the strongest action for a resource when multiple rules match.
    #[must_use]
    pub fn strongest_action_for(
        &self,
        resource: &ResourceObject,
    ) -> Option<ResourceRetentionAction> {
        self.rules
            .iter()
            .filter(|rule| rule.matches(resource))
            .map(|rule| rule.action)
            .max_by_key(|action| action.severity())
    }
}

/// Scope a quota applies to when admitting resource writes.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum ResourceQuotaScope {
    /// Aggregate all active resources in the current store/realm.
    Realm,
    /// Aggregate active resources inside one namespace.
    Namespace(Namespace),
    /// Aggregate active resources owned by one agent.
    Agent(AgentId),
}

impl ResourceQuotaScope {
    /// Whether the scope includes the provided resource.
    #[must_use]
    pub fn matches(&self, resource: &ResourceObject) -> bool {
        match self {
            Self::Realm => true,
            Self::Namespace(namespace) => *namespace == resource.namespace,
            Self::Agent(agent_id) => {
                matches!(resource.owner_agent_id, Some(owner) if owner == *agent_id)
            }
        }
    }
}

/// A single quota rule evaluated before persisting a resource write.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ResourceQuotaRule {
    pub scope: ResourceQuotaScope,
    pub max_active_resources: Option<usize>,
    pub max_total_bytes: Option<u64>,
}

impl ResourceQuotaRule {
    /// Create a new quota rule for the provided scope.
    #[must_use]
    pub const fn new(scope: ResourceQuotaScope) -> Self {
        Self {
            scope,
            max_active_resources: None,
            max_total_bytes: None,
        }
    }

    /// Set the maximum number of active resource heads allowed in this scope.
    #[must_use]
    pub const fn max_active_resources(mut self, max_active_resources: usize) -> Self {
        self.max_active_resources = Some(max_active_resources);
        self
    }

    /// Set the maximum total active payload bytes allowed in this scope.
    #[must_use]
    pub const fn max_total_bytes(mut self, max_total_bytes: u64) -> Self {
        self.max_total_bytes = Some(max_total_bytes);
        self
    }

    /// Validate the rule before use.
    pub fn validate(&self) -> Result<(), HirnError> {
        if self.max_active_resources.is_none() && self.max_total_bytes.is_none() {
            return Err(HirnError::InvalidInput(
                "resource quota rule must configure max_active_resources or max_total_bytes".into(),
            ));
        }
        if self.max_active_resources == Some(0) {
            return Err(HirnError::InvalidInput(
                "resource quota max_active_resources must be > 0".into(),
            ));
        }
        if self.max_total_bytes == Some(0) {
            return Err(HirnError::InvalidInput(
                "resource quota max_total_bytes must be > 0".into(),
            ));
        }
        Ok(())
    }

    /// Whether this rule applies to the provided resource.
    #[must_use]
    pub fn matches(&self, resource: &ResourceObject) -> bool {
        self.scope.matches(resource)
    }
}

/// Operator-configured quota policy for first-class resources.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(default)]
pub struct ResourceQuotaPolicy {
    pub rules: Vec<ResourceQuotaRule>,
}

impl ResourceQuotaPolicy {
    /// Append a quota rule to the policy.
    #[must_use]
    pub fn with_rule(mut self, rule: ResourceQuotaRule) -> Self {
        self.rules.push(rule);
        self
    }

    /// Validate all configured quota rules.
    pub fn validate(&self) -> Result<(), HirnError> {
        for rule in &self.rules {
            rule.validate()?;
        }
        Ok(())
    }

    /// Whether the policy contains no quota rules.
    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.rules.is_empty()
    }

    /// Iterate quota rules that apply to the provided resource.
    pub fn rules_for<'a>(
        &'a self,
        resource: &'a ResourceObject,
    ) -> impl Iterator<Item = &'a ResourceQuotaRule> + 'a {
        self.rules.iter().filter(|rule| rule.matches(resource))
    }
}

/// Scalar secondary index families supported for resource-adjacent datasets.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(rename_all = "snake_case")]
pub enum SecondaryIndexType {
    #[default]
    BTree,
    Bitmap,
}

/// Per-modality secondary index rule for the `resources` dataset.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(default)]
pub struct ResourceIndexRule {
    /// Modality whose access pattern this rule is tuning.
    pub modality: ModalityProfile,
    /// Index family to create for the configured composite columns.
    pub index_type: SecondaryIndexType,
    /// Additional columns appended after the `modality` prefix.
    pub columns: Vec<String>,
}

impl ResourceIndexRule {
    /// Create a new rule for the given modality.
    #[must_use]
    pub const fn new(modality: ModalityProfile, index_type: SecondaryIndexType) -> Self {
        Self {
            modality,
            index_type,
            columns: Vec::new(),
        }
    }

    /// Add an additional column after the `modality` prefix.
    #[must_use]
    pub fn with_column(mut self, column: impl Into<String>) -> Self {
        self.columns.push(column.into());
        self
    }

    /// Validate the configured columns.
    pub fn validate(&self) -> Result<(), HirnError> {
        for column in &self.columns {
            if column.trim().is_empty() {
                return Err(HirnError::InvalidConfig {
                    field: "resource_index_policy.columns".into(),
                    value: column.clone(),
                    reason: "index column names must be non-empty".into(),
                });
            }
            if !matches!(
                column.as_str(),
                "logical_resource_id"
                    | "revision_id"
                    | "mime_type"
                    | "display_name"
                    | "checksum"
                    | "size_bytes"
                    | "owner_agent_id"
                    | "governance_state"
                    | "namespace"
                    | "created_at_ms"
                    | "updated_at_ms"
            ) {
                return Err(HirnError::InvalidConfig {
                    field: "resource_index_policy.columns".into(),
                    value: column.clone(),
                    reason: "unsupported resources index column".into(),
                });
            }
        }

        Ok(())
    }

    /// Physical composite columns to index for this rule.
    #[must_use]
    pub fn scoped_columns(&self) -> Vec<String> {
        let mut columns = vec!["modality".to_string()];
        for column in &self.columns {
            if column != "modality" && !columns.contains(column) {
                columns.push(column.clone());
            }
        }
        columns
    }
}

/// Policy describing additional resource secondary indices keyed by modality.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(default)]
pub struct ResourceIndexPolicy {
    pub rules: Vec<ResourceIndexRule>,
}

impl ResourceIndexPolicy {
    /// Add a rule to the policy.
    #[must_use]
    pub fn with_rule(mut self, rule: ResourceIndexRule) -> Self {
        self.rules.push(rule);
        self
    }

    /// Validate all configured rules.
    pub fn validate(&self) -> Result<(), HirnError> {
        for rule in &self.rules {
            rule.validate()?;
        }
        Ok(())
    }

    /// Whether the policy contains no extra rules.
    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.rules.is_empty()
    }
}

/// Per-kind secondary index rule for the `derived_artifacts` dataset.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(default)]
pub struct DerivedArtifactIndexRule {
    /// Artifact kind whose access pattern this rule is tuning.
    pub kind: DerivedArtifactKind,
    /// Index family to create for the configured composite columns.
    pub index_type: SecondaryIndexType,
    /// Additional columns appended after the `kind` prefix.
    pub columns: Vec<String>,
}

impl DerivedArtifactIndexRule {
    /// Create a new rule for the given artifact kind.
    #[must_use]
    pub const fn new(kind: DerivedArtifactKind, index_type: SecondaryIndexType) -> Self {
        Self {
            kind,
            index_type,
            columns: Vec::new(),
        }
    }

    /// Add an additional column after the `kind` prefix.
    #[must_use]
    pub fn with_column(mut self, column: impl Into<String>) -> Self {
        self.columns.push(column.into());
        self
    }

    /// Validate the configured columns.
    pub fn validate(&self) -> Result<(), HirnError> {
        for column in &self.columns {
            if column.trim().is_empty() {
                return Err(HirnError::InvalidConfig {
                    field: "derived_artifact_index_policy.columns".into(),
                    value: column.clone(),
                    reason: "index column names must be non-empty".into(),
                });
            }
            if !matches!(
                column.as_str(),
                "resource_id"
                    | "modality"
                    | "mime_type"
                    | "checksum"
                    | "namespace"
                    | "created_at_ms"
            ) {
                return Err(HirnError::InvalidConfig {
                    field: "derived_artifact_index_policy.columns".into(),
                    value: column.clone(),
                    reason: "unsupported derived_artifacts index column".into(),
                });
            }
        }

        Ok(())
    }

    /// Physical composite columns to index for this rule.
    #[must_use]
    pub fn scoped_columns(&self) -> Vec<String> {
        let mut columns = vec!["kind".to_string()];
        for column in &self.columns {
            if column != "kind" && !columns.contains(column) {
                columns.push(column.clone());
            }
        }
        columns
    }
}

/// Policy describing additional derived-artifact secondary indices keyed by artifact kind.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, Default)]
#[serde(default)]
pub struct DerivedArtifactIndexPolicy {
    pub rules: Vec<DerivedArtifactIndexRule>,
}

impl DerivedArtifactIndexPolicy {
    /// Add a rule to the policy.
    #[must_use]
    pub fn with_rule(mut self, rule: DerivedArtifactIndexRule) -> Self {
        self.rules.push(rule);
        self
    }

    /// Validate all configured rules.
    pub fn validate(&self) -> Result<(), HirnError> {
        for rule in &self.rules {
            rule.validate()?;
        }
        Ok(())
    }

    /// Whether the policy contains no extra rules.
    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.rules.is_empty()
    }
}

/// First-class resource object stored independently from memory rows.
const fn resource_storage_ready_default() -> bool {
    true
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ResourceObject {
    pub id: ResourceId,
    pub logical_resource_id: LogicalResourceId,
    pub revision_id: ResourceRevisionId,
    pub version: u32,
    pub revision_operation: RevisionOperation,
    pub revision_reason: Option<String>,
    pub revision_causation_id: Option<ResourceId>,
    pub superseded_by: Option<ResourceId>,
    pub modality: ModalityProfile,
    pub mime_type: Option<String>,
    pub display_name: Option<String>,
    pub checksum: Option<String>,
    pub size_bytes: u64,
    pub location: ResourceLocation,
    pub metadata: Metadata,
    #[serde(default = "resource_storage_ready_default")]
    pub storage_ready: bool,
    pub owner_agent_id: Option<AgentId>,
    pub governance_state: ResourceGovernanceState,
    pub governance_reason: Option<String>,
    pub governed_at: Option<Timestamp>,
    pub namespace: Namespace,
    pub created_at: Timestamp,
    pub updated_at: Timestamp,
}

impl ResourceObject {
    /// Create a new builder for this resource type.
    #[must_use]
    pub fn builder() -> ResourceObjectBuilder {
        ResourceObjectBuilder::default()
    }

    /// Whether this revision is still the active resource head.
    #[must_use]
    pub const fn is_live(&self) -> bool {
        self.superseded_by.is_none()
    }

    /// Whether the revision is visible to read paths.
    #[must_use]
    pub const fn is_storage_ready(&self) -> bool {
        self.storage_ready
    }

    /// Computed state for this revision within the context of a resource head.
    #[must_use]
    pub fn revision_state_against(&self, head: &Self) -> RevisionState {
        if self.revision_id == head.revision_id {
            RevisionState::Active
        } else {
            RevisionState::Superseded
        }
    }

    /// Optional classification label carried in resource metadata.
    #[must_use]
    pub fn classification(&self) -> Option<&str> {
        match self.metadata.get("classification") {
            Some(MetadataValue::String(value)) => Some(value.as_str()),
            _ => None,
        }
    }

    /// Owning agent for agent-scoped resource governance and quotas.
    #[must_use]
    pub const fn owner_agent_id(&self) -> Option<AgentId> {
        self.owner_agent_id
    }
}

/// Builder for [`ResourceObject`].
#[derive(Debug, Default)]
pub struct ResourceObjectBuilder {
    modality: Option<ModalityProfile>,
    mime_type: Option<String>,
    display_name: Option<String>,
    checksum: Option<String>,
    size_bytes: Option<u64>,
    location: Option<ResourceLocation>,
    metadata: Metadata,
    owner_agent_id: Option<AgentId>,
    namespace: Option<Namespace>,
}

impl ResourceObjectBuilder {
    /// Set the modality of the resource.
    #[must_use]
    pub const fn modality(mut self, modality: ModalityProfile) -> Self {
        self.modality = Some(modality);
        self
    }

    /// Set the MIME type associated with the resource.
    #[must_use]
    pub fn mime_type(mut self, mime_type: impl Into<String>) -> Self {
        self.mime_type = Some(mime_type.into());
        self
    }

    /// Set the human-readable display name.
    #[must_use]
    pub fn display_name(mut self, display_name: impl Into<String>) -> Self {
        self.display_name = Some(display_name.into());
        self
    }

    /// Set a content-address or strong checksum string.
    #[must_use]
    pub fn checksum(mut self, checksum: impl Into<String>) -> Self {
        self.checksum = Some(checksum.into());
        self
    }

    /// Set the payload size in bytes.
    #[must_use]
    pub const fn size_bytes(mut self, size_bytes: u64) -> Self {
        self.size_bytes = Some(size_bytes);
        self
    }

    /// Set the storage location for the resource payload.
    #[must_use]
    pub fn location(mut self, location: ResourceLocation) -> Self {
        self.location = Some(location);
        self
    }

    /// Insert a metadata entry.
    #[must_use]
    pub fn metadata_entry(
        mut self,
        key: impl Into<String>,
        value: impl Into<MetadataValue>,
    ) -> Self {
        self.metadata.insert(key.into(), value.into());
        self
    }

    /// Set the owning agent for this resource.
    #[must_use]
    pub const fn owner_agent_id(mut self, owner_agent_id: AgentId) -> Self {
        self.owner_agent_id = Some(owner_agent_id);
        self
    }

    /// Set the namespace for this resource.
    #[must_use]
    pub fn namespace(mut self, namespace: Namespace) -> Self {
        self.namespace = Some(namespace);
        self
    }

    /// Build the resource object.
    pub fn build(self) -> Result<ResourceObject, HirnError> {
        let modality = self
            .modality
            .ok_or_else(|| HirnError::InvalidInput("resource modality is required".into()))?;
        let location = self
            .location
            .ok_or_else(|| HirnError::InvalidInput("resource location is required".into()))?;

        if let ResourceLocation::External { uri } = &location
            && uri.trim().is_empty()
        {
            return Err(HirnError::InvalidInput(
                "resource external URI must be non-empty".into(),
            ));
        }

        let now = Timestamp::now();
        let id = ResourceId::new();

        Ok(ResourceObject {
            id,
            logical_resource_id: LogicalResourceId::from_resource_id(id),
            revision_id: ResourceRevisionId::from_resource_id(id),
            version: 1,
            revision_operation: RevisionOperation::Create,
            revision_reason: None,
            revision_causation_id: None,
            superseded_by: None,
            modality,
            mime_type: self.mime_type,
            display_name: self.display_name,
            checksum: self.checksum,
            size_bytes: self.size_bytes.unwrap_or(0),
            location,
            metadata: self.metadata,
            storage_ready: resource_storage_ready_default(),
            owner_agent_id: self.owner_agent_id,
            governance_state: ResourceGovernanceState::Active,
            governance_reason: None,
            governed_at: None,
            namespace: self.namespace.unwrap_or_default(),
            created_at: now,
            updated_at: now,
        })
    }
}

/// Derived artifact generated from a resource object.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DerivedArtifact {
    pub id: DerivedArtifactId,
    pub resource_id: ResourceId,
    pub kind: DerivedArtifactKind,
    pub modality: ModalityProfile,
    pub mime_type: Option<String>,
    pub text_content: Option<String>,
    pub blob_index: Option<u32>,
    pub checksum: Option<String>,
    pub metadata: Metadata,
    pub namespace: Namespace,
    pub created_at: Timestamp,
}

impl DerivedArtifact {
    /// Create a new builder for this artifact type.
    #[must_use]
    pub fn builder() -> DerivedArtifactBuilder {
        DerivedArtifactBuilder::default()
    }
}

/// Builder for [`DerivedArtifact`].
#[derive(Debug, Default)]
pub struct DerivedArtifactBuilder {
    resource_id: Option<ResourceId>,
    kind: Option<DerivedArtifactKind>,
    modality: Option<ModalityProfile>,
    mime_type: Option<String>,
    text_content: Option<String>,
    blob_index: Option<u32>,
    checksum: Option<String>,
    metadata: Metadata,
    namespace: Option<Namespace>,
}

impl DerivedArtifactBuilder {
    /// Set the parent resource ID.
    #[must_use]
    pub const fn resource_id(mut self, resource_id: ResourceId) -> Self {
        self.resource_id = Some(resource_id);
        self
    }

    /// Set the derived artifact kind.
    #[must_use]
    pub const fn kind(mut self, kind: DerivedArtifactKind) -> Self {
        self.kind = Some(kind);
        self
    }

    /// Set the artifact modality.
    #[must_use]
    pub const fn modality(mut self, modality: ModalityProfile) -> Self {
        self.modality = Some(modality);
        self
    }

    /// Set the MIME type associated with the artifact.
    #[must_use]
    pub fn mime_type(mut self, mime_type: impl Into<String>) -> Self {
        self.mime_type = Some(mime_type.into());
        self
    }

    /// Set the textual payload for this artifact.
    #[must_use]
    pub fn text_content(mut self, text_content: impl Into<String>) -> Self {
        self.text_content = Some(text_content.into());
        self
    }

    /// Reference a binary preview or artifact blob.
    #[must_use]
    pub const fn blob_index(mut self, blob_index: u32) -> Self {
        self.blob_index = Some(blob_index);
        self
    }

    /// Set a checksum string for the artifact payload.
    #[must_use]
    pub fn checksum(mut self, checksum: impl Into<String>) -> Self {
        self.checksum = Some(checksum.into());
        self
    }

    /// Insert a metadata entry.
    #[must_use]
    pub fn metadata_entry(
        mut self,
        key: impl Into<String>,
        value: impl Into<MetadataValue>,
    ) -> Self {
        self.metadata.insert(key.into(), value.into());
        self
    }

    /// Set the namespace for this artifact.
    #[must_use]
    pub fn namespace(mut self, namespace: Namespace) -> Self {
        self.namespace = Some(namespace);
        self
    }

    /// Build the artifact record.
    pub fn build(self) -> Result<DerivedArtifact, HirnError> {
        let resource_id = self
            .resource_id
            .ok_or_else(|| HirnError::InvalidInput("artifact resource_id is required".into()))?;
        let kind = self
            .kind
            .ok_or_else(|| HirnError::InvalidInput("artifact kind is required".into()))?;
        let modality = self
            .modality
            .ok_or_else(|| HirnError::InvalidInput("artifact modality is required".into()))?;

        if self.text_content.is_none() && self.blob_index.is_none() {
            return Err(HirnError::InvalidInput(
                "artifact requires text_content or blob_index".into(),
            ));
        }

        Ok(DerivedArtifact {
            id: DerivedArtifactId::new(),
            resource_id,
            kind,
            modality,
            mime_type: self.mime_type,
            text_content: self.text_content,
            blob_index: self.blob_index,
            checksum: self.checksum,
            metadata: self.metadata,
            namespace: self.namespace.unwrap_or_default(),
            created_at: Timestamp::now(),
        })
    }
}

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

    #[test]
    fn resource_id_round_trip() {
        let id = ResourceId::new();
        let parsed = ResourceId::parse(&id.to_string()).unwrap();
        assert_eq!(id, parsed);
    }

    #[test]
    fn modality_profile_from_memory_content() {
        let content = MemoryContent::Image {
            data: vec![1, 2, 3],
            mime_type: "image/png".into(),
            description: "preview".into(),
        };
        assert_eq!(ModalityProfile::from(&content), ModalityProfile::Image);
    }

    #[test]
    fn resource_quota_policy_matches_agent_and_namespace_scopes() {
        let agent = AgentId::well_known("quota-agent");
        let namespace = Namespace::new("quota-ns").unwrap();
        let resource = ResourceObject::builder()
            .modality(ModalityProfile::Document)
            .location(ResourceLocation::Inline)
            .namespace(namespace)
            .owner_agent_id(agent)
            .build()
            .unwrap();

        let policy = ResourceQuotaPolicy::default()
            .with_rule(
                ResourceQuotaRule::new(ResourceQuotaScope::Agent(agent)).max_active_resources(2),
            )
            .with_rule(
                ResourceQuotaRule::new(ResourceQuotaScope::Namespace(namespace))
                    .max_total_bytes(1024),
            );

        let matched = policy.rules_for(&resource).collect::<Vec<_>>();
        assert_eq!(matched.len(), 2);
        assert!(
            matched
                .iter()
                .any(|rule| matches!(rule.scope, ResourceQuotaScope::Agent(_)))
        );
        assert!(
            matched
                .iter()
                .any(|rule| matches!(rule.scope, ResourceQuotaScope::Namespace(_)))
        );
    }

    #[test]
    fn resource_quota_rule_requires_a_limit() {
        let rule = ResourceQuotaRule::new(ResourceQuotaScope::Realm);
        assert!(rule.validate().is_err());
    }

    #[test]
    fn build_resource_object() {
        let resource = ResourceObject::builder()
            .modality(ModalityProfile::Document)
            .mime_type("application/pdf")
            .display_name("design-doc.pdf")
            .checksum("blake3:abc")
            .size_bytes(2048)
            .location(ResourceLocation::External {
                uri: "https://example.invalid/design-doc.pdf".into(),
            })
            .build()
            .unwrap();

        assert_eq!(resource.version, 1);
        assert_eq!(resource.modality, ModalityProfile::Document);
        assert!(resource.is_live());
        assert!(resource.is_storage_ready());
    }

    #[test]
    fn build_derived_artifact_requires_payload() {
        let resource_id = ResourceId::new();
        let result = DerivedArtifact::builder()
            .resource_id(resource_id)
            .kind(DerivedArtifactKind::Caption)
            .modality(ModalityProfile::Text)
            .build();
        assert!(result.is_err());
    }

    #[test]
    fn evidence_link_keeps_artifact_reference() {
        let resource_id = ResourceId::new();
        let artifact_id = DerivedArtifactId::new();
        let link = EvidenceLink::new(resource_id, EvidenceRole::Preview)
            .with_artifact(artifact_id)
            .with_provenance(EvidenceProvenance::TransformedSummary)
            .with_part_index(2)
            .with_description("thumbnail");

        assert_eq!(link.resource_id, resource_id);
        assert_eq!(link.artifact_id, Some(artifact_id));
        assert_eq!(link.role, EvidenceRole::Preview);
        assert_eq!(link.provenance, EvidenceProvenance::TransformedSummary);
        assert_eq!(link.part_index, Some(2));
    }

    #[test]
    fn derived_artifact_kind_maps_to_provenance_class() {
        assert_eq!(
            DerivedArtifactKind::OcrText.evidence_provenance(),
            EvidenceProvenance::GeneratedArtifact
        );
        assert_eq!(
            DerivedArtifactKind::Caption.evidence_provenance(),
            EvidenceProvenance::TransformedSummary
        );
        assert_eq!(
            DerivedArtifactKind::Preview.evidence_provenance(),
            EvidenceProvenance::TransformedSummary
        );
    }

    #[test]
    fn resource_index_policy_rejects_unknown_columns() {
        let policy = ResourceIndexPolicy::default().with_rule(
            ResourceIndexRule::new(ModalityProfile::Document, SecondaryIndexType::BTree)
                .with_column("unsupported"),
        );

        assert!(policy.validate().is_err());
    }

    #[test]
    fn derived_artifact_index_rule_scopes_columns_by_kind() {
        let rule = DerivedArtifactIndexRule::new(
            DerivedArtifactKind::Transcript,
            SecondaryIndexType::Bitmap,
        )
        .with_column("modality")
        .with_column("namespace");

        assert_eq!(rule.scoped_columns(), vec!["kind", "modality", "namespace"]);
    }
}