agentforge_parser/lib.rs
1pub mod detect;
2pub mod formats;
3pub mod parser;
4pub mod validator;
5
6pub use agentforge_core::AgentFileFormat;
7pub use detect::detect_format;
8pub use parser::{
9 compute_sha256, parse_agent_file, parse_agent_file_with_format, to_agent_version,
10 ParsedAgentFile,
11};
12pub use validator::{validate_agent_file, ValidationResult};