@unerr-ai/unerr 0.0.0-beta.2 → 0.0.0-beta.3

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +23 -1
package/README.md CHANGED
@@ -56,15 +56,15 @@ unerr gives it an intelligence layer that compounds. Every caller, every convent
56
56
  <table>
57
57
  <tr>
58
58
  <td align="center">
59
- <img src="public/screenshots/token-trace-main.png" alt="unerr token trace — main view" width="250" />
59
+ <img src="https://unerr.dev/open-cli/screenshots/token-trace-main.png" alt="unerr token trace — main view" width="250" />
60
60
  <br/><sub>Token trace</sub>
61
61
  </td>
62
62
  <td align="center">
63
- <img src="public/screenshots/token-session.png" alt="unerr session token tracking" width="250" />
63
+ <img src="https://unerr.dev/open-cli/screenshots/token-session.png" alt="unerr session token tracking" width="250" />
64
64
  <br/><sub>Session tracking</sub>
65
65
  </td>
66
66
  <td align="center">
67
- <img src="public/screenshots/token-turn.png" alt="unerr per-turn token breakdown" width="250" />
67
+ <img src="https://unerr.dev/open-cli/screenshots/token-turn.png" alt="unerr per-turn token breakdown" width="250" />
68
68
  <br/><sub>Per-turn breakdown</sub>
69
69
  </td>
70
70
  </tr>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unerr-ai/unerr",
3
- "version": "0.0.0-beta.2",
3
+ "version": "0.0.0-beta.3",
4
4
  "description": "Local-first code intelligence CLI for unerr",
5
5
  "type": "module",
6
6
  "bin": {
@@ -76,6 +76,28 @@
76
76
  "dist"
77
77
  ],
78
78
  "license": "Elastic-2.0",
79
+ "keywords": [
80
+ "mcp",
81
+ "mcp-server",
82
+ "model-context-protocol",
83
+ "ai",
84
+ "cli",
85
+ "code-intelligence",
86
+ "code-graph",
87
+ "knowledge-graph",
88
+ "codebase-indexer",
89
+ "code-search",
90
+ "developer-tools",
91
+ "llm",
92
+ "cursor",
93
+ "claude-code",
94
+ "coding-agent",
95
+ "ai-agent",
96
+ "local-first",
97
+ "ast",
98
+ "static-analysis",
99
+ "typescript"
100
+ ],
79
101
  "scripts": {
80
102
  "build": "pnpm run build:ui && pnpm run build:cli",
81
103
  "build:cli": "tsup src/entrypoints/cli.ts --format esm --target node20 --dts --no-splitting",