You can use IWE as memory backend for Claude Code #391
gimalay
announced in
Announcements
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.
Uh oh!
There was an error while loading. Please reload this page.
IWE now works as a memory backend for Claude Code. The
iweplugin stores what an agent learns across sessions as plain markdown in the repository's own IWE workspace, next to the project's other documents, committed and reviewed like any other file.What shipped:
iwe findqueries, and they travel with every clone, so a teammate's first session starts with what the team already knows./iwe:distillreads a session with you, proposes items with a quote from the conversation as evidence, and writes only what you keep. Every write goes throughiwe create --strict, so it is validated against the schemas your workspace binds before it lands.MEMORY.mdis the switch and the policy. One document, prose you own: what is worth keeping, how documents in this store are written, how to search before writing. Without it the plugin does nothing at all./iwe:initwrites it with you;/iwe:reflectreorganizes the store with you later (index fields, areas and hubs, entity pages, merges).injectionqueries in the policy's frontmatter. Deterministic, no model in the loop; the agent fetches a document only when the conversation turns to it.npx skills add iwe-org/skills, and any agent can read and write the same store through the CLI ornpx -y @iwe-org/mcp.The design and the reasoning behind it are in the blog post: https://iwe.md/blog/memory-that-lives-in-your-project/
Setup instructions are in the plugin repo: https://github.com/iwe-org/skills#iwe-memory
It is new. If it proposes the wrong things, or the right things in the wrong shape, or a schema check refuses something it should not, I would love to hear about it here.
All reactions