Skip to Content
Aionis currently ships as a local-first Lite Runtime for developer machines and self-managed deployments.
Core ConceptsOverview

Core Concepts

Aionis is not recall memory. It is state-adjudicated memory.

The practical difference:

retrieval asks: what text is related? Aionis asks: can this memory safely shape the next Agent action now?

The Core Difference

Recall memoryAionis
Retrieves related textGoverns whether memory can influence action
Treats history as contextTreats history as state with lifecycle
Optimizes semantic similarityOptimizes current, safe, attributable Agent context
Usually lacks outcome attributionRecords guide decisions and feedback attribution
Often stores summaries as truthKeeps raw evidence, lifecycle state, and rehydrate pointers separate

Product Loop

Aionis is built around a closed loop:

observe -> guide -> agent action -> feedback -> measure -> snapshot
StepRuntime role
observeRecord ordinary memory, execution events, validator outcomes, and handoffs.
guideCompile governed Agent context with admission decisions.
Agent actionYour host runs tools, browser, shell, verifier, or model calls.
feedbackAttribute outcome to memory that was actually exposed and used.
measureReport what memory changed without overclaiming.
snapshotProduce operator-facing replay and state surfaces.

Memory Lifecycle

Aionis asks a narrower question than “is this relevant?”:

Can this memory safely shape the Agent's next action now?

That answer becomes one of four admission surfaces:

  • use_now: current, actionable memory for direct context use.
  • inspect_before_use: useful but requires verification before action.
  • do_not_use: stale, failed, suppressed, blocked, or unsafe as guidance.
  • rehydrate: compact pointer that should be expanded only on demand.

Two Kinds Of Memory

TypeExamplesAionis treatment
Ordinary memoryPreferences, facts, project notesScoped recall, lifecycle gating, feedback attribution.
Execution memoryAttempts, validator results, handoffs, failed branches, proceduresBranch isolation, active path preservation, failed route suppression, workflow projection.

Execution memory is Aionis’s strongest product wedge. It lets an Agent continue work without turning old mistakes into new instructions.

Product Boundary

Aionis owns memory governance, not tool execution. Your host still owns plans, shell commands, browser automation, validation, retries, and final task control.

This boundary is deliberate. Aionis should be easy to put next to Claude Code, Cursor, OpenHands, custom loops, or multi-agent systems without becoming another Agent runner.