agm-core 1.2.0

Core library for parsing, validating, loading, and rendering AGM (Agent Graph Memory) files
Documentation
//! AST model types representing a parsed AGM file.

pub mod code;
pub mod context;
pub mod execution;
pub mod fields;
pub mod file;
pub mod imports;
pub mod mem_file;
pub mod memory;
pub mod node;
pub mod orchestration;
pub mod schema;
pub mod state;
pub mod verify;

pub use code::{CodeAction, CodeBlock};
pub use context::{AgentContext, FileRange, LoadFile};
pub use execution::ExecutionStatus;
pub use fields::{Confidence, FieldValue, NodeStatus, NodeType, Priority, Span, Stability};
pub use file::{AgmFile, Header, LoadProfile, TokenEstimate};
pub use imports::ImportEntry;
pub use mem_file::{MemFile, MemFileEntry};
pub use memory::{MemoryAction, MemoryEntry, MemoryScope, MemoryTtl};
pub use node::Node;
pub use orchestration::{ParallelGroup, Strategy};
pub use schema::{EnforcementLevel, TypeSchema};
pub use state::{NodeState, StateFile};
pub use verify::VerifyCheck;