memtrace 0.3.16 → 0.3.18
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/README.md +10 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -324,11 +324,16 @@ Rust · Go · TypeScript · JavaScript · Python · Java · C · C++ · C# · Sw
|
|
|
324
324
|
|
|
325
325
|
## Requirements
|
|
326
326
|
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
|
330
|
-
|
|
331
|
-
| **
|
|
327
|
+
Memtrace does parsing, graph construction, and embedding generation locally. Expect the first index to use noticeable CPU and memory; follow-up queries and incremental indexing are much lighter.
|
|
328
|
+
|
|
329
|
+
| Requirement | Minimum | Recommended |
|
|
330
|
+
|:------------|:--------|:------------|
|
|
331
|
+
| **CPU** | 4 cores | 8+ cores for large monorepos |
|
|
332
|
+
| **Memory** | 8 GB RAM | 16–32 GB RAM |
|
|
333
|
+
| **Disk** | 5 GB free | 10–20 GB free for large repositories |
|
|
334
|
+
| **GPU** | Not required | Not required |
|
|
335
|
+
| **Node.js** | ≥ 18 | Current LTS |
|
|
336
|
+
| **Git** | Required for temporal analysis | Full repository history for best results |
|
|
332
337
|
|
|
333
338
|
<br/>
|
|
334
339
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memtrace",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.18",
|
|
4
4
|
"description": "Code intelligence graph — MCP server + AI agent skills + visualization UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"fs-extra": "^11.0.0"
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@memtrace/darwin-arm64": "0.3.
|
|
40
|
-
"@memtrace/linux-x64": "0.3.
|
|
41
|
-
"@memtrace/win32-x64": "0.3.
|
|
39
|
+
"@memtrace/darwin-arm64": "0.3.18",
|
|
40
|
+
"@memtrace/linux-x64": "0.3.18",
|
|
41
|
+
"@memtrace/win32-x64": "0.3.18"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=18"
|