Viewing profile — zaydmulani
zaydmulani
HN member- Joined
- Thu, Apr 30, 2026, 9:59 PM UTC
- HN karma
- 28
- Public activity
- 28 items
- HN profile
- View on Hacker News ↗
About zaydmulani
No profile information was provided.
Recent public activity
- story
-
comment
Comment #49070225
[dead]
-
comment
Comment #49070209
[dead]
-
comment
Comment #49070199
[dead]
-
comment
Comment #49070183
[dead]
- story
- story
- story
-
comment
Comment #48474965
Checked out mori — the governance layer for multi-agent writes is exactly the gap mnemo doesn't address yet. Good work on that.
-
comment
Comment #48474962
[flagged]
-
comment
Comment #48404177
[flagged]
-
comment
Comment #48397928
[dead]
-
comment
Comment #48397923
Would genuinely be interested to see it. link? The graph traversal approach seems underexplored compared to pure vector search.
-
comment
Comment #48397023
Homebrew tap is on the roadmap. For now the fastest path on Mac is cargo install --path crates/mnemo-api or the Docker one liner. Will add a brew tap for v0.2.0.
-
comment
Comment #48397019
Currently mnemo doesn't have automatic forgetting it's on the v0.2.0 roadmap. The mitigation right now is that retrieval scoring weights recency, so older chunks naturally rank low…
-
comment
Comment #48392974
[flagged]
-
comment
Comment #48392681
Done "Why mnemo" section added to the README with a comparison table. Short version: single Rust binary, zero cloud, petgraph knowledge graph with multi-hop traversal, scored retri…
-
comment
Comment #48392456
[dead]
-
comment
Comment #48392090
Different project — mnemon is a Python-based memory tool. mnemo is a Rust binary with a knowledge graph layer and REST API sidecar. Similar name, different approach.
-
comment
Comment #48392088
Yes — cargo run -p mnemo-bench. Ships with 12 benchmarks. Full retrieval pipeline is ~4ms on debug build. Numbers are in the README performance table.
-
comment
Comment #48392081
[dead]
-
comment
Comment #48392080
[dead]
-
comment
Comment #48391450
[dead]
-
comment
Comment #48391447
Fair. The differentiator is the Rust single binary + petgraph knowledge graph. No Python runtime, no cloud, survives restarts. Built it because nothing local fit that profile.
-
comment
Comment #48391442
BM25 is in my other project vecdb. mnemo's retrieval is graph-first — entity deduplication, multi-hop traversal, session-scoped scoring. Different tradeoff, not an oversight.