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
//! Typed delegated-authority surface crate for post-v20 artifact families.
//!
//! The crate keeps its compatibility name, but it publishes typed authority
//! surfaces and bounded helper profiles rather than a general access-control runtime.
//!
//! ## Integration Points
//!
//! - **forge-pilot observe phase:** `governance_gate.rs` (`#[cfg(feature = "governance")]`) reads
//! authority lease validity, delegation chain state, and break glass grant status from
//! semantic-memory projections.
//! - **forge-pilot act phase:** capability class blast radius ceilings and authority lease
//! scope constrain which effects the loop is permitted to execute.
//! - **verification-control:** authority chain validity and delegation revocation case types
//! are affected; separation of duties policy violations trigger verification cases.
//! - **Stack Arena scenarios:** governed lane exercises governance observation of authority
//! lease boundaries and delegation chain integrity.
//!
//! ## Artifact Families
//!
//! | Artifact | Schema Version | Owner |
//! |----------|---------------|-------|
//! | [`CapabilityClassV1`] | `CapabilityClassV1` | this crate |
//! | [`AuthorityLeaseV1`] | `AuthorityLeaseV1` | this crate |
//! | [`DelegationBundleV1`] | `DelegationBundleV1` | this crate |
//! | [`AuthorityChainV1`] | `AuthorityChainV1` | this crate |
//! | [`BreakGlassGrantV1`] | `BreakGlassGrantV1` | this crate |
//! | [`DelegationRevocationV1`] | `DelegationRevocationV1` | this crate |
//! | [`ActingOnBehalfReceiptV1`] | `ActingOnBehalfReceiptV1` | this crate |
//! | [`SeparationOfDutiesPolicyV1`] | `SeparationOfDutiesPolicyV1` | this crate |
//! | [`DualControlApprovalV1`] | `DualControlApprovalV1` | this crate |
//! | [`ConflictDisclosureV1`] | `ConflictDisclosureV1` | this crate |
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;