Skip to main content

Slowave

Living memory layer across your coding agents and AI tools.

PyPI version

Supports: Claude Code, Codex, OpenCode, Cursor, Cline, Windsurf/Devin Desktop, Claude Desktop


AI agents have large context windows, but that context ends with your current session. Open a new session, switch from Claude Code to Codex, and you have to restate the same decisions, constraints, and failed attempts.

Slowave gives your agents one local, shared memory, without requiring a separate LLM for memory maintenance.

Slowave is an adaptive memory layer that approaches agent memory from a specific angle:

Reasoning and memory form a continuous feedback loop.

graph LR
    LLM["Reasoning<br/>(Claude, Codex, etc.)"]
    MEM["Memory<br/>(Slowave)"]
    
    LLM -->|Feedback| MEM
    MEM -->|Retrieve| LLM
    MEM -->|Adapt| MEM

Slowave retains what helps agents achieve their goals, weakens what does not, and continuously adapts based on use. It does this through a continuous feedback loop between your agent and its memory:

remember → recall → use → feedback → reinforce / weaken → decay

Over time, your agent’s feedback shapes what Slowave returns, and your memories become reusable context for your agent to achieve its goals.

Memory is continuously reshaped by use rather than a static collection of facts waiting to be retrieved.

  • Keep context across tasks: Your agents can reuse recorded decisions, preferences, constraints, and lessons instead of making you repeat them.
  • Improves with use: Useful memories strengthen, irrelevant ones lose priority, stale knowledge can be suppressed or superseded.
  • Learns from experience: Decisions, outcomes, and multi-step solutions can become reusable memories and procedures.
  • Runs locally: Slowave stores memory in SQLite and does not send it to a hosted memory service.
  • No LLM API key: The memory core performs maintenance and retrieval without LLM calls or an LLM API key.
  • Inspectable and measurable: Review memories, retrievals, feedback, procedures, and system performance in the local dashboard.

The first useful payoff is simply not having to repeat the same constraint in the next task.

Over time, the way you work becomes reusable context for your agent.

See platform coverage and manual steps.

Installation

Quick start

pipx install slowave
slowave setup --dry-run
slowave setup

The quick start configures every detected client. To configure just one client at a time, see the installation reference.

To remove Slowave, see the removal guide.

What changes in your workflow?

Slowave is transparent to your work. You keep working with your agent as usual.

Slowave is strictly connected to your agent in both directions:

  • Agent → Slowave: When your agent encounters a durable fact, decision, or procedure the installed lifecycle directs it to preserve that claim into Slowave.
  • Slowave → Agent: At the beginning of each task Slowave may return a compact, scoped set of relevant recorded memories or procedures to your agent, so that it can act upon its own memories.

What you will see while working with your agent:

  • your agent activating Slowave for the current task and goal,
  • Slowave retrieving relevant context to your agent,
  • your agent sending feedback to Slowave on what was retrieved.
  • your agent committing a Slowave session.

Optionally you will see:

  • your agent invoking Slowave to remember durable facts.
  • your agent invoking Slowave to recall something critical for the current task or goal.

Slowave does not decide whether a claim is true or important. Your agent makes that judgment and reports whether retrieved memory helped, was irrelevant, or became stale. Slowave maintains the resulting local memory.

Dashboard

Start the local dashboard with:

slowave dashboard

In the dashboard, inspect:

  • Memories: browse saved decisions, constraints, and lessons.
  • Procedures: review reusable step-by-step methods from past work.
  • Retrievals: see what memory Slowave returned for each task.
  • Activity: follow recent sessions, memory updates, and feedback.
  • Memory graph: explore connections between related memories.
  • System health: check the database, worker, backups, and local services.

Track memory health and retrieval effectiveness with:

  • Active memories: the number of memories currently available for retrieval.
  • Memory retrieval coverage: the share of active memories retrieved at least once during the selected period.
  • Assessed memories used: the share of assessed retrieved memories explicitly marked as useful.
  • Retrieval match rate: the share of eligible retrievals that returned at least one admitted item.
  • Feedback coverage: the share of retrievals with complete feedback recorded.

Memory graph

Slowave local dashboard Memory detail Procedures Retrieval Activity

Supported clients

Client coverage is actively expanding. Suggest more integrations or report broken ones with setup details.

✅ = manually verified · ⬜ = pending verification

Client macOS Linux Windows Setup
Claude Code ✅ ✅ ✅ slowave setup --client claude-code
Cline ✅ ✅ ✅ slowave setup --client cline
Cursor ✅ ✅ ✅ slowave setup --client cursor ¹
Windsurf ✅ ✅ ✅ slowave setup --client windsurf
Claude Desktop ✅ ✅ ✅ slowave setup --client claude-desktop ¹
OpenCode ✅ ✅ ✅ slowave setup --client opencode
Codex ✅ ✅ ✅ slowave setup --client codex
All the above slowave setup

¹ requires one manual paste after setup

How Slowave memory works

Slowave works through 5 simple MCP tools:

  • Activate: start a task and load relevant memory.
  • Remember: save a fact, decision, preference, or instruction.
  • Recall: search memory during a task.
  • Feedback: mark retrieved memory as useful, irrelevant, or stale.
  • Commit: save the task outcome and any reusable procedure.

A background worker consolidates relevant memories and procedures.

Slowave MCP lifecycle

flowchart LR
    A[Agent task] --> B[1. <i>activate</i><br/>start session]
    B --> C[Scoped retrieval<br/>and session]
    C --> D[Agent reasoning]
    D --> E[2. <i>remember</i><br/>durable claims]
    D --> F[3. <i>recall</i><br/>mid-task lookup]
    C --> G[4. <i>feedback</i><br/>target assessments]
    F --> G
    E --> H[5. <i>commit</i><br/>outcome and verification]
    G --> H
    H --> I[(Local SQLite<br/>raw events and evidence)]
    I --> J[Offline consolidation]
    J --> K[(Episodes, prototypes,<br/>schemas, relations)]
    K --> C

See architecture.md and design.md for details.

Boundaries

  • Slowave is a memory layer, not a reasoning engine.
  • It cannot recall information that was never recorded.
  • It supplies relevant context, but the connected agent decides how to interpret and use it.
  • Memory quality depends on the client agent and the feedback it provides.
  • Scopes reduce accidental context leakage; use separate stores when hard isolation is required.
  • Slowave adds token overhead from tool calls and retrieved context.
  • The local SQLite database is plaintext by default; protect it with OS permissions or full-disk encryption.

Evaluation

The current evaluation notes report preliminary retrieval-evidence results, methodology, limitations, and commands for running new evaluations. They do not claim end-to-end agent accuracy or a comparison against other memory systems. See benchmarks.md before treating any result as a production-quality claim.

Documentation

Contributing

Slowave is open source under the AGPL-3.0-or-later license.

Contributions are welcome, especially in:

  • installation and setup quality
  • client integrations
  • performance optimization

See CONTRIBUTING.md before submitting a pull request.

License

Slowave is open source under the GNU AGPL-3.0-or-later license.

Release files for slowave 0.20.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for slowave 0.20.4
File Size Uploaded
slowave-0.20.4.tar.gz 643.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for slowave 0.20.4
File Interpreter ABI Platform
slowave-0.20.4-py3-none-any.whl Python 3 none any Details

Total release size: 1.3 MB

Release files / slowave-0.20.4.tar.gz

Download URL slowave-0.20.4.tar.gz
Size 643.0 kB
Tags Source
SHA-256 checksum
How to use checksums
84cdc1b383eb80044f25193cb7cf0eaafe5ece340c9470d96097fa05b28ecb68
BLAKE2b-256 checksum
How to use checksums
e22936af9c3ddf7c77d58558f8e2e56b20b2768ce27dc2fad00df796fe2f8349
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.14

Release files / slowave-0.20.4-py3-none-any.whl

Download URL slowave-0.20.4-py3-none-any.whl
Size 661.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
83257e891cccbc61382ff3f74a7b41d5b947326f64844c4549afd994a9b58091
BLAKE2b-256 checksum
How to use checksums
55abc4ee85c97ef60fd5c702accecf0b04426420bbae53998411119bac72cd43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.14

Release history Release notifications | RSS feed

This release

0.20.4 This release

2 release files

0.20.3

2 release files

0.20.2

2 release files

0.20.1

2 release files

0.20.0

2 release files

0.19.3

2 release files

0.19.2

2 release files

0.19.1

2 release files

0.19.0

2 release files

0.17.1

2 release files

0.17.0

2 release files

0.16.3

2 release files

0.16.2

2 release files

0.16.1

2 release files

0.16.0

2 release files

0.15.6

2 release files

0.15.5

2 release files

0.15.4

2 release files

0.15.3

2 release files

0.15.2

2 release files

0.15.1

2 release files

0.14.4

2 release files

0.14.3

2 release files

0.9.4

2 release files

0.9.3

2 release files

0.9.2

2 release files

0.9.1

2 release files

0.9.0

2 release files

0.8.2

2 release files

0.8.1

2 release files

0.8.0

2 release files

0.7.0

2 release files

0.6.1

2 release files

0.6.0

2 release files

0.5.11

2 release files

0.5.10

2 release files

0.5.9

2 release files

0.5.8

2 release files

0.5.7

2 release files

0.5.6

2 release files

0.5.4

2 release files

0.5.3

2 release files

0.5.2

2 release files

0.5.1

2 release files

0.4.9

2 release files

0.4.8

2 release files

0.4.7

2 release files

0.4.6

2 release files

0.4.5

2 release files

0.4.4

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.10

2 release files

0.1.9

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.3

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page