Vectorize pulled 1,668 new GitHub stars for its open-source Hindsight project in a single day, pushing the repository's total to 28,336 on the trending list for 25 September 2026 S¹. Created last October P⁴, the project offers a memory layer for AI agents that, according to its maintainers, lets assistants accumulate knowledge from prior interactions instead of simply re-displaying past conversation logs S¹.
My read: This is the fastest star velocity I've tracked for an agent memory project, and the architecture in the API README, PostgreSQL with pgvector handling temporal, semantic and entity memory P⁵, is concrete enough to evaluate. But the README's superlatives, "most accurate ever tested" and "eliminates RAG shortcomings", are marketing language attached to a single benchmark. I'd want to see the LongMemEval paper and the claimed independent reproduction before treating those as settled. The Fortune 500 production claim has zero named customers.
What Hindsight actually does, according to its own API documentation, is give AI agents persistent memory through three layers: temporal memory for when things happened, semantic memory for meaning, and entity memory for tracking people, objects and relationships P⁵. The system runs on PostgreSQL with pgvector, the open-source extension that lets a database find conceptually related text without a separate search engine P⁵. A team already running Postgres could add agent memory without standing up new infrastructure. For a platform engineer maintaining a Postgres-backed customer support bot, that means the path to persistent agent memory is installing one extension and cloning one repo, rather than budgeting for a dedicated vector database and a new vendor relationship.
The maintainers position Hindsight against two entrenched approaches. Their argument is that both RAG — retrieval-augmented generation, and knowledge graphs pull stored information on demand but never adapt based on what an agent previously learned from interacting with a user S¹. RAG, the technique most production agents use today, fetches relevant documents from a vector store and feeds them into the model's context window. Knowledge graphs map relationships between entities in a structured database. Hindsight's pitch is that neither approach lets an agent improve its behaviour over time the way a person does after repeated conversations.
Hindsight's benchmark claims rest on unreleased evidence
The strongest claim in the README is that Hindsight achieved state-of-the-art performance on LongMemEval, a benchmark for long-term agent memory, and that researchers at the Virginia Tech Sanghani Center for Artificial Intelligence and Data Analytics, along with The Washington Post, separately validated those numbers S¹. The maintainers also point out that rival vendors' published scores are their own, not independently checked S¹. Neither the benchmark paper nor the reproduction data are linked in the README, and the Washington Post reference means technical collaborators reproducing numbers, not a journalistic endorsement. The Fortune 500 production claim comes with no named companies S¹. Neither the benchmark paper, the reproduction data, nor the underlying accuracy figures have been independently verified — no error bars are published, no evaluation code has been released, and the Fortune 500 deployment count is a vendor-provided figure.
For context on the attention this is drawing: A-Mem is a competing agent memory system from a NeurIPS 2025 paper. It holds 945 stars on GitHub P³, roughly 30 times fewer than Hindsight's 28,336. Trending velocity signals developer interest, not necessarily technical merit.
Operators can test Hindsight against their own retrieval pipeline
Hindsight ships under an MIT licence P⁴ and supports more than 25 LLM providers, per the maintainers S¹. The API README confirms a PostgreSQL-plus-pgvector backend P⁵, and the repository includes code in Go, Python, Rust and TypeScript P⁴. A team evaluating agent memory today could clone the repo, point it at an existing Postgres instance with the pgvector extension, and run it against their own LLM provider to compare retrieval quality against their current RAG pipeline. That is the test that matters: not a vendor benchmark, but your own conversations, your own documents, your own accuracy checks.
The next checkpoint is the LongMemEval benchmark paper and the claimed reproduction data. Until those are public and reviewable, the state-of-the-art claim rests on the maintainers' word.
Sources: S1 — vectorize-io/hindsight: Hindsight: Agent Memory That Learns · P2 — README.md · P3 — WujiangXu/A-mem · P4 — vectorize-io/hindsight · P5 — hindsight-api/README.md
Written from 5 sourced items, 4 of them primary.