@mrxkun/mcfast-mcp 4.2.2 → 4.2.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.
- package/package.json +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrxkun/mcfast-mcp",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.3",
|
|
4
4
|
"description": "Ultra-fast code editing with WASM acceleration, fuzzy patching, multi-layer caching, and 8 unified tools. v4.1.12: Implement proper MCP stdio transport lifecycle and cleanup to prevent zombie processes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/index.js
CHANGED
|
@@ -370,7 +370,7 @@ async function logEditToMemory({ instruction, files, strategy, success, errorMes
|
|
|
370
370
|
const engine = await getMemoryEngine();
|
|
371
371
|
const diffSize = Object.keys(files).reduce((total, fp) => total + (files[fp]?.length || 0), 0);
|
|
372
372
|
|
|
373
|
-
engine.
|
|
373
|
+
engine.logEdit({
|
|
374
374
|
instruction: instruction.substring(0, 500),
|
|
375
375
|
files: Object.keys(files),
|
|
376
376
|
strategy,
|