Live data from Hacker News

Viewing profile — zaydmulani

zaydmulani

HN member
Joined
Thu, Apr 30, 2026, 9:59 PM UTC
HN karma
28
Public activity
28 items

About zaydmulani

No profile information was provided.

Recent public activity

  1. story
  2. comment
  3. comment
  4. comment
  5. comment
  6. story
  7. story
  8. story
  9. 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.

  10. comment
    Comment #48474962

    [flagged]

  11. comment
    Comment #48404177

    [flagged]

  12. comment
  13. comment
    Comment #48397923

    Would genuinely be interested to see it. link? The graph traversal approach seems underexplored compared to pure vector search.

  14. 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.

  15. 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…

  16. comment
    Comment #48392974

    [flagged]

  17. 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…

  18. comment
  19. 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.

  20. 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.

  21. comment
  22. comment
  23. comment
  24. 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.

  25. 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.