Skip to Content
Aionis v0.3.2 is the current Runtime baseline for SDK/API hosts, MCP clients, plugins, Substrate-backed recall, and self-managed agent loops.
Developer Platform ConceptsOrdinary vs Execution Memory

Ordinary vs Execution Memory

Aionis supports ordinary memory and execution memory. They share lifecycle and admission gates, but they serve different jobs.

Comparison

TypeExamplesMain riskAionis treatment
Ordinary memoryPreferences, facts, project notesStale or over-broad recallScope, authority, lifecycle, and feedback gates.
Execution memoryAttempts, validator results, handoffs, invalidated routes, proceduresActing on non-current state or losing current stateExecution tree, active path preservation, invalidated-route gating, procedure projection.

Ordinary Memory Example

await aionis.remember({ kind: "preference", text: "Reviewer prefers narrow patches with explicit tests.", memory_lane: "private", owner_agent_id: "reviewer-1", });

This should not create an execution tree. It can inform style and expectations, but it is not a branch of a task run.

Execution Memory Example

await aionis.execution.observeStep({ agent_id: "worker-1", run_id, task_signature: "checkout-migration", title: "Legacy route rejected", summary: "Verifier rejected the legacy route because it touched unrelated modules.", outcome: "failed", target_files: ["src/checkout/legacyAdapter.ts"], });

This is execution evidence. It can become counter-evidence, branch isolation, a handoff signal, or a procedure candidate depending on later outcomes.

Why The Split Matters

If every memory is treated like related text, stale or contradicted execution history can look semantically relevant and get retrieved again. Aionis keeps execution state separate so “related” does not automatically mean “safe to follow.”

Execution memory is where Aionis is most differentiated. It preserves current active paths separately from invalidated alternatives, so history can guide future work without turning stale state into instructions.

Last updated on