ainl-graph-extractor 0.1.3

Periodic graph extraction: semantic recurrence_count + persona evolution
Documentation
//! Graph extractor task: bump semantic `recurrence_count` from retrieval deltas, then run persona evolution.
//!
//! **Alpha:** API may change before 1.0.
//!
//! Persona evolution rows use [`ainl_persona::EVOLUTION_TRAIT_NAME`] — import that constant from `ainl-persona`
//! when matching evolution bundles; do not duplicate the string.
//!
//! **Note:** [`GraphExtractorTask::evolution_engine`] is the canonical in-process handle to
//! [`ainl_persona::EvolutionEngine`]. **ainl-runtime** exposes the same engine for direct
//! `ingest_signals` / `correction_tick` / `evolve` calls; this crate’s `run_pass` is one signal path, not the only one.

mod extractor;
mod persona_signals;
mod recurrence;
mod runner;
mod turn_extract;

pub use ainl_persona::{AXIS_EVOLUTION_SNAPSHOT, EVOLUTION_TRAIT_NAME};
pub use extractor::{ExtractionReport, GraphExtractorTask};
pub use persona_signals::{extract_pass, PersonaSignalExtractorState};
pub use recurrence::update_semantic_recurrence;
pub use runner::run_extraction_pass;
pub use turn_extract::extract_turn_semantic_tags_for_memory;