惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
C
Check Point Blog
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
腾讯CDC
Y
Y Combinator Blog
小众软件
小众软件
博客园_首页
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I'm a marketer, not an engineer. I shipped open-source AI...
TheGoodGuys · 2026-06-18 · via DEV Community

Three months ago, I started building something I had no business building. I run growth at a small agency. I am not a career engineer. Today, it is live and open source, and this is why we built it and how.

The wall

We run AI agents across our client work, and everyone starts every session with amnesia. We re-explained the same context every morning, and nothing the agents learned ever stuck. The "memory" tools we tried made it worse in a quieter way: they were black boxes.

The model wrote its own notes, rewrote them silently, and we could never see where a fact came from or whether it was still true. There is even research now showing that these compounds: feed an agent a noisy history and its behavior degrades, swap in clean records and it recovers. The failure stays invisible until production is already paying for it.

The bet

So we built the opposite of a black box. The core idea is that the program writes the facts, not the model.

Myco Brain is a self-hosted memory layer for AI agents that runs on your own Postgres. The write path is deterministic: identical content is rejected by the content hash, every accepted fact links back to its source, and the LLM stays advisory for extraction instead of becoming your database. Ask brain_why about any fact, and you get the evidence chain: the source document, how it was extracted, the confidence, and the timestamp. Not a trust-me summary.

It is one MCP server, so Claude Code, Cursor, Windsurf, Continue, Zed, and Claude Desktop all share the same memory through 11 brain_* tools. It runs with no API keys to start. Full-text search works immediately, and semantic search is keyless too if you run local Ollama embeddings. The knowledge graph is built entirely locally on Ollama, or with Anthropic for the most accurate version.

You can check my work

Every benchmark should ship with a way to reproduce it, so ours does. Myco Brain scores 73.6% end-to-end QA accuracy on the complete 500-question LongMemEval oracle subset with 92% recall@5 (retrieval), reader gpt-4o-mini, judge gpt-4o. The harness lives in the repo. You run one command and get the number yourself instead of taking my word for it.

How it actually got built

I directed a team of AI coding agents. Roughly three months and about $6k in model spend. The point is not the price tag. It is that a clear product vision plus modern agent tooling can now ship production-grade infrastructure, tested end-to-end in CI, built by someone who could not have written it by hand two years ago. That still amazes me.

Try it

git clone https://github.com/thegoodguysla/myco-brain.git
cd myco-brain
docker compose up -d
npx @mycobrain/install

That boots Postgres, the MCP server, and the extraction worker, then wires your agents to it. Point it at a repo or folder and ask across sessions: "What did we decide about auth, and where is that documented?" You get the answer with the source file cited.

It is Apache-2.0 and free to self-host. If you build with AI, I would love for you to try it and tell me what breaks. Repo: https://github.com/thegoodguysla/myco-brain