Introducing Kilo Memory: Project-Scoped Memory for Your Agents Kilo has introduced Kilo Memory, a local, project-scoped memory system for AI coding agents that stores session digests, project environment details, user corrections, and explicit memory updates to share context across sessions and worktrees. The feature, available in Kilo's CLI and VS Code Agent Manager, captures high-signal information on session close and recalls it via startup injection, prompt-targeted recall, and an explicit tool, with a consolidation step to keep memory lean and token costs low. Introducing Kilo Memory: Project-Scoped Memory for Your Agents Your agents shouldn't have to re-learn your project every session The other day, one of our engineers was debugging an issue in Kilo’s CLI. He’d spent a full session isolating the problem, identifying the root cause, and narrowing down the fix. Then his session timed out. He started a fresh one, and the agent immediately tried the exact thing he’d already ruled out twenty minutes earlier. This is a familiar frustration. Every new AI coding session starts from zero. The agent has to re-derive your project structure, re-read your test setup, re-figure out your deployment pipeline. It doesn’t know that you prefer vitest over jest, that the packages/core directory has a weird circular dependency you’ve been working around, or that the last three sessions all failed because of a missing environment variable. We built Kilo Memory https://github.com/Kilo-Org/kilocode/pull/11172 to fix that. How engineers actually work now The way we write code has changed. I don’t have one terminal open with one coding session anymore. On a typical day, I might have: A CLI session refactoring a module A VS Code Agent Manager tab running tests in parallel Another session handling a quick PR review An agent in GitHub dealing with a bug in a related service That’s four surfaces, all working in the same repo, all starting with no shared context. Each new session is a blank slate that has to bootstrap itself — read file calls, directory traversals, grepping through git history just to understand what happened an hour ago. Multiply that by a team, and you’ve got agents spending significant portions of their context window just getting oriented. What Kilo Memory does Kilo Memory is a local, project-scoped memory system. Memories are stored in Kilo's global data directory, with each repository getting its own isolated memory store for example,