<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sean Markwei</title>
    <description>The latest articles on DEV Community by Sean Markwei (@seanmarkwei).</description>
    <link>https://dev.to/seanmarkwei</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3957006%2F28b3f97f-b76e-4c5c-8e85-6b9b3bdbdf9d.jpg</url>
      <title>DEV Community: Sean Markwei</title>
      <link>https://dev.to/seanmarkwei</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/seanmarkwei"/>
    <language>en</language>
    <item>
      <title>The three seconds that almost convinced me I'd built the wrong thing.</title>
      <dc:creator>Sean Markwei</dc:creator>
      <pubDate>Wed, 05 Aug 2026 18:19:23 +0000</pubDate>
      <link>https://dev.to/seanmarkwei/the-three-seconds-that-almost-convinced-me-id-built-the-wrong-thing-2910</link>
      <guid>https://dev.to/seanmarkwei/the-three-seconds-that-almost-convinced-me-id-built-the-wrong-thing-2910</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for &lt;a href="https://dev.to/bugsmash"&gt;DEV's Summer Bug Smash: Smash Stories&lt;/a&gt; powered by &lt;a href="https://sentry.io/" rel="noopener noreferrer"&gt;Sentry&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;For about a day I thought &lt;a href="https://agentram.dev" rel="noopener noreferrer"&gt;AgentRAM&lt;/a&gt; was slow in a way I couldn't fix.&lt;/p&gt;

&lt;p&gt;The whole pitch of the thing is that it's simple. A memory API for AI agents, one call to store, one to recall, no vector database, no embeddings, no model sitting in the request path adding half a second every time. The entire reason to pick it over something heavier is that it should feel instant. So when a plain store-then-recall started taking three seconds, it wasn't just a bug. It felt like the premise was wrong.&lt;/p&gt;

&lt;p&gt;Three seconds. For a key-value read. I want to walk through how I chased it, because I went after the wrong suspect twice before I found the real one, and the real one was almost boring.&lt;/p&gt;

&lt;h2&gt;
  
  
  First suspect: my own code
&lt;/h2&gt;

&lt;p&gt;The obvious thing to blame is your own code, and usually you're right. So I read the request path line by line. Every step that touched the database was a single operation. Nothing looped. Nothing waited on anything it didn't need. There was no query hiding inside a helper that ran ten more, no accidental full scan, no work being done twice. I counted the trips to the database on one hand, and every one of them had a reason to be there.&lt;/p&gt;

&lt;p&gt;I added timing around each step anyway, because reading code and measuring it are two different things, and only the measuring counts. The timings came back fine. Everything I'd actually written was doing its work in a few milliseconds. So the three seconds were coming from somewhere I wasn't looking, and that's the bad kind of three seconds.&lt;/p&gt;

&lt;h2&gt;
  
  
  Second suspect: the database
&lt;/h2&gt;

&lt;p&gt;If it's not my code and the time is going somewhere between my code and the data, the database is the natural next place to point. Maybe the query planner was doing something dumb. Maybe I was missing an index and the two rows in my test table were lying to me about how a real query would behave.&lt;/p&gt;

&lt;p&gt;So I ran the queries directly against the database with timing on. They came back almost instantly. Of course they did, there was barely anything in the tables. The database wasn't slow. If anything it was sitting there wondering why I was accusing it.&lt;/p&gt;

&lt;p&gt;This is the part of debugging nobody warns you about. You rule out two suspects and instead of feeling closer you feel worse, because the time is definitely being spent, it's right there on the clock, and you've just proven it isn't going to either of the two places it should be going. It was real and I couldn't find where it lived.&lt;/p&gt;

&lt;h2&gt;
  
  
  The thing I wasn't measuring
&lt;/h2&gt;

&lt;p&gt;I had been timing the work. I had not been timing the distance.&lt;/p&gt;

&lt;p&gt;My API runs on one managed platform. My database runs on another. Both are good and I'd pick both again. But I had set them up at different times, on different days, thinking about different things, and I had never once stopped to ask where each of them physically was. They were in different regions. Every single query my API made was leaving one part of the world, crossing to another, and coming back. Not once per request. Once per query, and a request makes several. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2nwf528hwsvclgu8g5tn.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2nwf528hwsvclgu8g5tn.jpg" alt=" " width="799" height="336"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A few milliseconds of real database work, wrapped in a round trip that went most of the way around the planet and back, several times over, for one request. That was the three seconds. Not my code, not the query. Just distance I'd never thought to check, because the gap between two services feels like it should be nothing right up until the day it isn't.&lt;/p&gt;

&lt;p&gt;There was a second, smaller offender next to the first. The very first request after a quiet stretch was always the worst, clearly worse than the ones right after it. A cold connection. Nothing was keeping the path warm, so the first visitor after any lull paid to wake everything up.&lt;/p&gt;

&lt;h2&gt;
  
  
  The fix was smaller than the hunt
&lt;/h2&gt;

&lt;p&gt;I moved the API to the same region as the database. That was most of it gone immediately. The queries still do the same tiny amount of work, they just no longer take a world tour to do it.&lt;/p&gt;

&lt;p&gt;Then I gave the health check something useful to do. There's already a monitor pinging the service to check it's up, so I let that ping keep the path warm. Now the first real user of a quiet morning isn't the one who pays to start the engine. The monitor pays it instead, on a schedule.&lt;/p&gt;

&lt;p&gt;Three seconds went to about three quarters of one. Same code, same database, same two rows. All I changed was where things sat relative to each other and whether the path stayed awake. I didn't optimize a single query or rewrite anything. I moved two things closer together and stopped letting the connection go cold.&lt;/p&gt;

&lt;h2&gt;
  
  
  What stayed with me
&lt;/h2&gt;

&lt;p&gt;Here's the part I didn't expect to matter.&lt;/p&gt;

&lt;p&gt;When it was fixed and I sent the test request and watched it come back in under a second, it was very late and I was the only one awake. And that fast response came back from a service I had built by myself, that other people, developers I will probably never meet, were going to call from their own agents. That landed harder than the fix did. The number on the screen was small. The distance it had just closed, between me and whoever ends up using this, was the part I sat with.&lt;/p&gt;

&lt;p&gt;Then I closed the laptop, because it was late.&lt;/p&gt;

&lt;p&gt;If you're running two managed services and something feels slow for no reason you can find, check where they physically are before you start tearing your own code apart, and check whether the first request after a quiet stretch is the slow one. Distance and cold starts don't show up in a code review, because they aren't in your code. They're in the space between the two boxes, which is the part you never think to look at.&lt;/p&gt;

&lt;p&gt;I almost rewrote a thing that was never the problem. The problem was that I'd never asked my two services if they lived in the same city.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What's the one that got you? The bug you spent hours accusing your own code over, before you found out the real culprit was somewhere you'd never thought to look. I want to hear it.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;(I hit this one &lt;a href="https://agentram.dev/demo.html" rel="noopener noreferrer"&gt;building AgentRAM&lt;/a&gt;, a memory API for AI agents, in the open. The story's the point here though, tell me yours.)&lt;/em&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>bugsmash</category>
      <category>webdev</category>
      <category>ai</category>
    </item>
    <item>
      <title>You probably don't need a vector database for agent memory</title>
      <dc:creator>Sean Markwei</dc:creator>
      <pubDate>Sat, 25 Jul 2026 00:47:39 +0000</pubDate>
      <link>https://dev.to/seanmarkwei/you-probably-dont-need-a-vector-database-for-agent-memory-13je</link>
      <guid>https://dev.to/seanmarkwei/you-probably-dont-need-a-vector-database-for-agent-memory-13je</guid>
      <description>&lt;p&gt;Every guide to giving an AI agent memory starts the same way. Pick an embedding model, stand up a vector database, chunk your data, tune your retrieval. I assumed I would do exactly that. Then, before I wrote a single line of it, I looked hard at the problem I was actually trying to solve, and I could not find the part that needed any of it. &lt;/p&gt;

&lt;p&gt;This is the reasoning that led me to build a memory API for agents with no vector database, no embeddings, and no model in the loop. I am also going to tell you exactly when that decision is wrong, because it often is, and you should know which side of the line you are on before you copy anyone's architecture, including mine. &lt;/p&gt;

&lt;h2&gt;
  
  
  The question nobody was asking
&lt;/h2&gt;

&lt;p&gt;Here is what agents actually kept failing at. Not "find me something similar in meaning to this." They failed at "remember the specific thing I was told last session." &lt;/p&gt;

&lt;p&gt;Take a coding agent, the case most people reading this have felt. The agent that helped you on Monday has no idea on Tuesday that you already decided to use Postgres, that the deploy step runs through a specific script, that the client's name is spelled a particular way. Every session starts from zero. You re-explain the same context every morning. &lt;/p&gt;

&lt;p&gt;That is not a search problem. There is nothing fuzzy about it. You know the exact thing you want back and you know what to call it. It is a key, a value, and the ability to read it later, unchanged. &lt;/p&gt;

&lt;p&gt;Vector search answers a different question: "what are the things most similar in meaning to this query." That is a genuinely hard and genuinely useful capability. It is also not what "remember that we chose Postgres for this project" needs. That needs store under a name, get it back by that name, later, reliably. &lt;/p&gt;

&lt;h2&gt;
  
  
  Two kinds of memory that get blurred together
&lt;/h2&gt;

&lt;p&gt;Once I separated them, the whole design fell out. &lt;/p&gt;

&lt;p&gt;There is semantic memory: retrieval over a large body of text where you do not know the exact item you want, only roughly what it is about. "What did the design doc say about rate limits?" You want the relevant passage even if you cannot name it. This is what embeddings and vector databases are for, and they are very good at it. &lt;/p&gt;

&lt;p&gt;Then there is named memory: facts and state you can point at. "The user prefers metric units." "This project deploys on Fridays." "The last invoice number was 1043." You are not searching by meaning. You stored something specific and you want it back by name. &lt;/p&gt;

&lt;p&gt;A lot of what people call "agent memory" is the second kind wearing the first kind's clothes. The reflex is to reach for semantic search because that is what the tutorials show, when the actual need is a reliable place to put named facts and read them back. &lt;/p&gt;

&lt;h2&gt;
  
  
  When a vector database is the right call
&lt;/h2&gt;

&lt;p&gt;This is the important part, and it is the reason I can write the rest of this honestly. &lt;/p&gt;

&lt;p&gt;If your problem is retrieval over an unstructured corpus, you want embeddings. If an agent needs to answer questions about a hundred documents it has never been told how to index, if recall has to be fuzzy, if "find me the relevant thing" is the whole job, then a vector database is the correct tool and a key-value store is the wrong one. Do not let a simplicity pitch talk you out of the right architecture. If that is your shape, close this tab and go set up your embeddings. You will be happier. &lt;/p&gt;

&lt;p&gt;The mistake is not using vector search. The mistake is defaulting to it for a problem that was never semantic to begin with. &lt;/p&gt;

&lt;h2&gt;
  
  
  What you get back by not adding one
&lt;/h2&gt;

&lt;p&gt;Deciding my problem was named memory, not semantic memory, took an entire category of machinery off the table. No embedding step on every write. No index to tune. No re-embedding when you change models. No debugging why a retrieval that should have been obvious ranked third. No second piece of infrastructure to run and pay for. &lt;/p&gt;

&lt;p&gt;What is left is boring in the best way. You name a key, you store a value, you read it back exactly as you left it. It has a TTL if you want facts to expire on their own. You can list what an agent knows and do a literal text search over it. That is close to the entire surface area. &lt;/p&gt;

&lt;p&gt;And there is a point about trust hiding in that simplicity. This is memory. It is the thing your agent believes about the world. I would rather that be a store I can inspect completely and reason about with certainty than a similarity ranking I have to interrogate. For this specific job, the boring inspectable version is not a compromise. It is a feature. &lt;/p&gt;

&lt;h2&gt;
  
  
  The turn: where this beats your own Postgres table
&lt;/h2&gt;

&lt;p&gt;The honest objection at this point is: fine, if it is just keys and values, why not a table in the Postgres I already run? For a single agent, you should. That is not a business, that is a &lt;code&gt;CREATE TABLE&lt;/code&gt;. &lt;/p&gt;

&lt;p&gt;It changes the moment you have more than one agent that need to read each other's writes. A planner hands off to an executor. A research agent leaves findings for a writer agent. Now you are not storing memory, you are sharing state across processes, and you are suddenly building the boring hard parts yourself: namespacing so agents do not clobber each other, scoping so the right agents see the right memory, a permission model, key management. That is the part worth not writing again. Shared memory across agents, handed to you, is the actual reason to reach for a service here rather than a column in a table you already have. &lt;/p&gt;

&lt;p&gt;Durability and TTLs are commodity. Shared state with the access model already solved is not.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it deliberately is not, and what is next
&lt;/h2&gt;

&lt;p&gt;It does not do semantic search, and it will not pretend to. It does not read your documents and decide what matters. You direct what gets remembered. If you want meaning-based retrieval over a corpus, this is the wrong layer and I will tell you so. &lt;/p&gt;

&lt;p&gt;The one thing I know it is missing, and I only know because someone pushed me on it publicly, is a lifecycle state on memories: a way to mark a fact as retired rather than deleted, with a link to what replaced it, so an agent can tell which memories are still load-bearing and which are just history. That is a temporal problem, not a semantic one, which is exactly why it belongs in a store like this without dragging in embeddings. It is the next real thing I am building. &lt;/p&gt;

&lt;p&gt;If your agent memory need is genuinely semantic, use a vector database. If it is named facts and shared state, you may have been reaching for far more machinery than the problem asked for. That was the whole realization, and I built the tool I wished I had found instead of the one every tutorial pointed me at. &lt;/p&gt;

&lt;p&gt;I would rather be told where this reasoning breaks than agreed with, so if you see the hole, say so.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>webdev</category>
      <category>architecture</category>
    </item>
    <item>
      <title>How I built AgentRAM: a memory API for AI agents without a vector DB</title>
      <dc:creator>Sean Markwei</dc:creator>
      <pubDate>Thu, 28 May 2026 18:18:36 +0000</pubDate>
      <link>https://dev.to/seanmarkwei/how-i-built-agentram-a-memory-api-for-ai-agents-without-a-vector-db-281</link>
      <guid>https://dev.to/seanmarkwei/how-i-built-agentram-a-memory-api-for-ai-agents-without-a-vector-db-281</guid>
      <description>&lt;p&gt;I'm a solo developer in Accra, Ghana, and I just shipped my first real product. It's called AgentRAM (&lt;a href="https://agentram.dev" rel="noopener noreferrer"&gt;agentram.dev&lt;/a&gt;), and it's a memory API for AI agents. This is the build story and the stack.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem I kept seeing
&lt;/h2&gt;

&lt;p&gt;Over the last year, AI agents have gone from research toys to actual things people ship. But every agent that needs to remember anything across sessions runs into the same wall: where does the memory go?&lt;/p&gt;

&lt;p&gt;The existing answers all felt heavy for what they were doing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Mem0, Zep, Letta&lt;/strong&gt; want you to set up embedding pipelines and vector databases. Powerful for RAG-style semantic search, but overkill if you just need "remember that user X likes dark mode."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI's Assistants API memory&lt;/strong&gt; is locked to their platform and billed per-token, which means costs are unpredictable as conversation length grows.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rolling your own with Postgres or Redis&lt;/strong&gt; works, but it's a real chunk of infrastructure to maintain for each agent project, including auth, multi-tenancy, TTLs, and an HTTP layer.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something that handled the 70% case ("remember this fact about this agent") without the 100% solution's setup cost. So I built it.&lt;/p&gt;

&lt;h2&gt;
  
  
  What AgentRAM actually does
&lt;/h2&gt;

&lt;p&gt;One HTTP call to store. One to retrieve. Scoped by agent ID, with optional TTLs and shared namespaces.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Store a memory&lt;/span&gt;
curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://api.agentram.dev/memory &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-api-key: YOUR_KEY"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"agent_id":"my-agent","key":"user_pref","value":"dark mode"}'&lt;/span&gt;

&lt;span class="c"&gt;# Retrieve it&lt;/span&gt;
curl &lt;span class="s2"&gt;"https://api.agentram.dev/memory?agent_id=my-agent&amp;amp;key=user_pref"&lt;/span&gt;
&lt;span class="c"&gt;# {"value":"dark mode"}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's the whole interaction model. No embeddings, no vector similarity, no semantic chunking, no token accounting. Just durable key-value memory scoped per agent.&lt;/p&gt;

&lt;p&gt;Other endpoints fill in the practical needs: list all memories for an agent, full-text search across them, shared namespaces so multiple agents can read from a common pool, and atomic credit-based usage tracking so cost is predictable.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why not just Redis or Postgres?
&lt;/h2&gt;

&lt;p&gt;This is the question I keep wrestling with, so let me be honest about it.&lt;/p&gt;

&lt;p&gt;If you're already running infrastructure for your product, you should absolutely just add a memory table to your existing database. AgentRAM isn't for you.&lt;/p&gt;

&lt;p&gt;But for everyone else, and there are a lot of "everyone else" right now in the vibe-coding and agent-prototyping era, AgentRAM removes some real friction:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No new infra to provision&lt;/li&gt;
&lt;li&gt;No auth layer to write for your agents&lt;/li&gt;
&lt;li&gt;No HTTP wrapper to build around your DB&lt;/li&gt;
&lt;li&gt;No multi-tenant logic to get right&lt;/li&gt;
&lt;li&gt;Built-in TTLs, search, and shared namespaces&lt;/li&gt;
&lt;li&gt;Predictable per-operation pricing (no per-token surprises)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It's a Twilio-style argument: yes, you could roll your own SMS gateway, but for most people, paying per-message is cheaper than the time cost.&lt;/p&gt;

&lt;h2&gt;
  
  
  The stack
&lt;/h2&gt;

&lt;p&gt;Nothing exotic, all standard boring tech:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;API:&lt;/strong&gt; Node.js with Express, deployed on Railway. Auto-deploys from GitHub.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database:&lt;/strong&gt; Supabase (Postgres), with atomic credit-update logic so concurrent payments and reads don't race.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Payments:&lt;/strong&gt; Paystack. I'm in Ghana, Stripe doesn't operate here yet, but Stripe acquired Paystack in 2020. Paystack handles cards globally plus mobile money and Apple Pay, so coverage is actually broader than Stripe-alone for some users.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Email:&lt;/strong&gt; Resend, with Cloudflare Email Routing for inbound on &lt;a href="mailto:hello@agentram.dev"&gt;hello@agentram.dev&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DNS:&lt;/strong&gt; Cloudflare, with WAF and rate limiting.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Static HTML on Netlify, with Cabinet Grotesk self-hosted. No framework, no build step, just hand-written HTML and CSS.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The whole thing is six HTML pages, one Node server, one Supabase project. It's not a lot. That's intentional.&lt;/p&gt;

&lt;h2&gt;
  
  
  The pricing model: credits, not subscriptions
&lt;/h2&gt;

&lt;p&gt;After agonising over this, I went with credit-based pricing instead of a monthly subscription.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1000 free credits on signup, no card required&lt;/li&gt;
&lt;li&gt;1 credit per operation (read, write, delete, search all count as one)&lt;/li&gt;
&lt;li&gt;Top-ups: $5 for 50,000 ops, $15 for 200,000 ops, $40 for 600,000 ops&lt;/li&gt;
&lt;li&gt;Founding member tier: $249 one-time for 500,000 ops plus 20% off all future top-ups, for as long as the account is active&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Why credits over subscriptions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Aligns with how AI agent usage actually varies (bursty, unpredictable)&lt;/li&gt;
&lt;li&gt;No "wasted" subscription months for users who weren't building that month&lt;/li&gt;
&lt;li&gt;No churn anxiety on my side&lt;/li&gt;
&lt;li&gt;The unit price is easy to reason about: 1¢ per 100 operations at the Starter tier&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The downside is it's slightly weirder to project revenue against. But I'd rather have a model my users actually feel good about.&lt;/p&gt;

&lt;h2&gt;
  
  
  The "did it actually work" moment
&lt;/h2&gt;

&lt;p&gt;I shipped this today. The full deployment took:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pushing the API to Railway&lt;/li&gt;
&lt;li&gt;Pointing api.agentram.dev at Railway via Cloudflare CNAME&lt;/li&gt;
&lt;li&gt;Deploying the static site to Netlify&lt;/li&gt;
&lt;li&gt;Pointing agentram.dev at Netlify via Cloudflare CNAME&lt;/li&gt;
&lt;li&gt;Verifying Let's Encrypt SSL provisioned on both domains&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then I made my first real $5 test charge to my own account. Watched the credit count tick from 1000 to 51,000. Confirmation email landed. The whole pipeline worked end to end.&lt;/p&gt;

&lt;p&gt;That's the moment that justifies all the work that came before.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'm building next
&lt;/h2&gt;

&lt;p&gt;The build is done. Now the harder thing: distribution. Things I'm planning over the next few weeks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;MCP server wrapper.&lt;/strong&gt; Anthropic's Model Context Protocol is becoming the standard for how AI tools discover and use external services. An MCP server for AgentRAM means Claude Desktop and Cline users can add persistent memory with one config line.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LangChain memory backend.&lt;/strong&gt; Implement &lt;code&gt;BaseMemory&lt;/code&gt; so AgentRAM works as a drop-in memory layer for any LangChain agent.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LlamaIndex memory module&lt;/strong&gt; and &lt;strong&gt;AutoGen / CrewAI integrations&lt;/strong&gt; for the same reason.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Official SDKs&lt;/strong&gt; for Python and TypeScript so the curl examples become idiomatic library calls.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I'd love feedback on
&lt;/h2&gt;

&lt;p&gt;Genuinely, not as a marketing-friendly closer. If you've built agents that need memory, I want to know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does the API surface feel complete enough, or is something missing?&lt;/li&gt;
&lt;li&gt;What would make you pick this over rolling your own with Postgres?&lt;/li&gt;
&lt;li&gt;Which integration would actually move the needle for you?&lt;/li&gt;
&lt;li&gt;What would make you suspicious of this as a solo dev's project?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://agentram.dev" rel="noopener noreferrer"&gt;agentram.dev&lt;/a&gt; if you want to poke at it. 1000 free credits if you want to try the API. Comments welcome here, or email me directly at &lt;a href="mailto:hello@agentram.dev"&gt;hello@agentram.dev&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>showdev</category>
      <category>api</category>
      <category>buildinpublic</category>
    </item>
  </channel>
</rss>
