minovative-mind-cli 1.3.0 → 1.3.1
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 +28 -21
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,13 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## The CLI agent that makes Flash models perform like Pro.
|
|
4
4
|
|
|
5
|
-
### The result: **Genuine Pro-level accuracy at Flash-level cost.**
|
|
6
|
-
|
|
7
5
|
Most AI coding tools throw your entire codebase at the biggest model available
|
|
8
|
-
and hope for the best.
|
|
6
|
+
and hope for the best.
|
|
7
|
+
|
|
8
|
+
This CLI does the opposite — it uses a custom built agentic system called,
|
|
9
9
|
**Precision-Context Verification (PCV)** engine to feed lightweight Flash models
|
|
10
|
-
exactly the right context, verify the output compiles, and self-correct
|
|
11
|
-
the build
|
|
10
|
+
exactly the right context, execute code, verify the output compiles, and self-correct (if it even needs to), until
|
|
11
|
+
the build/performance metrics are green.
|
|
12
|
+
|
|
13
|
+
> The result: **Genuine Pro-level accuracy at Flash-level cost.**
|
|
12
14
|
|
|
13
15
|
[](https://oclif.io)
|
|
14
16
|
[](https://npmjs.org/package/minovative-mind-cli)
|
|
@@ -18,26 +20,25 @@ the build is green.
|
|
|
18
20
|
|
|
19
21
|
## How it works
|
|
20
22
|
|
|
21
|
-
Standard AI coding agents: big model + noisy context = expensive and redundant mistakes
|
|
23
|
+
- Standard AI coding agents: big model + noisy context = expensive and redundant mistakes
|
|
24
|
+
- Minovative Mind CLI: flash models + precise context + verified output = better and cheaper results.
|
|
22
25
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
The PCV engine runs in three stages before returning a single line of code:
|
|
26
|
+
### The PCV engine runs in three stages before returning a single line of code:
|
|
26
27
|
|
|
27
28
|
**1. Investigate**
|
|
28
|
-
|
|
29
|
-
dependencies
|
|
30
|
-
external documentation
|
|
29
|
+
|
|
30
|
+
- **Maps your project:** Traces import dependencies and identifies recently modified files to understand your focus.
|
|
31
|
+
- **Researches context:** Gathers external web documentation and completes background research before touching any code.
|
|
31
32
|
|
|
32
33
|
**2. Execute with precision**
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
40–50% fewer broken generations on large files
|
|
34
|
+
|
|
35
|
+
- **Surgical snapshots:** Feeds the agent a compressed, relevant slice of code instead of dumping the entire codebase.
|
|
36
|
+
- **Higher success rates:** Delivers 40–50% fewer broken generations on large files compared to standard zero-shot prompts.
|
|
36
37
|
|
|
37
38
|
**3. Verify and self-correct**
|
|
38
|
-
|
|
39
|
-
`
|
|
40
|
-
up to 3 correction cycles
|
|
39
|
+
|
|
40
|
+
- **Runs native builds & audits:** Automatically executes your actual build commands (`npm run build`, `cargo check`, etc.) and scans for performance flaws on modified files only.
|
|
41
|
+
- **Autonomously debugs:** Reads the exact compiler output and fixes its own errors across up to 3 hands-free correction cycles.
|
|
41
42
|
|
|
42
43
|
---
|
|
43
44
|
|
|
@@ -54,6 +55,12 @@ up to 3 correction cycles without you typing a word.
|
|
|
54
55
|
npm install -g minovative-mind-cli
|
|
55
56
|
```
|
|
56
57
|
|
|
58
|
+
### Update to latest version
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
npm update -g minovative-mind-cli
|
|
62
|
+
```
|
|
63
|
+
|
|
57
64
|
Create a free account at [minovativemind.dev](https://www.minovativemind.dev),
|
|
58
65
|
then:
|
|
59
66
|
|
|
@@ -77,9 +84,9 @@ Hot-swap during a session with `/models`:
|
|
|
77
84
|
| **Gemini 3.1 Pro** | Complex architectural changes |
|
|
78
85
|
| **Gemini 3.1 Flash Lite** | Maximum speed and cost efficiency |
|
|
79
86
|
|
|
80
|
-
>
|
|
81
|
-
>
|
|
82
|
-
>
|
|
87
|
+
> Background tasks (routing, compression, commits) always use lightweight
|
|
88
|
+
> models automatically. You only pay for what your selected model costs
|
|
89
|
+
> during chat and code execution. Use `/debug` to see exactly what's running.
|
|
83
90
|
|
|
84
91
|
---
|
|
85
92
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED