Skip to content
Product Overview

Overview

Aionis is execution memory for agents that need to continue work across sessions instead of rediscovering the same repo, reasoning, and patch plan every time.

Memory graphDecision provenanceReplay evidence
memory.write
context.assemble
policy.select
decision.persist
request_idrun_iddecision_idcommit_uri

What Aionis is

Aionis sits between your agent runtime and your operational controls. It stores execution memory as durable graph data, helps recover exact handoffs and evidence, assembles context for later requests, applies policy before actions run, and preserves the identifiers required to replay the same workflow later.

What makes it different

Aionis is not just a retrieval layer and not just a token optimization feature. It combines memory, policy, provenance, handoff recovery, and replay in one operational model. That matters when teams need to answer questions like:

  1. What did the agent actually do?
  2. Why was this tool selected?
  3. Which memory write influenced this decision?
  4. Can we replay the same path after a fix or before a release?

Why Aionis exists

Most agent stacks still restart from near-zero every new session. Aionis exists to reduce that rediscovery cost while keeping the work inspectable and reusable:

  1. Continuity across requests, runs, decisions, and commits.
  2. Policy control before tools and actions are executed.
  3. Replay workflows for incidents, regressions, and reuse.
  4. Operational discipline for rollout and auditability.

Product paths

Use Lite when you want:

  1. the fastest local path
  2. single-user SQLite-backed runtime
  3. Codex or MCP integration with low setup friction

Use Server when you want:

  1. self-hosted production deployment
  2. admin and automation surfaces
  3. stronger operational governance

See Choose Lite or Server for the direct path.

Key capabilities

  1. Verifiable writes with commit_id and commit_uri.
  2. Context assembly with explicit layers and budgets.
  3. Policy-loop endpoints for evaluation, selection, decision, run, and feedback.
  4. Decision provenance using request_id, run_id, decision_id, and commit_uri.
  5. Replay and operational gates for production validation.

Architecture overview

At a high level, Aionis exposes four developer-facing surfaces:

  1. Memory APIs for write, recall, resolve, and context assembly.
  2. Policy APIs for rule evaluation, tool selection, and feedback.
  3. Replay APIs for reconstructing and rerunning historical execution.
  4. Operational gates and evidence workflows for safe promotion.

The typical sequence is:

  1. Your app writes execution memory.
  2. Your runtime recalls or assembles context.
  3. Policy is applied before action execution.
  4. Decision and commit identifiers are persisted.
  5. The same identifiers are reused later for debugging and replay.

When to use Aionis

Use Aionis when you need one or more of these:

  1. Agents that must remember prior actions across runs.
  2. Tool selection or execution that must follow explicit rules.
  3. Incident debugging that depends on reconstructing a run path.
  4. Release workflows that require replay evidence before promotion.

When not to use Aionis

You likely do not need Aionis if your system is:

  1. A single-session prototype with no audit or debugging requirements.
  2. A stateless demo where prompt history is enough.
  3. A workflow where no one needs to trace why a tool was chosen.

The minimum mental model

Think of Aionis as four connected layers:

  1. Memory records what happened.
  2. Context assembly prepares what the next step should see.
  3. Policy constrains what actions are allowed or preferred.
  4. Replay proves what happened and lets you verify it later.
  1. Choose Lite or Server
  2. Quickstart
  3. Core Concepts
  4. Memory and Policy Loop
  5. API Guide
  6. Operations and Gates
  7. Tutorial: Aionis Doc Quickstart
  8. Tutorial: Aionis Doc + Runtime Resume

Role-based reading paths

  1. Role-based Paths
  2. Tutorial: Aionis Doc Quickstart
  3. Tutorial: Aionis Doc + Runtime Resume
  4. Tutorial: Integrate One Agent End-to-End
  5. Tutorial: Incident Replay for a Production Failure
  6. Tutorial: Release Gate with Replay Evidence
  7. Tutorial: Policy Tuning with Closed-loop Feedback