agentforge-parser 0.1.10

Agent file parser and schema validator (F-01)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod detect;
pub mod formats;
pub mod parser;
pub mod validator;

pub use agentforge_core::AgentFileFormat;
pub use detect::detect_format;
pub use parser::{
    compute_sha256, parse_agent_file, parse_agent_file_with_format, to_agent_version,
    ParsedAgentFile,
};
pub use validator::{validate_agent_file, ValidationResult};