
memories.sh
One layer for memories, skills, and rules across any agent
52 followers
One layer for memories, skills, and rules across any agent
52 followers
memories.sh is an open source tool that abstracts the shared memory layer for AI coding agents. Save rules, skills, decisions, and project facts once, then generate native configs for Claude Code, Cursor, Copilot, Windsurf, Gemini, and more. Get semantic recall, local-first SQLite that works offline, and optional cloud sync. Includes CLI, MCP server, and TypeScript SDK middleware for memory-aware AI apps.







LogiCoal
This is intriguing. How does it maintain memories in context on new sessions without injecting all of the definitions on a session initialization?
@bmooreinsaan Great question. We don’t inject the full memory set on session initialization. Each new session runs a `get_context` retrieval that pulls a small, scoped set: always-on rules plus the most relevant memories for the current task (working memory first, then long-term). Everything else stays in the memory store and is fetched only if it becomes relevant, so context stays lightweight while memory persists across sessions.