@ruso-0/nreki 10.7.1 → 10.7.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/CHANGELOG.md +9 -0
- package/README.md +10 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to NREKI will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [10.7.2] - 2026-04-18
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- README landing image now resolves. Previous `docs/demo.gif` was never generated; replaced with `docs/demo.svg` (animated SVG, 42 KB, renders on both GitHub and npmjs.com).
|
|
9
|
+
- Normalized em-dashes (`—`) to plain hyphens (`-`) in the README for consistent rendering across terminals and fonts that lack the Unicode glyph.
|
|
10
|
+
|
|
11
|
+
### Notes
|
|
12
|
+
Docs-only release. No code changes. Library behavior identical to 10.7.1.
|
|
13
|
+
|
|
5
14
|
## [10.7.1] - 2026-04-18
|
|
6
15
|
|
|
7
16
|
### Fixed
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# NREKI
|
|
1
|
+
# NREKI - Bulletproof Shield for AI Coding Agents
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<img src="https://img.shields.io/npm/v/@ruso-0/nreki?style=for-the-badge&color=blue" alt="npm version">
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
<img src="https://img.shields.io/badge/License-Apache_2.0-yellow?style=for-the-badge" alt="Apache 2.0">
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
|
-
**MCP plugin that validates AI agent edits in RAM before they touch disk.** When Claude Code, Cursor, or Copilot changes a function signature in one file and breaks 30 others, NREKI catches it in milliseconds
|
|
12
|
+
**MCP plugin that validates AI agent edits in RAM before they touch disk.** When Claude Code, Cursor, or Copilot changes a function signature in one file and breaks 30 others, NREKI catches it in milliseconds - the file is never written. If the error is structural (missing import, forgotten `await`), NREKI auto-fixes it in RAM. Zero tokens wasted on fix-retry doom loops.
|
|
13
13
|
|
|
14
|
-
**v10.7
|
|
14
|
+
**v10.7 - The NREKI Way.** Parasitic signals now ride inside `outline`: a defect radar flags LLM-rush patterns (`⚠️ [empty catch, any escape]`), a ghost oracle tags unreferenced exports (`👻 [0 ext refs]`), and engrams prefixed `ASSERT` survive code mutation. Zero added tokens per call - the signals live in surfaces the agent already reads.
|
|
15
15
|
|
|
16
|
-
<p align="center"><img src="docs/demo.
|
|
16
|
+
<p align="center"><img src="docs/demo.svg" alt="NREKI outline with defect + ghost tags"></p>
|
|
17
17
|
|
|
18
18
|
## Install
|
|
19
19
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
# Claude Code
|
|
22
22
|
claude mcp add nreki -- npx -y @ruso-0/nreki
|
|
23
23
|
|
|
24
|
-
# Cursor / any MCP client
|
|
24
|
+
# Cursor / any MCP client - add to mcp.json:
|
|
25
25
|
{ "mcpServers": { "nreki": { "command": "npx", "args": ["-y", "@ruso-0/nreki"] } } }
|
|
26
26
|
|
|
27
27
|
# Optional: installs CLAUDE.md instructions + CLI hook firewall
|
|
@@ -48,9 +48,9 @@ Three tools (`nreki_navigate`, `nreki_code`, `nreki_guard`), 23 actions, 4 langu
|
|
|
48
48
|
|
|
49
49
|
- **Atomic multi-TextEdit healing.** When gopls or pyright proposes a quickfix with coupled edits (import + usage), NREKI applies every TextEdit of the chosen action together with per-file savepoints and bottom-up offset ordering. No more doom-loop retries where only the import lands and the usage stays broken.
|
|
50
50
|
- **Tolerant Patch mode.** `nreki_code action:"edit" mode:"patch"` now retries with indent-flexible matching when the exact-indent search fails and the content is unique. The literal-`$` guarantee is preserved end-to-end (no V8 `$&` / `$$` substitution surprises).
|
|
51
|
-
- **Cognitive Enforcer.** Agents can't `batch_edit` blindly
|
|
51
|
+
- **Cognitive Enforcer.** Agents can't `batch_edit` blindly - every edit in a batch is validated against a per-file passport (outline seen? symbol focused?). The v10.5.7 fix closed a bypass where 2+ edits could smuggle blind mutations through.
|
|
52
52
|
- **TTRD Bounties.** Successful strict-type restoration reports the exact CFI (Continuous Friction Index) discount to the agent. Pavlovian reinforcement that actually quantifies what improved.
|
|
53
|
-
- **Defect radar + ghost oracle.** Four inline detectors and a 0-ext-refs tagger run during `outline`
|
|
53
|
+
- **Defect radar + ghost oracle.** Four inline detectors and a 0-ext-refs tagger run during `outline` - free signals, no extra tool call.
|
|
54
54
|
- **Executable engrams.** Pin insights to symbols. Engrams prefixed `ASSERT` survive AST mutation; everything else invalidates on body change so memory can't go stale.
|
|
55
55
|
|
|
56
56
|
## Language support
|
|
@@ -63,9 +63,9 @@ Three tools (`nreki_navigate`, `nreki_code`, `nreki_guard`), 23 actions, 4 langu
|
|
|
63
63
|
|
|
64
64
|
## Docs & links
|
|
65
65
|
|
|
66
|
-
- **[CHANGELOG.md](CHANGELOG.md)**
|
|
67
|
-
- **[templates/CLAUDE.md](templates/CLAUDE.md)**
|
|
68
|
-
- **Issues / ideas**
|
|
66
|
+
- **[CHANGELOG.md](CHANGELOG.md)** - full version history (every patch, every release, every test count).
|
|
67
|
+
- **[templates/CLAUDE.md](templates/CLAUDE.md)** - optimized instructions auto-installed by `npx @ruso-0/nreki init`.
|
|
68
|
+
- **Issues / ideas** - GitHub Issues on this repo.
|
|
69
69
|
|
|
70
70
|
## License
|
|
71
71
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruso-0/nreki",
|
|
3
|
-
"version": "10.7.
|
|
3
|
+
"version": "10.7.2",
|
|
4
4
|
"description": "MCP plugin that validates AI agent edits in RAM before they touch disk. Spectral clustering, architecture diffs, bridge detection, dead code oracle, and cross-file semantic checks for TypeScript, Go (gopls), and Python (pyright). Zero cloud dependencies.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|