A living local memory layer for your AI tools.
2
stars
512
commits
Python
primary language
Sep 14, 2026
updated
Living memory layer across your AI tools.
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 designed as an adaptive memory layer rather than a static retrieval or summarisation system; it approaches agent memory from a different angle:
An effective memory system should help an agent achieve its goals.
Agent memory is not only a retrieval problem. A useful memory system should retain what helps the agent, weaken what does not, and continuously adapt based on use.
Slowave addresses this with a continuous feedback loop between your agent and its memory:
remember → recall → use → feedback → reinforce / weaken → decay
Slowave adapts the salience of stored memories based on your agent's feedback.
Over time, your agent’s feedback shapes what Slowave returns without needing a separate LLM judge inside the memory layer.
Memory becomes something continuously shaped by use rather than a static collection of facts waiting to be retrieved.
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.
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.
[!IMPORTANT] No LLM API key required.
To remove Slowave, see the removal guide.
Slowave is transparent to your work.
You keep working with your agent as usual.
When your agent encounters a durable fact or decision, the installed lifecycle directs it to preserve that claim.
On a later task, Slowave can return a compact, scoped set of relevant recorded memories to your agent, so that it can act upon its own memories.
What you will see while working with your agent:
Optionally you will see:
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.
Start the local dashboard with:
slowave dashboard
Open the dashboard in your browser, where you can inspect:
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
[!IMPORTANT] The default embedding model downloads from Hugging Face on first use (~45 MB, cached locally). Subsequent runs work offline.
Memory is stored in plaintext in the current OS user's application-data directory. Slowave does not send it to a hosted memory service. See runtime data location.
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.
See architecture.md and design.md for more details.
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.
[!IMPORTANT] Slowave is public beta software. APIs, configuration, and storage schema may change, and migrations are not guaranteed before stable release.
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.
Slowave is open source under the AGPL-3.0-or-later license.
Contributions are welcome, especially in:
See CONTRIBUTING.md before submitting a pull request.
Slowave is open source under the GNU AGPL-3.0-or-later license.
434 commits
78 commits
Python
91.3%
TypeScript
6.5%
CSS
1.7%
A living local memory layer for your AI tools.
2
stars
512
commits
Python
primary language
Sep 14, 2026
updated
Living memory layer across your AI tools.
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 designed as an adaptive memory layer rather than a static retrieval or summarisation system; it approaches agent memory from a different angle:
An effective memory system should help an agent achieve its goals.
Agent memory is not only a retrieval problem. A useful memory system should retain what helps the agent, weaken what does not, and continuously adapt based on use.
Slowave addresses this with a continuous feedback loop between your agent and its memory:
remember → recall → use → feedback → reinforce / weaken → decay
Slowave adapts the salience of stored memories based on your agent's feedback.
Over time, your agent’s feedback shapes what Slowave returns without needing a separate LLM judge inside the memory layer.
Memory becomes something continuously shaped by use rather than a static collection of facts waiting to be retrieved.
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.
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.
[!IMPORTANT] No LLM API key required.
To remove Slowave, see the removal guide.
Slowave is transparent to your work.
You keep working with your agent as usual.
When your agent encounters a durable fact or decision, the installed lifecycle directs it to preserve that claim.
On a later task, Slowave can return a compact, scoped set of relevant recorded memories to your agent, so that it can act upon its own memories.
What you will see while working with your agent:
Optionally you will see:
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.
Start the local dashboard with:
slowave dashboard
Open the dashboard in your browser, where you can inspect:
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
[!IMPORTANT] The default embedding model downloads from Hugging Face on first use (~45 MB, cached locally). Subsequent runs work offline.
Memory is stored in plaintext in the current OS user's application-data directory. Slowave does not send it to a hosted memory service. See runtime data location.
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.
See architecture.md and design.md for more details.
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.
[!IMPORTANT] Slowave is public beta software. APIs, configuration, and storage schema may change, and migrations are not guaranteed before stable release.
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.
Slowave is open source under the AGPL-3.0-or-later license.
Contributions are welcome, especially in:
See CONTRIBUTING.md before submitting a pull request.
Slowave is open source under the GNU AGPL-3.0-or-later license.
434 commits
78 commits
Python
91.3%
TypeScript
6.5%
CSS
1.7%