@unerr-ai/unerr 0.0.0-beta.4 → 0.0.0-beta.6
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 +18 -3
- package/dist/cli.js +1376 -931
- package/dist/ui/assets/{index-DhH9j3Px.js → index-Bi-binEM.js} +1 -1
- package/dist/ui/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -116,9 +116,21 @@ After install, your AI agent automatically connects to unerr via MCP. No config
|
|
|
116
116
|
|
|
117
117
|
## Supported Agents
|
|
118
118
|
|
|
119
|
+
### Confirmed
|
|
120
|
+
|
|
121
|
+
Fully tested and production-ready.
|
|
122
|
+
|
|
119
123
|
```bash
|
|
120
124
|
unerr install claude-code # .mcp.json + CLAUDE.md + .claude/skills/ + hooks
|
|
121
|
-
unerr install cursor # .cursor/mcp.json + .cursor/rules/
|
|
125
|
+
unerr install cursor # .cursor/mcp.json + .cursor/rules/ + hooks
|
|
126
|
+
unerr install antigravity # .antigravity/mcp_config.json + .agents/rules/ + .agents/skills/
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### In Development
|
|
130
|
+
|
|
131
|
+
MCP config and basic integration work. Instruction injection, skills, and hooks support varies — contributions welcome.
|
|
132
|
+
|
|
133
|
+
```bash
|
|
122
134
|
unerr install vscode # .vscode/mcp.json + .github/copilot-instructions.md
|
|
123
135
|
unerr install windsurf # .windsurf/mcp.json
|
|
124
136
|
unerr install zed # .zed/mcp.json
|
|
@@ -134,7 +146,7 @@ unerr install github-copilot-cli # .github/mcp.json + .github/copilot-instructio
|
|
|
134
146
|
unerr install continue # .continue/config.json
|
|
135
147
|
```
|
|
136
148
|
|
|
137
|
-
Works with any MCP-compatible
|
|
149
|
+
16 agents supported. Works with any MCP-compatible client.
|
|
138
150
|
|
|
139
151
|
<details>
|
|
140
152
|
<summary>Manual MCP config (any agent)</summary>
|
|
@@ -166,6 +178,7 @@ Works with any MCP-compatible agent. 15 supported out of the box.
|
|
|
166
178
|
- **Convention awareness** — auto-detected naming, structure, and import patterns injected into agent context.
|
|
167
179
|
- **Semantic search** — `semantic_search` finds conceptually similar code even with different naming. `find_similar` discovers related entities by embedding distance.
|
|
168
180
|
- **Business context** — `get_business_context` explains why code exists — purpose, feature area, taxonomy.
|
|
181
|
+
- **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.
|
|
169
182
|
|
|
170
183
|
### Compounding (session 2+)
|
|
171
184
|
|
|
@@ -249,7 +262,9 @@ AI Agent (Claude Code / Cursor / VS Code / Windsurf / any MCP client)
|
|
|
249
262
|
│ ├── Token budgeter (prevents context rot)
|
|
250
263
|
│ └── Compression engine (11 strategies, 645+ classifiers)
|
|
251
264
|
│
|
|
252
|
-
|
|
265
|
+
├── CLI hooks ──→ Output compression ──→ Graph-aware prioritization
|
|
266
|
+
│
|
|
267
|
+
└── Tool nudging ──→ 5-layer adoption reinforcement (hooks, exec, instructions)
|
|
253
268
|
```
|
|
254
269
|
|
|
255
270
|
One process. Fully local. No API keys. No network calls. No cloud.
|