telexed ~ c / 8de149bb-84eradar:40 · agent_toolLIVE
← back
NO.
#8de149bb
Topic
AGENTS & TOOLS
Source
Hacker News · AI Agent
Published
2026-04-25 08:53:53
Importance
★ 4/10 — radar 40
`wuphf`: Git-backed markdown wiki for agent memory
FIG-0081:1

`wuphf`: Git-backed markdown wiki for agent memory

An agent memory layer keeps notes, facts, and wiki pages in markdown + git, then adds BM25 and SQLite on top. Portable by default, auditable in commit history, and worth watching if you want agent memory without a heavier stack.

[ KEY POINTS ]
  1. Each agent writes to agents/{slug}/notebook/.md and promotes reviewed notes into team/, separating scratchpad from canonical memory.
  2. Retrieval uses Bleve BM25 plus SQLite, with 85% recall@20 on a 500-artifact, 50-query benchmark before adding vectors.
  3. Entity facts live in append-only JSONL; a synthesis worker rebuilds briefs every N facts, so provenance stays visible in git log.
  4. The design bets on durable files, stable IDs, redirects, and linting for stale or contradictory entries instead of a dashboard-heavy memory stack.
Originalgithub.com/nex-crm/wuphfRead original →

// related