RFC: Hindsight long-term memory for Flue agents #300
benfrank241
started this conversation in
Feature Request
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
Add optional long-term memory for Flue agents backed by Hindsight, an open-source agent memory system, so agents can recall durable facts across sessions rather than only within a sandbox run.
Background & Motivation
Flue is a sandbox agent framework — great for scoped, ephemeral runs. But agents often benefit from memory that persists across runs: durable facts about a user/domain and consolidated knowledge, recalled on demand. Today a Flue user would wire that up by hand.
Hindsight organizes memory biomimetically into world facts, experience facts, and consolidated mental models, with multi-strategy recall (semantic + BM25 + graph + temporal) and a
reflectoperation. It exposes a REST API and an MCP server, so it slots in without Flue taking on a storage dependency.Goals
Example
Illustrative only — exact surface to match Flue's conventions:
Prior art
Hindsight already ships as a first-party memory provider in NousResearch's Hermes agent, alongside honcho, mem0, supermemory, and byterover. I'm the maintainer; opening this as an RFC per CONTRIBUTING to gauge interest before proposing anything concrete.
Beta Was this translation helpful? Give feedback.
All reactions