Skip to main content
Every piece of durable memory in Slowave starts as a raw event. When an agent activates a session, works through a task, and commits an outcome, that activity is recorded, encoded, and consolidated into progressively more stable structures — without a single LLM call in the pipeline. Understanding this path helps you write better claims, interpret what activation returns, and know when to act on stale feedback.

The path from activity to durable memory

Session activity flows through three layers before it surfaces in retrieval: raw events are encoded into episodes, episodes are clustered into prototypes, and prototypes anchor the searchable schema records that agents actually read.
Consolidation is a background process. Slowave never blocks an agent waiting for replay or clustering — the background worker (or slowave consolidate) runs independently.
Slowave uses local embeddings and deterministic operations throughout this path. No language model is involved in consolidation, reinforcement, decay, or retrieval.

The five-verb cognitive cycle

Every agent task follows the same five steps. Each verb has a specific role; using them in order is what makes memory trustworthy.
1

slowave_activate

Opens a task session and primes working memory. Pass the verbatim task, a concise initial_goal, and a scope in kind:id form. Returns a session_id, a retrieval_id for later feedback, and a compact set of relevant memories and procedures scoped to the current context.
2

slowave_remember

Stores a durable, standalone typed claim while the session is open. Use this only for knowledge that should persist across sessions — project decisions, user preferences, lessons learned. Do not store transient work state here.
3

slowave_recall

Performs a deliberate semantic lookup mid-task when the question shifts or activation did not surface enough context. Bound to the active session and scope. Returns direct and associated memories plus bounded provenance references.
4

slowave_feedback

Records append-only assessments of every retrieved memory and procedure. Memory assessments are used, irrelevant, or stale. Procedure feedback records both use (used or not_used) and effect (helped, no_effect, harmed, or unknown) separately. Commit will be rejected until all exposed targets have feedback.
5

slowave_commit

Closes the task with its final_goal, outcome (success, partial, or failure), outcome_summary, and verification. Optionally captures a reusable procedure. Triggers offline episode formation.
slowave_commit runs a preflight check and returns a retryable incomplete_feedback error if any exposed retrieval target is missing feedback. Complete all feedback before calling commit.

Memory types

The slowave_remember tool accepts ten distinct memory types. Choose the type that most precisely describes the claim — it affects how the memory is tagged, layered, and later surfaced.
Use instruction for directions like “always run tests before pushing.” Use constraint for non-negotiable hard limits. Use lesson for retrospective insight from a completed task.

Memory lifecycle states

A schema (the durable memory record) moves through three visible states. Only active memory participates in normal retrieval.
There is intentionally no agent-facing forget tool. Suppression is a human decision made after inspecting a specific memory — not something an agent infers from conversation text.

How feedback shapes salience and decay

Feedback is the primary signal that keeps memory honest over time. When an agent marks a memory used, its salience is reinforced and it becomes more likely to surface in future activations. When a memory is marked stale, the reason is recorded — it can be contradicted, superseded, outdated, unsupported, or withdrawn — and a superseded assessment must also name the active replacement. Schemas that are never recalled gradually lose salience through idle decay. The slowave worker background loop runs decay_unused on a schedule, lowering salience for schemas that have not been retrieved within a configurable idle window (default 30 days). This allows stale context to fade without requiring explicit human action on every old memory.
A stale assessment records the reason and, when superseded, the replacement_memory_id of the newer claim. The original schema remains in the database with its source evidence intact. It can still be inspected via the dashboard or slowave show sch_N, and a suppression can be reversed. The assessment is append-only: subsequent positive feedback on the same memory can raise its salience again.

Background consolidation

Slowave separates the agent’s interactive task loop from the consolidation process entirely. When slowave_commit closes a session, it triggers episode formation synchronously — but replay, prototype clustering, and schema reinforcement run in the background.

slowave worker

Runs the background consolidation loop. Omit --once to keep it running; use --once for a single pass in scripts or tests.

slowave consolidate

Runs one replay and latent-consolidation pass immediately. Useful for one-off maintenance or forcing consolidation before inspecting results.
The worker processes eligible episodes into prototypes, updates association edges in the graph, and writes or reinforces schema records — all through local, deterministic operations with no LLM calls and no external network dependency.