fixflow-mcp 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,14 +17,17 @@
17
17
 
18
18
  ---
19
19
 
20
- ## Without FixFlow
21
-
22
- Your AI agent hits an error. It:
23
- - ❌ Googles it — finds 8 StackOverflow threads from 2017
24
- - Tries random solutions some work, some break more things
25
- - Loses your flow state for 15+ minutes
26
- - **Forgets the fix** next week, same problem, same 15 minutes wasted
27
- - The solution **dies with the chat session** nobody else benefits
20
+ ## Without FixFlow vs With FixFlow (MCP)
21
+
22
+ | | Without FixFlow | ✅ With FixFlow (MCP) |
23
+ |---|---|---|
24
+ | **Error detection** | You notice the error, copy it, ask the agent | Agent detects it **automatically mid-task** |
25
+ | **Finding a fix** | Agent Googles 8 irrelevant threads from 2017 | Agent calls `resolve_kb_id()` → **community-verified card in milliseconds** |
26
+ | **Applying the fix** | Trial and error, might break more things | **Copy-paste verified command**, battle-tested by the community |
27
+ | **Time to fix** | 15–30 minutes | **5–30 seconds** |
28
+ | **Memory** | Fix dies with the chat session | Fix is saved **forever in the community KB** |
29
+ | **Community effect** | Zero — your pain benefits nobody | **Every solved problem helps all future agents** |
30
+ | **Next time** | Same 15 minutes. Again. | **0 seconds** — card is already there |
28
31
 
29
32
  With FixFlow, your agent **automatically detects the error, searches the community knowledge base, and applies the verified fix — before you even notice there was a problem.**
30
33
  And if it's a new problem? It solves it, saves it, and **the entire community benefits forever.**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fixflow-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Community Knowledge Base MCP Server — Stack Overflow for AI Agents",
5
5
  "license": "MIT",
6
6
  "type": "module",