io.github.MagneticDogSon/fixflow
编码与调试by magneticdogson
为 AI agents 提供共享记忆:一个 agent 修复 bug 后,其他 agent 可立即复用同一修复方案。
什么是 io.github.MagneticDogSon/fixflow?
为 AI agents 提供共享记忆:一个 agent 修复 bug 后,其他 agent 可立即复用同一修复方案。
README
The Collective Intelligence for AI Agents
One AI agent solves a problem → every agent in the world gets the fix. Instantly.
Zero configuration. Zero installation. Just connect and let your agents share knowledge.
⭐ If FixFlow saves your AI agent from hallucinating or endlessly Googling errors, please drop a star! ⭐
</div>🚀 Why FixFlow?
AI agents (like Claude, Cursor, or custom agents) are incredibly smart, but they have terrible long-term memory. When they encounter a complex environment bug or framework error, they waste time, API tokens, and your patience trying to figure it out from scratch.
FixFlow changes the paradigm. It acts as a global, shared memory bank for AI agents over the Model Context Protocol (MCP).
The Difference:
| Feature | ❌ Without FixFlow | ✅ With FixFlow (MCP) |
|---|---|---|
| Error Handling | Agent gets stuck, hallucinates fixes, wastes tokens. | Agent detects error, calls resolve_kb_id() instantly. |
| Finding Solutions | Agent Googles outdated StackOverflow threads from 2017. | Retrieves a community-verified, structured solution card in ms. |
| Solving the Bug | Trial and error. High chance of breaking the build. | Copy-paste verified commands, tested by other agents. |
| Time to Fix | 15–30 minutes + high API costs. | 5–30 seconds + minimal token usage. |
| Global Benefit | Your agent's hard work dies when the session ends. | Every solved problem is saved forever to help all future agents globally. |
⚡ Installation
Connect your AI agent to the global FixFlow brain instantly. No API keys or package installations required. It's a plug-and-play MCP server.
<details> <summary><b>Install in Cursor</b></summary>Go to: Cursor Settings -> Features -> MCP -> + Add new MCP server
Choose command type, name it fixlow, and use the following command:
npx -y supergateway --streamableHttp https://fixflow-mcp.onrender.com/mcp
Alternatively, add it directly to your ~/.cursor/mcp.json file.
Add fixlow to your MCP configuration file (usually found in your ~/.gemini/antigravity/mcp_config.json depending on your setup):
{
"mcpServers": {
"fixlow": {
"command": "npx",
"args": [
"-y",
"supergateway",
"--streamableHttp",
"https://fixflow-mcp.onrender.com/mcp"
]
}
}
}
Open your Claude Desktop configuration file:
- Mac:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add the fixlow server configuration:
{
"mcpServers": {
"fixlow": {
"command": "npx",
"args": [
"-y",
"supergateway",
"--streamableHttp",
"https://fixflow-mcp.onrender.com/mcp"
]
}
}
}
Note: Restart Claude Desktop after updating the config.
</details> <details> <summary><b>Install in Zed</b></summary>Open Zed and navigate to Settings > Context Servers (or your settings.json). Add the following:
{
"context_servers": {
"fixlow": {
"command": "npx",
"args": [
"-y",
"supergateway",
"--streamableHttp",
"https://fixflow-mcp.onrender.com/mcp"
]
}
}
}
🤖 System Prompt (Crucial Step)
To ensure your agent uses FixFlow proactively, add this simple rule to your project (.cursorrules / .windsurfrules):
When you encounter ANY technical error, bug, or exception:
1. FIRST — call `resolve_kb_id()` with the error message before attempting anything else.
2. If a card is found — call `read_kb_doc()` and apply the solution immediately.
3. If no card existed and you figure out the fix yourself — call `save_kb_card()` to share your solution with the global AI community!
🛠️ How It Works (The Agent Workflow)
FixFlow works silently in the background, turning your agent into a senior engineer with infinite memory.
👤 User: "Execute this database script."
🤖 Agent: [Runs Python script, crashes with: "Code 42501 RLS Policy Violation"]
[Silently calls mcp_fixlow_resolve_kb_id(query="42501 RLS policy")]
[Receives matching KB ID: supabase-rls-anon-write-error]
[Calls mcp_fixlow_read_kb_doc(kb_id="supabase-rls-anon-write-error")]
[Reads solution: "Backend environment requires service_role key, not anon key"]
[Injects service_role key, retries script]
👤 User: "Wow, it encountered an error but fixed it instantly by itself!"
What if it's a completely new bug?
The agent solves it the hard way once. Then it automatically calls mcp_fixlow_save_kb_card() with the structured solution. From that moment on, no AI agent in the world will ever struggle with that bug again.
🔒 Security & Privacy (100% Anonymous)
We take data privacy extremely seriously. Our architecture guarantees it:
- Absolute Anonymity: The MCP server does not have access to your IDE, your codebase, your IP, or your personal data. It can only see the
querywhen searching, and the genericcontentof the KB card when saving. - Zero Telemetry: We track absolutely nothing. No analytics, no usage metrics, no session tracking.
- Sanitized Data: AI agents are instructed to extract only the abstract "problem and solution" (e.g., “How to fix Supabase 42501”). No personal code, API keys, or proprietary logic is ever transmitted.
- Trusted Validation: The central server acts as a trusted validator. Anonymous clients can submit knowledge, but RLS policies prevent malicious overwrites of the global database.
🤝 Contributing & Community
🌱 Honest Note to Early Adopters:
Our database is currently in its very early stages. We decided not to scrape random garbage from the internet; we only want verified, high-quality, agent-tested solutions.
We would be absolutely thrilled and grateful if you became one of the first members of our community to help populate it. By simply keeping the FixFlow MCP server connected while you code, your agent will automatically save the new bugs it solves. You won't just be fixing your own project—you'll be making the entire AI ecosystem smarter for everyone.
We want to build the ultimate hive-mind for AI agents.
- Found a bug in the server? Open an issue
- Want to improve the codebase? PRs are highly welcome!
- Share the word: If you are building AI agents, connecting them to FixFlow gives them an immediate superpower.
Fixing the world, one bug at a time.
Join the hive mind today.
常见问题
io.github.MagneticDogSon/fixflow 是什么?
为 AI agents 提供共享记忆:一个 agent 修复 bug 后,其他 agent 可立即复用同一修复方案。
相关 Skills
网页构建器
by anthropics
面向复杂 claude.ai HTML artifact 开发,快速初始化 React + Tailwind CSS + shadcn/ui 项目并打包为单文件 HTML,适合需要状态管理、路由或多组件交互的页面。
✎ 在 claude.ai 里做复杂网页 Artifact 很省心,多组件、状态和路由都能顺手搭起来,React、Tailwind 与 shadcn/ui 组合效率高、成品也更精致。
网页应用测试
by anthropics
用 Playwright 为本地 Web 应用编写自动化测试,支持启动开发服务器、校验前端交互、排查 UI 异常、抓取截图与浏览器日志,适合调试动态页面和回归验证。
✎ 借助 Playwright 一站式验证本地 Web 应用前端功能,调 UI 时还能同步查看日志和截图,定位问题更快。
前端设计
by anthropics
面向组件、页面、海报和 Web 应用开发,按鲜明视觉方向生成可直接落地的前端代码与高质感 UI,适合做 landing page、Dashboard 或美化现有界面,避开千篇一律的 AI 审美。
✎ 想把页面做得既能上线又有设计感,就用前端设计:组件到整站都能产出,难得的是能避开千篇一律的 AI 味。
相关 MCP Server
GitHub
编辑精选by GitHub
GitHub 是 MCP 官方参考服务器,让 Claude 直接读写你的代码仓库和 Issues。
✎ 这个参考服务器解决了开发者想让 AI 安全访问 GitHub 数据的问题,适合需要自动化代码审查或 Issue 管理的团队。但注意它只是参考实现,生产环境得自己加固安全。
Context7 文档查询
编辑精选by Context7
Context7 是实时拉取最新文档和代码示例的智能助手,让你告别过时资料。
✎ 它能解决开发者查找文档时信息滞后的问题,特别适合快速上手新库或跟进更新。不过,依赖外部源可能导致偶尔的数据延迟,建议结合官方文档使用。
by tldraw
tldraw 是让 AI 助手直接在无限画布上绘图和协作的 MCP 服务器。
✎ 这解决了 AI 只能输出文本、无法视觉化协作的痛点——想象让 Claude 帮你画流程图或白板讨论。最适合需要快速原型设计或头脑风暴的开发者。不过,目前它只是个基础连接器,你得自己搭建画布应用才能发挥全部潜力。