Skip to content

borjamoskv/Cortex-Persist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,760 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
CORTEX Persist — Tamper-evident memory for AI agents

█ CORTEX-PERSIST

The only runtime that treats AI agent executions as cryptographic objects in a metric space.
Not logs. Not memory. A verifiable execution manifold with hash-chain proof of every decision your agent made.

GitHub Stars PyPI PyPI Downloads Python CI Criterion Bench License MCP Compatible

LangGraph   →  orchestrates graph state
Mem0        →  retrieves semantic memory
CORTEX      →  proves what your agent actually did, mathematically

▀▄ THE PROBLEM (30 SECONDS)

Every AI agent framework answers "what should the agent do next?"
None of them answer "can you prove what the agent did, and that it hasn't been altered?"

CORTEX-PERSIST is the missing substrate layer:

  • LangGraph gives you checkpoints. CORTEX gives you cryptographic proof those checkpoints haven't been tampered with.
  • Mem0 gives you semantic memory. CORTEX gives you a hash-chain ledger of every memory access and mutation.
  • Traditional logs give you text. CORTEX gives you a metric space of execution trajectories where divergence is measurable.

▀▄ QUICK START (90 SECONDS)

pip install cortex-persist
CORTEX-Persist Terminal Execution

▀▄ THE EPISTEMIC CONTAINMENT SHIELD

Generative AI output is fundamentally probabilistic conjecture. Traditional logs blindly trust stochastic output.
CORTEX-PERSIST intercepts stochastic text, enforces a deterministic shield via Z3 SMT Guards, and commits the state to a cryptographically bound Ledger.

CAPABILITY TRADITIONAL RAG / LOGS CORTEX-PERSIST
Trust Model Trust the Process Verify the Evidence (C5-REAL)
Mutation Silent CRUD / Overwritable Append-Only + SHA-256 Merkle Seals
Agent Liability Ambiguous reconstruction Mathematically Defensible Lineage
Verification Manual log diving O(1) Portable JSON Audit Packs

ZERO-FRICTION SOVEREIGN INTEGRATION

Inject the CORTEX memory substrate into any existing agent pipeline via our magic decorator.

from cortex import CortexEngine

engine = CortexEngine()

# Every observation is sealed into an append-only hash-chain
engine.observe("user_query", "What is the capital of France?")
engine.observe("agent_response", "Paris")

# Cryptographic proof of what happened
proof = engine.seal()
print(proof.hash)        # SHA-256 of the full execution trace
print(proof.verify())    # True — tamper-evident by construction
# Or use the magic decorator — zero-friction drop-in for any agent
from cortex.magic import sovereign_persist

@sovereign_persist(strict=True)
async def my_agent(prompt: str):
    response = await llm.generate(prompt)
    return response
    # CORTEX intercepts, seals, and logs cryptographically. Zero boilerplate.

▀▄ ARCHITECTURE: EXECUTION AS A METRIC SPACE

CORTEX-PERSIST introduces a concept that doesn't exist in any other framework:

An agent's execution history is not a log — it is a point in a high-dimensional metric space.

Two runs of the same agent are either:

  • Equivalent (same equivalence class in the execution manifold)
  • Divergent (measurable distance > threshold → alert, reroute, or stabilize)

This lets you answer questions no other tool can:

Question LangGraph Mem0 CORTEX-PERSIST
Did this run diverge from the canonical run? DivergenceMap
Can I replay this execution deterministically? Partial ReplayEngine
Is this memory state cryptographically intact? ✅ Hash-chain
Which execution branch has lowest entropy drift? MetaArbiter
O(1) tamper detection on 1M+ events? ✅ Merkle seals
Native MCP server?
~390k agents/sec throughput? ✅ Rust-FFI core

▀▄ CORE PRIMITIVES

CortexEngine        →  The sovereign ledger. Every observation sealed.
DivergenceMap       →  Geometric distance between execution trajectories.
ReplayEngine        →  Deterministic reconstruction of any past execution.
MetaArbiter         →  Topological collapse operator: picks the canonical branch.
ExecutionControl    →  stabilize | reroute | halt signals based on entropy drift.
StateDistance       →  Metric function over execution state vectors.
EntropyDrift        →  Rate of divergence over time windows.

▀▄ COMPARISON

Dimension LangGraph Mem0 CORTEX-PERSIST
Persistence unit Conversation thread state Extracted semantic facts Execution trace + hash-chain
Source of truth Last checkpoint Relevance-ranked memories Cryptographic Merkle ledger
Divergence detection None None DivergenceMap + EntropyDrift
Deterministic replay Partial None Full — CI-verified
Multi-run topology None None Equivalence classes + fork map
Conflict arbitration None None MetaArbiter — topological collapse
Execution control Graph node transitions None ControlSignal: stabilize / reroute
Throughput Python-bound Python-bound ~390k agents/sec (Rust-FFI)
Tamper evidence None None SHA-256 + ZK-STARK seals

CORTEX is orthogonal to LangGraph and Mem0, not competitive. See integration guide →


▀▄ INSTALLATION & DEPLOYMENT

Requirements: Python 3.10+. Zero external daemons required.

pip install cortex-persist

# Optional core modules
pip install "cortex-persist[embeddings]"      # Local semantic embeddings
pip install "cortex-persist[knowledge]"       # Chroma-backed knowledge sync
pip install "cortex-persist[api,mcp,daemon]"  # MCP server + REST API
pip install "cortex-persist[cloud]"           # PostgreSQL + Redis + Qdrant scaling
pip install "cortex-persist[secure]"          # OS keyring credentials vault
pip install "cortex-persist[acceleration]"    # Rust-FFI core (~390k agents/sec)

▀▄ SECURE CREDENTIAL BACKEND

The secure credential backend relies on the optional secure extra, which installs the keyring package. It enables encrypted storage of the master encryption key in the host OS vault.

# Install core package + secure extra
pip install "cortex-persist[secure]"

When the keyring dependency is not present, the system degrades gracefully: functions such as cortex.crypto.keyring.get_master_key() simply return None instead of raising ModuleNotFoundError. This allows a minimal installation to work without the secure backend.

from cortex.crypto.keyring import get_master_key
print(get_master_key())  # → None if keyring is not installed

▀▄ MCP INTEGRATION

CORTEX-PERSIST exposes a native MCP server. Drop it into any MCP-compatible orchestrator (Perplexity, Claude Desktop, custom agents):

cortex mcp serve --port 8765
{
  "mcpServers": {
    "cortex-persist": {
      "command": "cortex",
      "args": ["mcp", "serve"]
    }
  }
}

▀▄ ARCHITECTURE DATA FLOW

graph TD
    classDef default fill:#0A0A0A,stroke:#2B3BE5,stroke-width:1px,color:#F0F0F0;
    classDef highlight fill:#2B3BE5,stroke:#CCFF00,stroke-width:1.5px,color:#FFFFFF;
    classDef guard fill:#1A1A1A,stroke:#FF0055,stroke-width:1px,color:#F0F0F0;
    classDef mcp fill:#0A0A2A,stroke:#00FFCC,stroke-width:1.5px,color:#F0F0F0;

    subgraph Stochastic Space
        LLM[Agent Stochastic Output]:::default
        LG[LangGraph / any orchestrator]:::default
        MCP[MCP Client]:::mcp
    end

    subgraph CORTEX Layer [CORTEX-Persist Substrate]
        direction TB
        G1[Admission Gate / Z3 SMT Guards]:::guard
        DM[DivergenceMap]:::default
        MA[MetaArbiter]:::default
        RE[ReplayEngine]:::default
        Hash[SHA-256 Block Sealing]:::default
        Merkle[Merkle Provenance Chain]:::default
    end

    subgraph Trust Substrate
        Ledger[(Append-Only AOF Ledger)]:::highlight
        Proof[Verifiable Audit Pack JSON]:::default
    end

    LLM --> G1
    LG  --> G1
    MCP --> G1
    G1  --> DM
    DM  --> MA
    MA  --> RE
    RE  --> Hash
    Hash --> Merkle
    Merkle --> Ledger
    Ledger --> Proof
Loading

▀▄ REAL-WORLD EXAMPLES

The examples/ directory has ready-to-run scenarios:

  1. Canonical Loop — full C5-REAL execution + tamper detection.
  2. Pricing Agent — cryptographic audit trail for AI pricing decisions.
  3. Support Escalation — mathematical proof of AI decision lineage.
  4. MCP Memory — Perplexity/Claude via MCP with sealed tool calls.
  5. LangGraph Integration — CORTEX as verification substrate under LangGraph.

▀▄ ARCHITECTURE DATABANKS


AESTHETIC:    INDUSTRIAL NOIR 2026 (#0A0A0A / #2B3BE5)
EPISTEMOLOGY: C5-REAL — Cryptographically Verified Reality
CORE TENET:   Generative output is conjecture. Evidence is absolute.
THROUGHPUT:   ~390k Agents/Sec (Rust-FFI, GIL-free)
UPDATED:      June 2026 — Execution Manifold · MetaArbiter · MCP Native

LICENSE: Apache-2.0 | OPERATOR: borjamoskv | cortexpersist.org | Sponsor

About

Tamper-evident memory & decision lineage for AI agents. Cryptographic proof of what your agent knew. Powered by a hybrid Python/Rust (Direct-Silicon) core.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors