@unerr-ai/unerr 0.0.0-beta.3 → 0.0.0-beta.5
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 +6 -1
- package/dist/cli.js +1333 -1042
- package/dist/ui/assets/{index-DhH9j3Px.js → index-C0jcrEHE.js} +1 -1
- package/dist/ui/index.html +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -88,6 +88,7 @@ unerr install claude-code # or: cursor, vscode, windsurf, codex, etc.
|
|
|
88
88
|
unerr
|
|
89
89
|
```
|
|
90
90
|
|
|
91
|
+
<!--
|
|
91
92
|
### Install from source
|
|
92
93
|
|
|
93
94
|
```bash
|
|
@@ -107,6 +108,7 @@ unerr install claude-code # or: cursor, vscode, windsurf, codex, etc.
|
|
|
107
108
|
# 4. Run
|
|
108
109
|
unerr
|
|
109
110
|
```
|
|
111
|
+
-->
|
|
110
112
|
|
|
111
113
|
After install, your AI agent automatically connects to unerr via MCP. No config files to edit manually.
|
|
112
114
|
|
|
@@ -164,6 +166,7 @@ Works with any MCP-compatible agent. 15 supported out of the box.
|
|
|
164
166
|
- **Convention awareness** — auto-detected naming, structure, and import patterns injected into agent context.
|
|
165
167
|
- **Semantic search** — `semantic_search` finds conceptually similar code even with different naming. `find_similar` discovers related entities by embedding distance.
|
|
166
168
|
- **Business context** — `get_business_context` explains why code exists — purpose, feature area, taxonomy.
|
|
169
|
+
- **Tool adoption nudging** — 5-layer reinforcement system ensures agents consistently use unerr MCP tools over built-in alternatives. Exec nudges, hook interception, instruction-level enforcement, and skill reminders — all automatic, zero config.
|
|
167
170
|
|
|
168
171
|
### Compounding (session 2+)
|
|
169
172
|
|
|
@@ -247,7 +250,9 @@ AI Agent (Claude Code / Cursor / VS Code / Windsurf / any MCP client)
|
|
|
247
250
|
│ ├── Token budgeter (prevents context rot)
|
|
248
251
|
│ └── Compression engine (11 strategies, 645+ classifiers)
|
|
249
252
|
│
|
|
250
|
-
|
|
253
|
+
├── CLI hooks ──→ Output compression ──→ Graph-aware prioritization
|
|
254
|
+
│
|
|
255
|
+
└── Tool nudging ──→ 5-layer adoption reinforcement (hooks, exec, instructions)
|
|
251
256
|
```
|
|
252
257
|
|
|
253
258
|
One process. Fully local. No API keys. No network calls. No cloud.
|