meld 1.1.1

Deterministic filesystem state management using Merkle trees
Documentation
//! Agent Read/Write Model
//!
//! Defines how agents interact with nodes and context frames. Establishes clear
//! boundaries between read and write operations, ensuring agents can safely
//! operate concurrently while maintaining data integrity.

pub mod commands;
pub mod context_access;
pub mod identity;
pub mod profile;
pub mod prompt;
pub mod registry;
pub mod storage;

pub use commands::{
    AgentCommandService, AgentCreateResult, AgentEditResult, AgentListItem, AgentListResult,
    AgentRemoveResult, AgentShowResult, AgentStatusEntryResult, AgentValidateAllResult,
    AgentValidateSingleResult,
};
pub use identity::{AgentIdentity, AgentRole, Capability, ValidationResult};
pub use context_access::{AgentAdapter, ContextApiAdapter};
pub use profile::AgentConfig;
pub use prompt::{resolve_prompt_path, PromptCache};
pub use registry::AgentRegistry;
pub use storage::{AgentStorage, StoredAgentConfig, XdgAgentStorage};