atheneum 0.12.2

Agent coordination graph database - episodic and semantic memory for multi-agent workflows
Documentation
[package]
name = "atheneum"
version = "0.12.2"
edition = "2021"
license = "GPL-3.0-only"
description = "Agent coordination graph database - episodic and semantic memory for multi-agent workflows"
repository = "https://github.com/oldnordic/atheneum"
homepage = "https://github.com/oldnordic/atheneum"
documentation = "https://github.com/oldnordic/atheneum/blob/master/MANUAL.md"
keywords = ["graph", "sqlite", "agent", "knowledge-base", "coordination"]
categories = ["database-implementations", "data-structures", "text-processing"]
authors = ["oldnordic"]
readme = "README.md"
rust-version = "1.82"

[dependencies]
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
regex = "1.11"
seahash = "4.1"
rusqlite = "0.31"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
uuid = { version = "1", features = ["v7"] }
thiserror = "2.0"
tracing = "0.1"
parking_lot = "0.12"
sqlitegraph = "3.9.0"
toml = "0.8"

ureq = { version = "2", default-features = false, features = ["json", "tls"] }

# Async runtime (optional for future use)
tokio = { version = "1.44", features = ["full"], optional = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }

# Web dashboard (optional feature)
axum = { version = "0.8", optional = true }
tower-http = { version = "0.6", features = ["fs", "cors"], optional = true }
askama = { version = "0.13", optional = true }

[[bin]]
name = "memory-prefetch-hints"
path = "src/bin/memory_prefetch_hints.rs"

[dev-dependencies]
tempfile = "3.19"
walkdir = "2.5"

[features]
# HNSW vector index is opt-in: it is heavy (in-process index, embedder) and
# unnecessary for graph-navigation workflows — `search`/`navigate`/`thread`
# fall back to a bag-of-tokens lexical scan + BFS over graph edges when this
# is disabled. Enable with `--features semantic-search` when vector similarity
# is required.
default = []
web-ui = ["dep:axum", "dep:tower-http", "dep:askama"]
async = ["tokio", "tracing-subscriber"]
neural-embed = []
semantic-search = []
# Native `atheneum extract-decisions` subcommand (Phase 3 Rust port). Calls a
# local Ollama LLM over transcripts and stores Decision discoveries in-process.
# Off by default; the `~/.local/bin/extract-decisions` Python script remains the
# default fallback. Enable with `--features extract` (or `--all-features`).
extract = []