Source: You Don’t Need SaaS. The $0.10 System That Replaced My AI Workflow (45 Min No-Code Build) — Nate Jones, 2026

Summary

AI tools today each maintain their own isolated memory. Claude cannot access context from ChatGPT; a phone app doesn’t share context with a coding agent. Jones argues this is not incidental but a deliberate lock-in strategy, betting that if they trap your context, you’ll stay. Traditional note-taking apps like Notion or Apple Notes are no substitute because they were designed for human browsing, not programmatic retrieval by agents. The internet is forking into a human web and an agent web, and memory architecture needs to serve both.

The proposed solution is what Jones calls the “Open Brain”: a Postgres database (hosted on Supabase) where every captured thought is stored alongside a vector embedding. An MCP server sits in front of the database, exposing semantic search, recent entries, and usage stats to any MCP-compatible AI client. When an agent queries the system, it retrieves entries by meaning rather than keyword match. The architecture is tool-agnostic: switching from Claude to ChatGPT or any future client requires no migration. Capture can happen from Slack, a chat app, or any MCP-compatible tool; the round trip from input to embedded, classified, searchable entry takes under ten seconds.

The core argument is about compounding returns. Someone who starts every AI conversation from scratch gets the same value on day one and day five hundred. Someone whose agents can query months of accumulated context, including decisions, preferences, project history, key people, gets meaningfully better results over time. Jones estimates the running cost at roughly ten to thirty cents per month using free tiers of Supabase and Slack, making the barrier primarily one of habit, not expense.

Quotes

“Claude’s memory doesn’t know what you told ChatGPT. ChatGPT’s memory doesn’t follow you into Cursor. Your phone app doesn’t share context with your coding agent. Every platform has built a walled garden of memory and none of them talk to each other.”

“Your Notion workspace, for example, is built for human eyes. It’s built for pages, for databases, for views, for toggles, for cover images. It’s beautiful for you. It’s useless for an AI agent that needs to search by meaning, not by folder structure.”

“The best prompt in the world cannot compensate for an AI that does not know what you’ve been working on, what you’ve already tried, what your constraints are, who the key people in your life are, or what you decided last Tuesday.”

“The gap between ‘I use AI sometimes’ and ‘AI is embedded in how I think and work’ is the career gap of this decade. And it comes down to memory and context infrastructure.”

Notes

Jones doesn’t address discoverability. Memory is only useful if the right context surfaces when you need it. Flat files make this easy. You can scan folders, search by name, and browse directly. A database with embeddings requires you to ask the right question to get the right context back. Semantic search is powerful but will it have the same discoverability as markdown files? I need to think further about how this can be tested.