atheneum 0.7.0

Agent coordination graph database - episodic and semantic memory for multi-agent workflows
Documentation
//! Atheneum: Agent Coordination Graph Database
//!
//! A graph-based memory system for tracking multi-agent workflows,
//! decisions, and their provenance.

pub mod config;
mod cross;
pub(crate) mod db;
pub mod graph;
pub mod meta;

pub use meta::{MetaRouter, ProjectInfo};

pub use cross::{CrossEdge, CrossRouter, CrossSearchResult, CrossSubgraph};

pub use config::{
    default_config_path, expand_tilde, load as load_config, load_from as load_config_from,
    save as save_config, save_to as save_config_to, Config, EmbedProvider, EmbeddingsConfig,
    IntegrationConfig, IntegrationsConfig, LlmConfig, LlmProvider,
};

pub use graph::{
    AtheneumGraph, ClaudeTranscriptImportParams, ClaudeTranscriptImportSummary,
    DisambiguationResult, DiscoveryPreview, DreamConfig, DreamFinding, DreamMode, DreamPhase,
    DreamReport, EdgeType, EntityType, HandoffPreview, JournalSection, KanbanStatus, KanbanUpdate,
    MemoryPreview, NavigateQueryPlan, ProvenanceData, QueryIntent, ResolvedEntity, RuntimeStats,
    SearchResult, WikiPage, WikiSearchResult,
};

// Re-export the sqlitegraph types so consumers can name them as
// `atheneum::GraphEntity` and pick up exactly the sqlitegraph version
// atheneum itself depends on. This avoids the dual-major-version trap
// when downstream crates also pull in an older sqlitegraph directly.
pub use sqlitegraph::{GraphEdge, GraphEntity};

// Re-export wiki/journal ingestion and query functions
pub use graph::wiki::{
    content_hash, extract_kanban_updates, extract_wikilinks, parse_journal_sections,
};