agentics_contracts/validation/mod.rs
1//! Shared validation helpers for external Agentics contracts.
2//!
3//! These modules intentionally cover reusable boundary validation only. Durable
4//! admission controls, authorization checks, and state-machine transitions stay
5//! with the database and API modules that own those invariants.
6
7pub mod archive;
8pub mod github;
9pub mod public_api;
10pub mod schemas;
11pub mod targets;
12pub mod text;