feat(framework): repo files as persistent AI memory (#260)#261
Merged
Conversation
6e5569c to
ea1903a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #260. Part of #204 (Open Loop). Rom: systematically use special repo files as persistence + AI memory.
We already write DECISIONS.md. This adds the read side: the agent reads the repo memory files at the start of a run for context, and is told to keep the ones it owns current.
memoryoption; the files are framed into the system prompt alongside personas + skills: current contents (context) + a maintain instruction (persistence). The agent has file access, so it does the writing.Correctness: DECISIONS.md is framework-owned (we write it from the decisions ledger at run end), so it is framed read-only. Otherwise the agent could edit it and our end-of-run write would clobber that.
Verified e2e with
--fake --cwd <dir with memory files>:New exports: loadRepoMemory / memoryFraming / MEMORY_FILES / MemoryFile / LoadedMemory. Typecheck + 113 framework tests green. Changeset minor.
Follow-ups (separate): a summarize/update step on the ledger, and truncation for large files.