memtrace 0.6.45 → 0.7.0
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 +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -113,7 +113,7 @@ GitNexus and CodeGrapherContext both build AST-based code graphs with structural
|
|
|
113
113
|
| Acc@10 (1K queries) | **100%** | 89.9% | 66.7% |
|
|
114
114
|
| Query latency (1K queries) | **9.16 ms avg** | 191.2 ms avg | 1627.2 ms avg |
|
|
115
115
|
| Tokens per query | **195 avg** | 213 avg | 221 avg |
|
|
116
|
-
| Index time (~250 files / 2.3K nodes / 5.8K edges) | **~4 sec** (≈500 ms of
|
|
116
|
+
| Index time (~250 files / 2.3K nodes / 5.8K edges) | **~4 sec** (≈500 ms of graph work plus first-run local engine warmup) | ~6 sec | ~1 sec (cached) |
|
|
117
117
|
|
|
118
118
|
All numbers from [the fair benchmark](https://github.com/syncable-dev/memtrace-public/tree/main/benchmarks/fair) on the same machine, same mempalace checkout, same 1,000 queries. Ground truth is extracted by Python's stdlib `ast` — not from any tool's index — so no system is advantaged in the dataset itself.
|
|
119
119
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memtrace",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Code intelligence graph — MCP server + AI agent skills + visualization UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"fs-extra": "^11.0.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@memtrace/darwin-arm64": "0.
|
|
43
|
-
"@memtrace/linux-x64": "0.
|
|
44
|
-
"@memtrace/linux-arm64": "0.
|
|
45
|
-
"@memtrace/win32-x64": "0.
|
|
46
|
-
"@memtrace/linux-x64-noavx2": "0.
|
|
47
|
-
"@memtrace/win32-x64-noavx2": "0.
|
|
42
|
+
"@memtrace/darwin-arm64": "0.7.0",
|
|
43
|
+
"@memtrace/linux-x64": "0.7.0",
|
|
44
|
+
"@memtrace/linux-arm64": "0.7.0",
|
|
45
|
+
"@memtrace/win32-x64": "0.7.0",
|
|
46
|
+
"@memtrace/linux-x64-noavx2": "0.7.0",
|
|
47
|
+
"@memtrace/win32-x64-noavx2": "0.7.0"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=18"
|