Skip to content

Commit 27ba3cf

Browse files
committed
docs: remove competitor references from README
1 parent 6ca6ab0 commit 27ba3cf

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $ mem search "auth middleware"
2121

2222
## Why
2323

24-
Claude Code agents forget everything when a session ends. The usual fix — calling `mem_save` manually — has three failure points: the agent must decide what to save, remember to call it, and remember to call `mem_context` at the next start. Most sessions end without any memory saved.
24+
Claude Code agents forget everything when a session ends. Manual memory tools have three failure points: the agent must decide what to save, remember to save it, and remember to load it at the next start. Most sessions end without any memory saved.
2525

2626
`mem` uses Claude Code hooks that fire **reliably at session boundaries**. The infrastructure captures memory. The agent never has to think about it.
2727

@@ -198,16 +198,16 @@ hooks/
198198

199199
**Dependencies:** [`rusqlite`](https://crates.io/crates/rusqlite) (bundled SQLite + FTS5) · [`rmcp`](https://crates.io/crates/rmcp) (official Rust MCP SDK) · [`clap`](https://crates.io/crates/clap) · [`ratatui`](https://crates.io/crates/ratatui) (v0.2 TUI)
200200

201-
## vs. alternatives
201+
## Design goals
202202

203-
| | engram | mem_save | **mem** |
204-
|--|--------|----------|---------|
205-
| Capture trigger | Agent call | Agent call | **Hook (automatic)** |
206-
| Survives compaction | No | No | **Yes (PreCompact hook)** |
207-
| Context on start | Agent call | Agent call | **Automatic (SessionStart)** |
208-
| System deps | None | None | **None (bundled SQLite)** |
209-
| Search | | | **FTS5 + porter stemmer** |
210-
| MCP tools | Plugin | Manual | **6 built-in tools** |
203+
| | Manual memory tools | **mem** |
204+
|--|---------------------|---------|
205+
| Capture trigger | Agent must call | **Hook (automatic)** |
206+
| Survives compaction | No | **Yes (PreCompact hook)** |
207+
| Context on start | Agent must call | **Automatic (SessionStart)** |
208+
| System deps | Varies | **None (bundled SQLite)** |
209+
| Search | Varies | **FTS5 + porter stemmer** |
210+
| MCP tools | Varies | **6 built-in tools** |
211211

212212
## Contributing
213213

0 commit comments

Comments
 (0)