minovative-mind-cli 1.0.1 → 1.0.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/LICENSE.md +35 -0
- package/README.md +25 -23
- package/dist/services/ai.js +15 -3
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/LICENSE.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Proprietary License
|
|
2
|
+
|
|
3
|
+
**Copyright (c) 2026 Minovative Mind. All Rights Reserved.**
|
|
4
|
+
|
|
5
|
+
This software, including all source code, documentation, and associated files (the "Software"), is proprietary and confidential property of Minovative Mind.
|
|
6
|
+
|
|
7
|
+
## 1. Grant of License
|
|
8
|
+
|
|
9
|
+
You are granted a limited, non-exclusive, non-transferable right to download, install, and use the `minovative-mind-cli` Software strictly for its intended purpose as a personal or professional AI coding assistant, subject to the Terms of Service.
|
|
10
|
+
|
|
11
|
+
## 2. Restrictions
|
|
12
|
+
|
|
13
|
+
You are expressly prohibited from doing any of the following:
|
|
14
|
+
|
|
15
|
+
- **No Modification**: You may not modify, alter, translate, or create derivative works of the Software or any part thereof.
|
|
16
|
+
- **No Distribution**: You may not distribute, sell, lease, rent, lend, sublicense, or otherwise transfer the Software or any part of its source code to any third party.
|
|
17
|
+
- **No Reverse Engineering**: You may not decompile, reverse engineer, disassemble, or otherwise attempt to derive the source code of the compiled portions of the Software.
|
|
18
|
+
- **No Repurposing**: You may not use any part of the Software's source code in your own projects, whether commercial or non-commercial.
|
|
19
|
+
- **No Removal of Notices**: You may not remove, alter, or obscure any copyright, trademark, or other proprietary rights notices embedded in or attached to the Software.
|
|
20
|
+
|
|
21
|
+
## 3. Ownership
|
|
22
|
+
|
|
23
|
+
All title, ownership rights, and intellectual property rights in and to the Software, including any updates, enhancements, or modifications, shall remain exclusively with Daniel Ward. The Software is licensed to you, not sold.
|
|
24
|
+
|
|
25
|
+
## 4. Not Open Source
|
|
26
|
+
|
|
27
|
+
This is **NOT** open-source software. The fact that the source code may be visible or accessible (e.g. downloaded via npm) does not grant you any open-source rights. You are not permitted to fork, modify, or submit pull requests modifying the core proprietary logic unless explicitly invited by the copyright holder.
|
|
28
|
+
|
|
29
|
+
## 5. Termination
|
|
30
|
+
|
|
31
|
+
This license is effective until terminated. Your rights under this license will terminate automatically and immediately without notice if you fail to comply with any term or condition of this license. Upon termination, you must cease all use of the Software and destroy all copies in your possession or control.
|
|
32
|
+
|
|
33
|
+
## 6. Disclaimer of Warranty
|
|
34
|
+
|
|
35
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
# Minovative Mind CLI
|
|
1
|
+
# Minovative Mind CLI (Claude AI models coming soon)
|
|
2
|
+
|
|
3
|
+
## Fast & Handy AI agent without the bloat. Avaliable in virtually all terminals.
|
|
2
4
|
|
|
3
5
|
An automated AI agent powered by Vertex AI that helps you write software right inside your terminal.
|
|
4
6
|
|
|
@@ -6,7 +8,8 @@ An automated AI agent powered by Vertex AI that helps you write software right i
|
|
|
6
8
|
[](https://npmjs.org/package/minovative-mind-cli)
|
|
7
9
|
[](https://npmjs.org/package/minovative-mind-cli)
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
Official Website: [https://www.minovativemind.dev/](https://www.minovativemind.dev/)
|
|
12
|
+
Latest Updates: [https://www.minovativemind.dev/updates](https://www.minovativemind.dev/updates)
|
|
10
13
|
|
|
11
14
|
## Supported Models
|
|
12
15
|
|
|
@@ -15,31 +18,34 @@ The CLI supports the following advanced reasoning and coding models via Vertex A
|
|
|
15
18
|
- **Gemini 2.5 Pro**: Best for complex coding and large context windows.
|
|
16
19
|
- **Gemini 2.5 Flash**: Lightning fast, balanced performance for everyday tasks.
|
|
17
20
|
|
|
18
|
-
|
|
21
|
+
## TOC
|
|
22
|
+
|
|
23
|
+
- [Minovative Mind CLI](#minovative-mind-cli)
|
|
24
|
+
- [Commands](#commands)
|
|
19
25
|
|
|
20
|
-
<!-- toc -->
|
|
21
|
-
* [Minovative Mind CLI](#minovative-mind-cli)
|
|
22
|
-
* [Usage](#usage)
|
|
23
|
-
* [Commands](#commands)
|
|
24
26
|
<!-- tocstop -->
|
|
25
27
|
|
|
26
28
|
## Quick Start
|
|
27
29
|
|
|
28
|
-
Getting started with Minovative Mind CLI is easy!
|
|
30
|
+
Getting started with Minovative Mind CLI is easy!
|
|
29
31
|
|
|
30
32
|
1. **Install Globally:**
|
|
33
|
+
|
|
31
34
|
```bash
|
|
32
35
|
npm install -g minovative-mind-cli
|
|
33
36
|
```
|
|
34
37
|
|
|
35
38
|
2. **Authenticate:**
|
|
36
|
-
|
|
39
|
+
Before you can use the CLI, you need to create an account at [https://www.minovativemind.dev/](https://www.minovativemind.dev/).
|
|
40
|
+
Once you have an account, sign in securely using GitHub by running:
|
|
41
|
+
|
|
37
42
|
```bash
|
|
38
43
|
minovative-mind-cli login
|
|
39
44
|
```
|
|
40
45
|
|
|
41
46
|
3. **Start Coding!**
|
|
42
47
|
Navigate to any project directory on your computer and start a chat session:
|
|
48
|
+
|
|
43
49
|
```bash
|
|
44
50
|
cd your-project-folder
|
|
45
51
|
minovative-mind-cli chat
|
|
@@ -48,21 +54,12 @@ Getting started with Minovative Mind CLI is easy!
|
|
|
48
54
|
4. **Change Models (Optional):**
|
|
49
55
|
Once in a chat, type `/models` to switch between advanced reasoning models like Gemini 2.5 Pro and Gemini 2.5 Flash!
|
|
50
56
|
|
|
51
|
-
|
|
57
|
+
5. **Update the CLI:**
|
|
58
|
+
To ensure you have the latest features and bug fixes, you can update the CLI at any time by running:
|
|
52
59
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
$ minovative-mind-cli COMMAND
|
|
57
|
-
running command...
|
|
58
|
-
$ minovative-mind-cli (--version)
|
|
59
|
-
minovative-mind-cli/1.0.1 darwin-arm64 node-v25.6.1
|
|
60
|
-
$ minovative-mind-cli --help [COMMAND]
|
|
61
|
-
USAGE
|
|
62
|
-
$ minovative-mind-cli COMMAND
|
|
63
|
-
...
|
|
64
|
-
```
|
|
65
|
-
<!-- usagestop -->
|
|
60
|
+
```bash
|
|
61
|
+
npm update -g minovative-mind-cli
|
|
62
|
+
```
|
|
66
63
|
|
|
67
64
|
# Commands
|
|
68
65
|
|
|
@@ -131,3 +128,8 @@ DESCRIPTION
|
|
|
131
128
|
Sign out of your Minovative Mind account
|
|
132
129
|
```
|
|
133
130
|
<!-- commandsstop -->
|
|
131
|
+
|
|
132
|
+
## Legal
|
|
133
|
+
|
|
134
|
+
- [Terms of Service](https://www.minovativemind.dev/legal/cli-terms)
|
|
135
|
+
- [Privacy Policy](https://www.minovativemind.dev/legal/cli-privacy)
|
package/dist/services/ai.js
CHANGED
|
@@ -126,8 +126,20 @@ export class ProxyChatSession {
|
|
|
126
126
|
modelParts.push({ text: textPart });
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
|
-
|
|
130
|
-
|
|
129
|
+
const allFunctionCalls = [...(result.functionCalls || [])];
|
|
130
|
+
if (result.parts) {
|
|
131
|
+
for (const p of result.parts) {
|
|
132
|
+
if (p.functionCall) {
|
|
133
|
+
// Prevent duplicates if the proxy sends both type: 'functionCall' and type: 'parts'
|
|
134
|
+
const isDuplicate = allFunctionCalls.some((fc) => fc.name === p.functionCall.name && JSON.stringify(fc.args) === JSON.stringify(p.functionCall.args));
|
|
135
|
+
if (!isDuplicate) {
|
|
136
|
+
allFunctionCalls.push(p.functionCall);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
if (allFunctionCalls.length > 0) {
|
|
142
|
+
allFunctionCalls.forEach((fc) => {
|
|
131
143
|
modelParts.push({ functionCall: fc });
|
|
132
144
|
});
|
|
133
145
|
}
|
|
@@ -142,7 +154,7 @@ export class ProxyChatSession {
|
|
|
142
154
|
return {
|
|
143
155
|
response: {
|
|
144
156
|
text: () => result.thought || result.parts?.find((p) => p.text)?.text || '',
|
|
145
|
-
functionCalls: () => (
|
|
157
|
+
functionCalls: () => (allFunctionCalls.length > 0 ? allFunctionCalls : undefined),
|
|
146
158
|
usageMetadata: () => result.usageMetadata,
|
|
147
159
|
groundingMetadata: () => result.groundingMetadata,
|
|
148
160
|
},
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "minovative-mind-cli",
|
|
3
3
|
"description": "An automated AI agent powered by Vertex AI that helps you write software",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"author": "Daniel Ward",
|
|
6
6
|
"bin": "./bin/run.js",
|
|
7
7
|
"bugs": "https://github.com/quarantiine/minovative-mind-cli/issues",
|