@abix5/pi-hindsight
v0.2.2
Published
pi coding-agent extension: long-term project memory via a local Hindsight instance (recall + memorize)
Maintainers
Readme
pi-hindsight
Long-term project memory for the pi coding-agent, backed by a local Hindsight instance.
Need Hindsight running first? On macOS the fastest way to spin up a local instance is hindsight-setup — simple and quick.
pi-hindsight gives the agent a durable memory of your project that survives across sessions and context compaction. It works in two directions:
- Recall — before each turn it searches the memory bank and injects the few most relevant facts into the agent's context, so past decisions, pitfalls and project facts are not forgotten or re-derived.
- Memorize — when the conversation is compacted (or on demand), it extracts the durable system knowledge from the slice that is about to be discarded, de-duplicates it against what the bank already knows, and stores only what is new — all in the background, without blocking the agent.
A small status widget shows both contours live:
🧠 ● pi-hindsight · auto ↙↗ · 16 docs · 153 facts
↙ recall · db migration command · found→injectedAuto-mode markers: ↙ = recall, ↗ = retain, auto off = both disabled.
How it works
Recall (read path — inline)
Runs on the before_agent_start hook. A cheap model turns the recent
conversation into a bank query and decides whether a lookup is even worth it
(meta-questions and chit-chat are skipped). Matching facts are fetched, de-duped
against facts already injected this session, and returned as an untrusted
reference block for the current turn. Nothing is rewritten or invented — facts
are injected verbatim and the main model weaves them in.
Two operations are supported:
recall(default) — return the raw relevant facts.reflect— ask Hindsight to compose a direct answer from the bank, used only for self-contained factual questions.
Memorize (write path)
Triggered on context compaction, the manual /mem-save command, and — as a
last-chance safety net — when a session is quit or replaced by /new (so an
un-memorized tail is not lost). It is never triggered by /reload (nothing
is lost there). Compaction and manual writes are fire-and-forget (the agent
never waits); the session-close write is awaited before the process exits,
bounded by a 60s cap so quitting can never hang.
The whole pipeline — distil → merge → verify → bank-aware dedup → store —
runs inside the extension via isolated model completions and a direct bank
write. It is invisible to the conversation: no agent turn is triggered,
nothing is injected into the chat, and the main model never reacts to it. All
the small-model steps go through a completion API (complete()), not a
conversation turn, so the write never pollutes context.
The bank-aware dedup step is what keeps facts from piling up. Before storing,
it asks the small model to cluster the note by meaning into a few standalone
queries, recalls the bank from those angles, and drops any bullet whose meaning
is already stored anywhere in the bank. This is the cross-document
deduplication that document_id cannot provide — the id only stops the same
transcript window from duplicating on re-ingest, not the same fact recurring
across different windows or sessions. A single whole-note query misses
already-stored facts on the note's other topics; grouping into a handful of
topical queries surfaces far more of them at a bounded number of requests.
Every write carries a deterministic document_id derived from the session
and the exact transcript window (pi- + sha256 of session + first/last entry
id). Re-ingesting the same window — a retried write, a repeated flush — upserts
the existing document in the bank instead of piling up duplicates. Each
stored window is also recorded in an append-only journal
(.pi/hindsight/dispatch-log.jsonl), which is what lets /mem-save all first
delete this session's previously stored documents from the bank and then
re-collect the whole session cleanly — no duplicate facts, however the windows
were cut before.
On startup the extension also syncs two extraction levers onto the bank
itself (retain_mission and observations_mission via the bank config API):
plain-language missions that steer Hindsight's own fact extraction and
observation consolidation toward durable engineering knowledge (decisions +
rationale, constraints, verified know-how, pitfalls, concrete locations) and
away from session narration and one-off task chatter. The sync is a no-op when
the bank already matches.
Review (/mem → Review tab)
Documents are stored to the bank immediately (so dedup and recall always
work against fresh knowledge), and every stored document is also placed in a
global review queue (~/.pi/hindsight/review-queue.jsonl, shared across
all projects). /mem opens a small local web UI (127.0.0.1, ephemeral port,
in your browser); the Review tab has a project navigation sidebar with a
pending-count per project, and each document expands to show its full text,
creation date, fact count and trigger — so you can:
- Approve — you are done with it; removes it from the queue (the bank is untouched).
- Edit — fix the text in place; the document is re-stored under the same
document_id, so the bank replaces the old facts with the corrected ones. - Delete — remove the document and its facts from the bank entirely.
Queue entries whose document never made it to the bank (a run that produced
nothing durable) are dropped automatically. The queue is an append-only event
log, so parallel pi sessions can write to it safely; /mem stop shuts the
server down (it also closes on session end).
Pointers & /mem-retain
Two markers track memory, answering different questions:
- Watermark — how far through the transcript has been memorized. It only
moves forward; the next write resumes right after it.
/mem-markadvances it to now without writing (mark everything so far as already processed). - Saved ranges — which blocks were already stored out-of-band by
/mem-retain./mem-retain <prompt>hands the agent a study task; the agent gathers what it needs and stores the durable facts immediately (so it works even with auto-retain off). The transcript range of that work is recorded, and at the next memorize it is wrapped inALREADY SAVEDmarkers so the extractor sees it for context but does not extract those facts a second time — no duplicates, no bank lookup, and the agent can keep using the facts in the conversation. The range is dropped once the watermark passes it.
Requirements
- pi coding-agent (provides the extension runtime, model registry, and host packages used by the extension APIs).
- A running Hindsight HTTP API — by default
http://localhost:8888, namespacedefault. On macOS, the easiest way to get one is hindsight-setup. v0.8.4+ recommended: recall usesprefer_observations(provenance-based dedup of raw facts superseded by observations). Older servers just ignore the flag — no error, but no server-side dedup either. - bun — the extension runs as TypeScript.
- A small model in your pi model registry for the recall/write pipeline
(
recallModelId/retainModelId). A single cheap model is enough. See Configuration.
No taskflow, jq, or curl is needed — the write path runs entirely in-process.
Install
The package declares pi.extensions, so the simplest install is:
pi install npm:@abix5/pi-hindsightThat registers the extension for pi automatically — then jump to step 3 (models) and step 4 (declare a bank).
Prefer to wire it by hand (or develop locally)? Do it manually:
Install the package:
npm install -D @abix5/pi-hindsightOr clone it somewhere stable if you prefer local development:
git clone https://github.com/abix5/pi-hindsight.git ~/tools/pi-hindsightAdd a loader in your project at
.pi/extensions/hindsight.ts:export { default } from "@abix5/pi-hindsight";For a local clone, point at the source path instead:
export { default } from "/absolute/path/to/pi-hindsight/src/index.ts";(Running pi inside this repo works out of the box — a loader is already present.)
Set your models globally in
~/.pi/agent/hindsight.json(see Configuration):recallModelIdandretainModelId. A single cheap model for both is fine.Declare a bank in the project's
.pi/hindsight.jsonto activate the plugin here (see below), trust the project, then/reloadin pi. Without a project bank the plugin stays dormant — no recall, no widget — so the loader is safe to keep globally and only wakes up in projects you opt in.Open the dashboard with
/mem→ the Status tab confirms the bank connection; the Settings tab is where you configure everything visually.
Configuration
Config is merged from three layers, later wins:
env defaults → global ~/.pi/agent/hindsight.json → project .pi/hindsight.json.
Put shared settings (baseUrl, namespace, models, language, missions, effort,
categories, auto-flags) in the global file once, and keep only the
per-project bank (and any project-specific overrides) in the project file.
The easiest way to edit both is the /mem dashboard's Settings tab, which
shows the two layers side by side and writes to the file you choose.
Activation is gated on a bank
The plugin only runs in a project that declares a bank:
"bankId": "my-project"in the project file → active, uses that bank."bankId": "auto"(project or global) → active, bank = project folder slug. Set it globally to opt every project in with a folder-derived bank.- No bank declared anywhere → dormant (a concrete
bankIdset only in the global file is ignored on purpose, so all projects never collapse into one shared bank).
A typical global ~/.pi/agent/hindsight.json:
{
"baseUrl": "http://localhost:8888",
"namespace": "default",
"recallModelId": "your-provider/small-model",
"retainModelId": "your-provider/small-model",
"memoryLanguage": "en",
"autoRecall": true,
"autoMemorize": true,
"recallOperation": "recall",
"recallFilter": "model",
"recallEffort": "normal",
"recallMaxQueries": 8,
"recallMaxLines": 8,
"recallContextTokens": 5000,
"factCategories": {
"goal": "on",
"decisions": "on",
"constraints": "on",
"knowhow": "on",
"pitfalls": "on",
"facts": "on",
"code": "off",
"domain": "off"
}
}Then each project you want memory in just declares its bank:
{ "bankId": "my-project" }| Key | Env | Default | Meaning |
| --- | --- | --- | --- |
| bankId | HINDSIGHT_BANK | — (dormant) | Memory bank id; set it (or "auto") to activate the plugin in a project |
| baseUrl | HINDSIGHT_BASE_URL | http://localhost:8888 | Hindsight API base URL |
| namespace | HINDSIGHT_NAMESPACE | default | API namespace (path after /v1) |
| autoRecall | HINDSIGHT_AUTO_RECALL | true | Search memory before each turn (toggle in the /mem Settings tab) |
| autoMemorize | HINDSIGHT_AUTO_MEMORIZE | true | Write memory on compaction and session close (toggle in the /mem Settings tab) |
| recallModelId | HINDSIGHT_RECALL_MODEL | pi default | Small model for recall query-building / filtering |
| retainModelId | HINDSIGHT_RETAIN_MODEL | pi default | Small model for the write pipeline (extract / merge / verify / dedup) |
| recallOperation | HINDSIGHT_RECALL_OPERATION | recall | recall (facts) or reflect (answer) |
| recallEffort | HINDSIGHT_RECALL_EFFORT | normal | Recall thoroughness: light / normal / thorough (set in the /mem Settings tab) |
| recallMaxQueries | HINDSIGHT_RECALL_MAX_QUERIES | 8 | Hard ceiling on total bank queries per recall |
| factCategories | — | all on except code/domain | Tri-state map of which categories to extract (set in the /mem Settings tab) |
| recallFilter | HINDSIGHT_RECALL_FILTER | model | model (LLM-picked) or off |
| recallMaxLines | HINDSIGHT_RECALL_MAX_LINES | 8 | Max facts injected per turn |
| recallContextTokens | HINDSIGHT_RECALL_CONTEXT_TOKENS | 5000 | Recent context budget for the query |
| memoryLanguage | HINDSIGHT_MEMORY_LANGUAGE | en | Language all stored memory is written in (code identifiers stay verbatim) |
| retainMission | HINDSIGHT_RETAIN_MISSION | engineering-focused | Bank-side extraction mission, synced to the bank at startup |
| observationsMission | HINDSIGHT_OBSERVATIONS_MISSION | engineering-focused | Bank-side observation-consolidation mission, synced at startup |
| dispatchLogPath | HINDSIGHT_DISPATCH_LOG_PATH | .pi/hindsight/dispatch-log.jsonl | Journal of stored documents (powers /mem-save all cleanup) |
| countsRefreshMs | HINDSIGHT_COUNTS_REFRESH_MS | 20000 | Widget counter refresh interval |
| debug | HINDSIGHT_DEBUG | false | Verbose logging (full prompts/bodies) — may leak sensitive data |
The write pipeline runs entirely off-conversation via
retainModelId— no agent turn, no context pollution — and includes the bank-aware cross-document dedup step.recallModelId/retainModelIdcan be the same small model.
Commands & shortcuts
Five commands, plus one browser hub for everything else:
| Command | What it does |
| --- | --- |
| /mem [stop] | Open the dashboard in the browser: Review · Settings · Log · Status. This is the single place for configuration, document review, history, and health. Works even when the project is dormant (set a bank in Settings to activate). /mem stop closes the server. |
| /mem-save [all] | Save the accumulated context now. /mem-save all re-collects the whole session (deletes this session's previously stored documents first, then re-ingests). |
| /mem-retain <prompt> | Have the agent study something and store it to the bank now (works even with auto-memorize off). |
| /mem-recall <query> | Ad-hoc search of the memory bank. |
| /mem-mark | Mark everything up to now as processed (move the pointer, write nothing). |
| alt+h | Quick in-terminal memory operation history. |
Everything that used to be its own command — auto toggles, fact categories,
recall effort, status, log, document review — now lives in the /mem
dashboard's tabs.
Agent tools
The extension also registers tools the agent (and subagents) can call directly:
hindsight_recall, hindsight_reflect, hindsight_retain.
Injected memory appears in the chat as a 🧠 recall block; a memory write shows
live on the widget's second line (see below).
What gets stored
Memory is facts only, never invented — extractive from the actual conversation. Stored: goals, decisions with their rationale, standing constraints/preferences, verified know-how, pitfalls (what was tried and failed), and non-obvious facts & locations (paths, endpoints, env-var names, ports).
Never stored: code diffs or raw tool output, assistant chatter, unexecuted plans, status updates ("README updated…", "I will check…"), completed one-off task goals, hedged guesses, transient details (line numbers, timestamps, run ids), or secret values — only where a secret lives (env-var name, config path) is kept.
Every candidate bullet must pass a future-value test: it is stored only if a future agent knowing it would act differently — skip a re-discovery, avoid a repeated failure, respect a standing constraint, or find something faster. Most transcript slices contain nothing durable, and an empty result is a normal outcome, not a failure.
All memory is written in one configured language (memoryLanguage, default
English) regardless of the conversation's language, so the same fact never
exists in two tongues and semantic search stays sharp. The dedup phase and
deterministic document_ids mean the same fact is not stored twice, even
across sessions.
Fact categories (/mem → Settings)
What gets harvested is configurable. Each category is tri-state:
✓on — extract it: its heading + guidance + example steer the extractor;○off — neutral: not mentioned at all (neither asked for nor forbidden);✗ban — explicitly excluded: the extractor is told to drop it.
| Category | Default | What it captures |
| --- | --- | --- |
| Goal | ✓ | The objective and its definition of done |
| Decisions | ✓ | Choices made + rationale / trade-offs |
| Constraints & preferences | ✓ | Standing user rules (style, always/never, tooling) |
| Know-how | ✓ | Verified procedures: commands, configs, fixes that worked |
| Pitfalls | ✓ | Approaches tried that FAILED, and why |
| Facts & locations | ✓ | Endpoints, ports, versions, env-var names, where secrets live |
| Code map | ○ | Which file/symbol holds what, module responsibilities |
| Domain knowledge | ○ | External / business facts, terminology |
Edit them in the /mem dashboard's Settings tab. State lives in
.pi/hindsight.json under factCategories and steers the write pipeline's
extraction.
Recall effort (/mem → Settings)
Recall does not use categories. Instead it turns the user's question plus recent
context (recallContextTokens) into several bank queries from different
angles, picks the relevant hits, and — when set to thorough — asks follow-up
queries based on what it found, until it has enough or the query budget
(recallMaxQueries) runs out.
| Effort | Queries / round | Rounds | Feel |
| --- | --- | --- | --- |
| light | 1 | 1 | one quick lookup |
| normal (default) | 2–3 | 1 | a few angles, one pass |
| thorough | 3–4 | up to 3 | iterative: later rounds build on earlier hits |
Widget legend
Two fixed lines. Line 1 is the bank and its counts; line 2 is the live lifecycle of the current operation.
↙ recall · <query> · found→injected memory found and injected this turn
↙ recall · <query> · nothing found looked, bank had nothing relevant
↙ reflect · <query> · answered bank composed a direct answer
↙ skipped (reason) no lookup (meta-question / chit-chat)
building doc… memorize: extracting the report
doc ✓ · dedup -2 · sending to bank… 2 known bullets dropped, storing rest
doc ✓ · dedup ✓ · bank ✓ · +1 stored one new document
doc ✓ · dedup ✓ · nothing new (all known) everything was already remembered
doc ✗ (nothing durable to store) the slice had no reusable knowledgeDevelopment
bun install # dev types only; pi provides the runtime packages
npx tsc --noEmit # type-checkSource lives in src/; the runtime entry is .pi/extensions/hindsight.ts
(a 3-line re-export). After editing src/, just /reload in pi — no build step.
License
MIT — see LICENSE.
