@ruso-0/nreki 6.0.1 → 6.0.2
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 +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,6 +77,8 @@ Override in package.json: `{ "nreki": { "mode": "project" } }`
|
|
|
77
77
|
Hologram mode uses domain separation: the holographic kernel validates edits via shadows,
|
|
78
78
|
while Layer 1 AST navigator handles reference queries and refactoring.
|
|
79
79
|
|
|
80
|
+
**vs Project Corsa:** Microsoft's [TypeScript 7 native port](https://devblogs.microsoft.com/typescript/progress-on-typescript-7-december-2025/) (Go, multi-threaded) reports 8.74s for VSCode type-checking. NREKI JIT Holography achieves 3.32s total (boot + first edit) in single-threaded JavaScript by skipping 88% of files via on-demand shadow classification.
|
|
81
|
+
|
|
80
82
|
### Type Regression Detection (v5.3)
|
|
81
83
|
|
|
82
84
|
Detects when an agent weakens types silently. TypeScript approves `RetryConfig` changed
|
|
@@ -306,12 +308,12 @@ nreki_guard action:"status"
|
|
|
306
308
|
|
|
307
309
|
| Test | Result | Latency | Details |
|
|
308
310
|
|------|--------|---------|---------|
|
|
309
|
-
| Boot | SUCCESS |
|
|
310
|
-
| Valid edit | PASS | 2,
|
|
311
|
-
| Type break | **CAUGHT** |
|
|
312
|
-
| Syntax break | **CAUGHT** |
|
|
313
|
-
| File delete | PASS |
|
|
314
|
-
| Non-TS file | PASS |
|
|
311
|
+
| Boot | SUCCESS | 7.39s | 148 files tracked, 0 baseline errors |
|
|
312
|
+
| Valid edit | PASS | 2,062ms | Appending a comment - no false positive |
|
|
313
|
+
| Type break | **CAUGHT** | 7,230ms | Changed `getPGroup()` return type - cross-file error caught |
|
|
314
|
+
| Syntax break | **CAUGHT** | 3,774ms | `return const let;` - blocked |
|
|
315
|
+
| File delete | PASS | 1,596ms | Leaf file deletion - correctly allowed |
|
|
316
|
+
| Non-TS file | PASS | 2,907ms | README.md - correctly ignored |
|
|
315
317
|
|
|
316
318
|
**6/6 correct verdicts** against a real TypeScript project. Zero false positives. Zero false negatives.
|
|
317
319
|
|
|
@@ -338,7 +340,7 @@ nreki_guard action:"status"
|
|
|
338
340
|
| Audit findings resolved | 30/30 |
|
|
339
341
|
| OpenDota benchmark | 6/6 correct verdicts |
|
|
340
342
|
| Auto-Healing safe fixes | 8 CodeFix types |
|
|
341
|
-
| Boot time (148 files) |
|
|
343
|
+
| Boot time (148 files) | 7.39s |
|
|
342
344
|
| Warm-path rollback | ~50ms |
|
|
343
345
|
| Blast radius query | ~20ms |
|
|
344
346
|
| PageRank convergence (1,000 files) | < 50ms |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruso-0/nreki",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "MCP server that validates AI agent edits in RAM before they reach disk. Cross-file semantic checks via TypeScript Compiler API. Auto-fixes structural errors. Zero cloud dependencies.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|