Kage Review (2026): Pricing, Features & Honest Verdict
TLDR
Kage is a git-native memory framework for AI coding agents. It stores lessons and decisions as git-tracked packets and verifies every citation against your real code before saving it, so your agents stop acting on stale or made-up context. Clever and free, but early-access and developer-only. Best for: developers using AI coding agents. Price: Free, open source. Rating: 7.8/10.
What is Kage?
Kage is a memory layer for AI coding agents. The problem it tackles is that agents like Claude Code or Cursor forget what they learned in past sessions, and the memory tools that try to fix that often store hallucinated or outdated facts. Kage captures the lessons, bug fixes, and decisions from your coding sessions as memory packets, then verifies every citation against your actual repository before writing it. If a reference does not match the source, it gets rejected.
The key design choice is that it is git-native. Memory packets are stored as git-tracked JSON inside your repo, not hidden away in a vendor database. You can see them, diff them, and version them like any other code. Kage is an open-source project under the kage-core org, with a 2026 copyright and an npm package. We could not find a named founder, company, or any independent reviews, so treat it as a promising but unproven early-access tool from an anonymous maker.
The timing makes sense. AI coding agents have gone from novelty to daily driver for a lot of developers, and the weak link is consistency: an agent that solved a problem on Tuesday will happily reintroduce the same bug on Thursday because it has no durable memory of what it learned. The first wave of memory tools tried to fix this with vector databases, but they inherited the model’s habit of confidently storing things that are not true. Kage’s answer, verifying against the actual code, is a direct response to that failure, and it is a smarter framing of the problem than most rivals start from.
What Are Kage’s Key Features?
Verified memory capture
This is the feature that sets Kage apart. Before any memory is written, Kage checks its citation against your repo. If an agent claims a fact about code that does not actually exist in the source, the citation is rejected at write time. That means the memory you build up is grounded in your real codebase, not in whatever the model imagined. For anyone burned by agents confidently referencing functions that were never there, this is the whole point.
Stale-memory filtering and PR-time validation
Code changes, and memory that was true last month can quietly become wrong. Kage runs a kage pr check that warns you when code changes have invalidated stored memories, and it withholds outdated information from recall. So your agent is not just remembering things, it is remembering things that are still true, which is the harder and more valuable problem.
Session warm-start
When you start a session, Kage opens it with a digest of the relevant packets it has learned, so the agent is already up to speed instead of starting cold. You set this up with kage init, and because the packets are git-visible JSON rather than opaque vendor state, you always know exactly what context your agent is being primed with.
Multi-agent and cross-machine support
Kage works with Claude Code, Cursor, Cline, and other MCP clients, and the free tier supports up to 15 agents. It syncs across machines using private git remotes you control, and it tracks token-savings receipts per recall so you can see what the memory is actually buying you. The free Cloud option adds cross-machine sync behind one private MCP link, with verification staying client-side so the cloud never sees your code.
How Much Does Kage Cost?
Kage is free. The open-source core is described as $0 forever, with no account and no API key required. It includes the verified memory, the Truth Report, auto-capture, repair, the live viewer, 15 agents, and kage sync over your own git remote. For a solo developer or self-hoster, that is the complete product at no cost.
Kage Cloud is also currently free, in early access, and is gated behind a waitlist. It adds cross-machine packet sync behind a private MCP link while keeping verification on your side. A hosted Team tier with shared memory and review gates is listed as coming soon, but it has no published price, so you cannot yet plan around its long-term cost.
Against the paid market, Kage is striking. Mem0 charges around $19 a month for its Standard plan and $249 for Pro with graph memory, Supermemory runs usage-based after a $5 monthly allowance, and Zep is credit-based with a free tier. Kage gives away its core entirely, which makes it easy to try. The honest caveat is that with no paid tier live, its business model and longevity are unproven.
That free-forever core is more than a teaser, too. Because the memory lives in your own git remote and verification runs client-side, you are not dependent on Kage’s servers to keep using what you have built. Even if the project stalled tomorrow, your packets would still be sitting in your repo as plain JSON. That self-hostable nature is a real hedge against the longevity risk that usually comes with adopting a tool from an anonymous, early-stage maker, and it is a meaningful contrast with the managed services where your memory lives on someone else’s infrastructure.
| Plan | Price | Plan Features | Best For |
|---|---|---|---|
| Open Source | $0 forever | Verified memory, Truth Report, receipts, auto-capture, repair, live viewer, 15 agents, kage sync over your own git remote, no account or API key | Solo developers and self-hosters |
| Kage Cloud | $0 (early access) | Packets sync across machines behind one private MCP link, verification stays client-side, waitlist-gated | Developers wanting cross-machine sync |
| Team | Coming soon | Shared team memory with review gates and a PR-reviewed trust model, hosted | Teams wanting shared, governed agent memory |
Who is Kage Best For?
Use Kage if you lean heavily on AI coding agents and are tired of them acting on stale or invented context. It is ideal for developers using Claude Code, Cursor, or Cline who want memory they can actually trust, verified against their real code and tracked in git. Solo developers and self-hosters who are comfortable on the command line will get the most from it, and the price, nothing, makes it low-risk to adopt.
Skip Kage if you want a polished, managed memory API with a company and support behind it, since this is early-access and anonymous. Skip it too if you are not comfortable with git and MCP or CLI tooling, because it is firmly a developer tool, not a no-setup product. Teams that need shared, governed memory today will have to wait, since the Team tier is not yet available or priced.
There is also a philosophical fit to consider. Kage assumes you want to own and inspect your agent’s memory rather than trust a black box. If you like that your context lives in git where you can audit and roll it back, Kage will feel right. If you would rather not think about where the memory lives and just want an API to call, a managed service like Mem0 will be a smoother experience even if you give up that transparency. Neither is wrong, it depends on how much control you want over what your agent remembers.
Best Kage Alternatives
Mem0
Mem0 is the most popular AI agent memory layer, offered as a managed API. Its Standard plan is around $19 a month with vector search, and Pro is $249 a month with graph memory. It is more established and easier to plug in than Kage, but it is a managed service that stores your memory on its side, and it does not verify citations against your source code the way Kage does.
Supermemory
Supermemory is a universal memory MCP with first-party plugins for Claude Code, Cursor, and OpenCode. It has a free plan that includes about $5 a month of usage, then bills pay-as-you-go. It is very easy to wire into dev tools, but it is usage-based rather than free-forever, and it is general-purpose memory rather than the code-verified, git-tracked model Kage uses.
Zep
Zep uses a temporal knowledge graph to track when facts were true, built on its Graphiti engine. It has a free tier and is credit-based, scaling up significantly for heavy use. Zep’s time-aware angle overlaps with Kage’s stale-memory filtering, but Zep is a hosted service focused on general agent memory, where Kage is git-native and verified against your actual repo.
Final Verdict: Is Kage Worth It?
Kage is one of the more thoughtful takes on AI agent memory we have looked at. Verifying every citation against your real code before storing it, and pulling stale memories out of recall, addresses the exact failure mode that makes most agent memory untrustworthy. That it does this in git-tracked JSON you can actually inspect, and gives the core away for free, makes it an easy recommendation to try.
The reservations are about maturity, not the idea. It is early-access, the Cloud is waitlist-only, the Team tier is unpriced, the maker is anonymous, and it demands real comfort with git and the command line. For developers who already build with AI coding agents and want memory they can trust, Kage is well worth installing, since it costs nothing. Less technical users and teams needing a hosted, supported product should wait for it to mature.
Our rating reflects a tool that is strong on substance and early on proof. The verification model is the best answer to agent memory we have seen, the git-native transparency is a real differentiator, and giving the core away for free removes any reason not to try it, which is why it scores well. We stopped short of the very top because the claims are unverified by anyone outside the project, the hosted tiers are not ready, and the audience is narrow. If you live in Claude Code or Cursor and have been bitten by an agent forgetting what it learned, this is one of the more worthwhile experiments you can run this month, and it will not cost you a cent.
Kage Pros & Cons
What We Like
- Verifies every citation against your repo before storing it, rejecting hallucinated references at write time
- Memory packets are git-tracked JSON you can see and version, not hidden vendor state
- Open-source core is free forever with no account or API key required
- Works across Claude Code, Cursor, Cline, and other MCP clients, with up to 15 agents free
What Could Be Better
- Early access with no independent reviews or track record yet
- Cloud is waitlist-only and the Team tier is unpriced and unavailable
- Developer-only: requires comfort with git and MCP or CLI tooling
Kage FAQ
What is Kage?
Kage is a git-native memory framework for AI coding agents. It captures lessons, bug fixes, and decisions from coding sessions as git-tracked memory packets, and verifies every citation against your actual source code so agents do not act on stale or hallucinated information.
How much does Kage cost?
Kage is free. The open-source core is $0 forever with no account or API key, and Kage Cloud is currently $0 in early access. A hosted Team tier is listed as coming soon with no published price yet.
Is Kage worth it?
If you rely on AI coding agents and are tired of them acting on outdated context, yes. The verified, git-tracked memory approach is genuinely useful and free. The caveats are that it is early-access, CLI-heavy, and from an anonymous maker.
What are the best Kage alternatives?
Mem0 (around $19/mo Standard, $249/mo Pro) as the popular managed memory API, Supermemory (free plan with $5/mo usage then pay-as-you-go) for easy dev-tool integration, and Zep (free tier, credit-based) for time-aware memory.
Does Kage offer a free plan?
Yes. The open-source core is free forever with no account or API key, and includes verified memory, auto-capture, and up to 15 agents. Kage Cloud is also free during early access.
Who is Kage best for?
Kage is best for developers who use AI coding agents like Claude Code, Cursor, or Cline and want reliable, git-tracked memory that is verified against their real code. It suits solo developers and self-hosters comfortable with git and the command line.






