Skip to content

Packages

Aevum is a monorepo. Each package is independently installable.

Package Purpose Status Source
aevum-core Context kernel: five functions, sigchain, barriers, consent ✅ Available source
aevum-server HTTP API wrapping the five functions ✅ Available source
aevum-store-oxigraph Embedded RDF graph backend (single-node) ✅ Available source
aevum-store-postgres PostgreSQL graph + consent + ledger backend ✅ Available source
aevum-mcp MCP server for any MCP-compatible host ✅ Available source
aevum-cli aevum server start, aevum store migrate, and more ✅ Available source

Install

Install Includes
pip install aevum-core Kernel + NullPolicyEngine (permissive) + Oxigraph
pip install "aevum-core[cedar]" + Cedar ABAC (recommended for production)
pip install "aevum-core[all]" Everything
pip install aevum-core                    # kernel only
pip install aevum-server                  # + HTTP API
pip install "aevum-core[cedar]"           # + Cedar policy enforcement
pip install aevum-core aevum-store-postgres aevum-server aevum-cli "aevum-core[cedar]"  # production

See Deployment for the full installation guide.