nero-review 0.1.1 → 0.1.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.
- package/README.md +54 -3
- package/dist/cli/options.js +3 -0
- package/dist/printer/PrettyPrinter.js +0 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
<img src="https://img.shields.io/npm/v/nero-review?color=6366f1" alt="npm version" />
|
|
7
|
-
|
|
7
|
+
<img src="https://img.shields.io/npm/dw/nero-review?color=0f172a" alt="npm downloads" />
|
|
8
8
|
<img src="https://img.shields.io/github/license/alcanivorax/nero-review?color=22c55e" alt="license" />
|
|
9
9
|
</p>
|
|
10
10
|
|
|
@@ -63,9 +63,13 @@ nero-review ./api/login/route.ts
|
|
|
63
63
|
## Environment Variable Setup
|
|
64
64
|
|
|
65
65
|
<!-- Full configuration details are available in the docs:
|
|
66
|
-
👉 **[Read documentation](link)**
|
|
66
|
+
👉 **[Read documentation](link)** -->
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
`nero-reivew` currently supports **OpenRouter** as its AI provider
|
|
69
|
+
|
|
70
|
+
You must configure and OpenRouter API key and model before running the CLI.
|
|
71
|
+
|
|
72
|
+
---
|
|
69
73
|
|
|
70
74
|
<br />
|
|
71
75
|
|
|
@@ -105,6 +109,53 @@ Restart your terminal or VS Code after setting them.
|
|
|
105
109
|
|
|
106
110
|
<br />
|
|
107
111
|
|
|
112
|
+
## Recommended OpenRouter Models
|
|
113
|
+
|
|
114
|
+
`nero-review` performance depends heavily on the selected model.
|
|
115
|
+
|
|
116
|
+
For the best experince, use one of the following OpenRouter models:
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
<br />
|
|
121
|
+
|
|
122
|
+
### Fast & Balanced (Recommended)
|
|
123
|
+
|
|
124
|
+
Best choice for everyday use. Good speed with reliable reasoning.
|
|
125
|
+
|
|
126
|
+
**Free**
|
|
127
|
+
|
|
128
|
+
```text
|
|
129
|
+
mistralai/devstral-2512:free
|
|
130
|
+
google/gemma-3-27b-it:free
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
**Paid**
|
|
134
|
+
|
|
135
|
+
```text
|
|
136
|
+
anthropic/claude-3.5-sonnet
|
|
137
|
+
openai/gpt-4o-mini
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
<br />
|
|
141
|
+
|
|
142
|
+
### High Quality (Slower)
|
|
143
|
+
|
|
144
|
+
**Free**
|
|
145
|
+
|
|
146
|
+
```text
|
|
147
|
+
qwen/qwen3-coder:free
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
**Paid**
|
|
151
|
+
|
|
152
|
+
```text
|
|
153
|
+
anthropic/claude-3-opus
|
|
154
|
+
openai/gpt-4o
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
<br />
|
|
158
|
+
|
|
108
159
|
## How nero-review works
|
|
109
160
|
|
|
110
161
|
```bash
|
package/dist/cli/options.js
CHANGED
|
@@ -16,6 +16,9 @@ Environment:
|
|
|
16
16
|
NERO_API_KEY API key for the AI provider (required)
|
|
17
17
|
NERO_MODEL Model name to use (required)
|
|
18
18
|
|
|
19
|
+
nero-reivew currently supports OpenRouter as its AI provider
|
|
20
|
+
You must configure and OpenRouter API key and model before running the CLI.
|
|
21
|
+
|
|
19
22
|
Setup (Linux/macOS):
|
|
20
23
|
|
|
21
24
|
Create a secrets file:
|
|
@@ -13,10 +13,6 @@ export class PrettyPrinter {
|
|
|
13
13
|
this.printFooter(review.footer);
|
|
14
14
|
}
|
|
15
15
|
printHeader(review, truncated) {
|
|
16
|
-
console.log();
|
|
17
|
-
console.log(theme.divider(this.width - 27));
|
|
18
|
-
console.log(theme.header("Nero Review"));
|
|
19
|
-
console.log(theme.divider(this.width - 27));
|
|
20
16
|
console.log();
|
|
21
17
|
if (truncated) {
|
|
22
18
|
console.log(theme.title("Note: File is large. Review is based on partial content."));
|