minovative-mind-cli 1.0.0 → 1.0.2

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 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,7 @@ An automated AI agent powered by Vertex AI that helps you write software right i
6
8
  [![Version](https://img.shields.io/npm/v/minovative-mind-cli.svg)](https://npmjs.org/package/minovative-mind-cli)
7
9
  [![Downloads/week](https://img.shields.io/npm/dw/minovative-mind-cli.svg)](https://npmjs.org/package/minovative-mind-cli)
8
10
 
9
- See [FEATURES.md](./FEATURES.md) and [ARCHITECTURE.md](./ARCHITECTURE.md) to learn more about the built-in safety, context intelligence, and self-correction systems.
11
+ Official Website: [https://www.minovativemind.dev/](https://www.minovativemind.dev/)
10
12
 
11
13
  ## Supported Models
12
14
 
@@ -14,32 +16,42 @@ The CLI supports the following advanced reasoning and coding models via Vertex A
14
16
 
15
17
  - **Gemini 2.5 Pro**: Best for complex coding and large context windows.
16
18
  - **Gemini 2.5 Flash**: Lightning fast, balanced performance for everyday tasks.
17
- - **Claude Opus 4.6**: Anthropic's highly capable model for complex reasoning.
18
- - **Claude Sonnet 4.6**: Anthropic's fast and highly intelligent coding model.
19
19
 
20
- Note: Background utility tasks (like Intent Routing, Context Investigation, and Auto-Commits) are hardcoded to use fast, lightweight Gemini models (Flash and Flash-Lite) to keep the CLI snappy and cost-effective, reserving your selected model exclusively for the heavy lifting of writing code.
20
+ ## TOC
21
+
22
+ - [Minovative Mind CLI](#minovative-mind-cli)
23
+ - [Commands](#commands)
21
24
 
22
- <!-- toc -->
23
- * [Minovative Mind CLI](#minovative-mind-cli)
24
- * [Usage](#usage)
25
- * [Commands](#commands)
26
25
  <!-- tocstop -->
27
26
 
28
- # Usage
27
+ ## Quick Start
29
28
 
30
- <!-- usage -->
31
- ```sh-session
32
- $ npm install -g minovative-mind-cli
33
- $ minovative-mind-cli COMMAND
34
- running command...
35
- $ minovative-mind-cli (--version)
36
- minovative-mind-cli/1.0.0 darwin-arm64 node-v25.6.1
37
- $ minovative-mind-cli --help [COMMAND]
38
- USAGE
39
- $ minovative-mind-cli COMMAND
40
- ...
41
- ```
42
- <!-- usagestop -->
29
+ Getting started with Minovative Mind CLI is easy!
30
+
31
+ 1. **Install Globally:**
32
+
33
+ ```bash
34
+ npm install -g minovative-mind-cli
35
+ ```
36
+
37
+ 2. **Authenticate:**
38
+ Before you can use the CLI, you need to create an account at [https://www.minovativemind.dev/](https://www.minovativemind.dev/).
39
+ Once you have an account, sign in securely using GitHub by running:
40
+
41
+ ```bash
42
+ minovative-mind-cli login
43
+ ```
44
+
45
+ 3. **Start Coding!**
46
+ Navigate to any project directory on your computer and start a chat session:
47
+
48
+ ```bash
49
+ cd your-project-folder
50
+ minovative-mind-cli chat
51
+ ```
52
+
53
+ 4. **Change Models (Optional):**
54
+ Once in a chat, type `/models` to switch between advanced reasoning models like Gemini 2.5 Pro and Gemini 2.5 Flash!
43
55
 
44
56
  # Commands
45
57
 
@@ -48,16 +60,6 @@ USAGE
48
60
  * [`minovative-mind-cli help [COMMAND]`](#minovative-mind-cli-help-command)
49
61
  * [`minovative-mind-cli login`](#minovative-mind-cli-login)
50
62
  * [`minovative-mind-cli logout`](#minovative-mind-cli-logout)
51
- * [`minovative-mind-cli plugins`](#minovative-mind-cli-plugins)
52
- * [`minovative-mind-cli plugins add PLUGIN`](#minovative-mind-cli-plugins-add-plugin)
53
- * [`minovative-mind-cli plugins:inspect PLUGIN...`](#minovative-mind-cli-pluginsinspect-plugin)
54
- * [`minovative-mind-cli plugins install PLUGIN`](#minovative-mind-cli-plugins-install-plugin)
55
- * [`minovative-mind-cli plugins link PATH`](#minovative-mind-cli-plugins-link-path)
56
- * [`minovative-mind-cli plugins remove [PLUGIN]`](#minovative-mind-cli-plugins-remove-plugin)
57
- * [`minovative-mind-cli plugins reset`](#minovative-mind-cli-plugins-reset)
58
- * [`minovative-mind-cli plugins uninstall [PLUGIN]`](#minovative-mind-cli-plugins-uninstall-plugin)
59
- * [`minovative-mind-cli plugins unlink [PLUGIN]`](#minovative-mind-cli-plugins-unlink-plugin)
60
- * [`minovative-mind-cli plugins update`](#minovative-mind-cli-plugins-update)
61
63
 
62
64
  ## `minovative-mind-cli chat`
63
65
 
@@ -76,8 +78,6 @@ EXAMPLES
76
78
  $ minovative-mind-cli --help
77
79
  ```
78
80
 
79
- _See code: [src/commands/chat.ts](https://github.com/quarantiine/minovative-mind-cli/blob/v1.0.0/src/commands/chat.ts)_
80
-
81
81
  ## `minovative-mind-cli help [COMMAND]`
82
82
 
83
83
  Display help for minovative-mind-cli.
@@ -96,8 +96,6 @@ DESCRIPTION
96
96
  Display help for minovative-mind-cli.
97
97
  ```
98
98
 
99
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.50/src/commands/help.ts)_
100
-
101
99
  ## `minovative-mind-cli login`
102
100
 
103
101
  Sign in to your Minovative Mind account using GitHub
@@ -110,8 +108,6 @@ DESCRIPTION
110
108
  Sign in to your Minovative Mind account using GitHub
111
109
  ```
112
110
 
113
- _See code: [src/commands/login.ts](https://github.com/quarantiine/minovative-mind-cli/blob/v1.0.0/src/commands/login.ts)_
114
-
115
111
  ## `minovative-mind-cli logout`
116
112
 
117
113
  Sign out of your Minovative Mind account
@@ -123,296 +119,4 @@ USAGE
123
119
  DESCRIPTION
124
120
  Sign out of your Minovative Mind account
125
121
  ```
126
-
127
- _See code: [src/commands/logout.ts](https://github.com/quarantiine/minovative-mind-cli/blob/v1.0.0/src/commands/logout.ts)_
128
-
129
- ## `minovative-mind-cli plugins`
130
-
131
- List installed plugins.
132
-
133
- ```
134
- USAGE
135
- $ minovative-mind-cli plugins [--json] [--core]
136
-
137
- FLAGS
138
- --core Show core plugins.
139
-
140
- GLOBAL FLAGS
141
- --json Format output as json.
142
-
143
- DESCRIPTION
144
- List installed plugins.
145
-
146
- EXAMPLES
147
- $ minovative-mind-cli plugins
148
- ```
149
-
150
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.72/src/commands/plugins/index.ts)_
151
-
152
- ## `minovative-mind-cli plugins add PLUGIN`
153
-
154
- Installs a plugin into minovative-mind-cli.
155
-
156
- ```
157
- USAGE
158
- $ minovative-mind-cli plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
159
-
160
- ARGUMENTS
161
- PLUGIN... Plugin to install.
162
-
163
- FLAGS
164
- -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
165
- -h, --help Show CLI help.
166
- -s, --silent Silences npm output.
167
- -v, --verbose Show verbose npm output.
168
-
169
- GLOBAL FLAGS
170
- --json Format output as json.
171
-
172
- DESCRIPTION
173
- Installs a plugin into minovative-mind-cli.
174
-
175
- Uses npm to install plugins.
176
-
177
- Installation of a user-installed plugin will override a core plugin.
178
-
179
- Use the MINOVATIVE_MIND_CLI_NPM_LOG_LEVEL environment variable to set the npm loglevel.
180
- Use the MINOVATIVE_MIND_CLI_NPM_REGISTRY environment variable to set the npm registry.
181
-
182
- ALIASES
183
- $ minovative-mind-cli plugins add
184
-
185
- EXAMPLES
186
- Install a plugin from npm registry.
187
-
188
- $ minovative-mind-cli plugins add myplugin
189
-
190
- Install a plugin from a github url.
191
-
192
- $ minovative-mind-cli plugins add https://github.com/someuser/someplugin
193
-
194
- Install a plugin from a github slug.
195
-
196
- $ minovative-mind-cli plugins add someuser/someplugin
197
- ```
198
-
199
- ## `minovative-mind-cli plugins:inspect PLUGIN...`
200
-
201
- Displays installation properties of a plugin.
202
-
203
- ```
204
- USAGE
205
- $ minovative-mind-cli plugins inspect PLUGIN...
206
-
207
- ARGUMENTS
208
- PLUGIN... [default: .] Plugin to inspect.
209
-
210
- FLAGS
211
- -h, --help Show CLI help.
212
- -v, --verbose
213
-
214
- GLOBAL FLAGS
215
- --json Format output as json.
216
-
217
- DESCRIPTION
218
- Displays installation properties of a plugin.
219
-
220
- EXAMPLES
221
- $ minovative-mind-cli plugins inspect myplugin
222
- ```
223
-
224
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.72/src/commands/plugins/inspect.ts)_
225
-
226
- ## `minovative-mind-cli plugins install PLUGIN`
227
-
228
- Installs a plugin into minovative-mind-cli.
229
-
230
- ```
231
- USAGE
232
- $ minovative-mind-cli plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
233
-
234
- ARGUMENTS
235
- PLUGIN... Plugin to install.
236
-
237
- FLAGS
238
- -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
239
- -h, --help Show CLI help.
240
- -s, --silent Silences npm output.
241
- -v, --verbose Show verbose npm output.
242
-
243
- GLOBAL FLAGS
244
- --json Format output as json.
245
-
246
- DESCRIPTION
247
- Installs a plugin into minovative-mind-cli.
248
-
249
- Uses npm to install plugins.
250
-
251
- Installation of a user-installed plugin will override a core plugin.
252
-
253
- Use the MINOVATIVE_MIND_CLI_NPM_LOG_LEVEL environment variable to set the npm loglevel.
254
- Use the MINOVATIVE_MIND_CLI_NPM_REGISTRY environment variable to set the npm registry.
255
-
256
- ALIASES
257
- $ minovative-mind-cli plugins add
258
-
259
- EXAMPLES
260
- Install a plugin from npm registry.
261
-
262
- $ minovative-mind-cli plugins install myplugin
263
-
264
- Install a plugin from a github url.
265
-
266
- $ minovative-mind-cli plugins install https://github.com/someuser/someplugin
267
-
268
- Install a plugin from a github slug.
269
-
270
- $ minovative-mind-cli plugins install someuser/someplugin
271
- ```
272
-
273
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.72/src/commands/plugins/install.ts)_
274
-
275
- ## `minovative-mind-cli plugins link PATH`
276
-
277
- Links a plugin into the CLI for development.
278
-
279
- ```
280
- USAGE
281
- $ minovative-mind-cli plugins link PATH [-h] [--install] [-v]
282
-
283
- ARGUMENTS
284
- PATH [default: .] path to plugin
285
-
286
- FLAGS
287
- -h, --help Show CLI help.
288
- -v, --verbose
289
- --[no-]install Install dependencies after linking the plugin.
290
-
291
- DESCRIPTION
292
- Links a plugin into the CLI for development.
293
-
294
- Installation of a linked plugin will override a user-installed or core plugin.
295
-
296
- e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
297
- command will override the user-installed or core plugin implementation. This is useful for development work.
298
-
299
-
300
- EXAMPLES
301
- $ minovative-mind-cli plugins link myplugin
302
- ```
303
-
304
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.72/src/commands/plugins/link.ts)_
305
-
306
- ## `minovative-mind-cli plugins remove [PLUGIN]`
307
-
308
- Removes a plugin from the CLI.
309
-
310
- ```
311
- USAGE
312
- $ minovative-mind-cli plugins remove [PLUGIN...] [-h] [-v]
313
-
314
- ARGUMENTS
315
- [PLUGIN...] plugin to uninstall
316
-
317
- FLAGS
318
- -h, --help Show CLI help.
319
- -v, --verbose
320
-
321
- DESCRIPTION
322
- Removes a plugin from the CLI.
323
-
324
- ALIASES
325
- $ minovative-mind-cli plugins unlink
326
- $ minovative-mind-cli plugins remove
327
-
328
- EXAMPLES
329
- $ minovative-mind-cli plugins remove myplugin
330
- ```
331
-
332
- ## `minovative-mind-cli plugins reset`
333
-
334
- Remove all user-installed and linked plugins.
335
-
336
- ```
337
- USAGE
338
- $ minovative-mind-cli plugins reset [--hard] [--reinstall]
339
-
340
- FLAGS
341
- --hard Delete node_modules and package manager related files in addition to uninstalling plugins.
342
- --reinstall Reinstall all plugins after uninstalling.
343
- ```
344
-
345
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.72/src/commands/plugins/reset.ts)_
346
-
347
- ## `minovative-mind-cli plugins uninstall [PLUGIN]`
348
-
349
- Removes a plugin from the CLI.
350
-
351
- ```
352
- USAGE
353
- $ minovative-mind-cli plugins uninstall [PLUGIN...] [-h] [-v]
354
-
355
- ARGUMENTS
356
- [PLUGIN...] plugin to uninstall
357
-
358
- FLAGS
359
- -h, --help Show CLI help.
360
- -v, --verbose
361
-
362
- DESCRIPTION
363
- Removes a plugin from the CLI.
364
-
365
- ALIASES
366
- $ minovative-mind-cli plugins unlink
367
- $ minovative-mind-cli plugins remove
368
-
369
- EXAMPLES
370
- $ minovative-mind-cli plugins uninstall myplugin
371
- ```
372
-
373
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.72/src/commands/plugins/uninstall.ts)_
374
-
375
- ## `minovative-mind-cli plugins unlink [PLUGIN]`
376
-
377
- Removes a plugin from the CLI.
378
-
379
- ```
380
- USAGE
381
- $ minovative-mind-cli plugins unlink [PLUGIN...] [-h] [-v]
382
-
383
- ARGUMENTS
384
- [PLUGIN...] plugin to uninstall
385
-
386
- FLAGS
387
- -h, --help Show CLI help.
388
- -v, --verbose
389
-
390
- DESCRIPTION
391
- Removes a plugin from the CLI.
392
-
393
- ALIASES
394
- $ minovative-mind-cli plugins unlink
395
- $ minovative-mind-cli plugins remove
396
-
397
- EXAMPLES
398
- $ minovative-mind-cli plugins unlink myplugin
399
- ```
400
-
401
- ## `minovative-mind-cli plugins update`
402
-
403
- Update installed plugins.
404
-
405
- ```
406
- USAGE
407
- $ minovative-mind-cli plugins update [-h] [-v]
408
-
409
- FLAGS
410
- -h, --help Show CLI help.
411
- -v, --verbose
412
-
413
- DESCRIPTION
414
- Update installed plugins.
415
- ```
416
-
417
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.72/src/commands/plugins/update.ts)_
418
122
  <!-- commandsstop -->
@@ -65,5 +65,5 @@
65
65
  ]
66
66
  }
67
67
  },
68
- "version": "1.0.0"
68
+ "version": "1.0.2"
69
69
  }
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.0",
4
+ "version": "1.0.2",
5
5
  "author": "Daniel Ward",
6
6
  "bin": "./bin/run.js",
7
7
  "bugs": "https://github.com/quarantiine/minovative-mind-cli/issues",
@@ -10,7 +10,6 @@
10
10
  "@google/generative-ai": "^0.21.0",
11
11
  "@oclif/core": "^4",
12
12
  "@oclif/plugin-help": "^6",
13
- "@oclif/plugin-plugins": "^5",
14
13
  "dotenv": "^16",
15
14
  "fastest-levenshtein": "^1.0.16",
16
15
  "marked": "^12.0.2",
@@ -61,8 +60,7 @@
61
60
  "default": "chat",
62
61
  "commands": "./dist/commands",
63
62
  "plugins": [
64
- "@oclif/plugin-help",
65
- "@oclif/plugin-plugins"
63
+ "@oclif/plugin-help"
66
64
  ],
67
65
  "topicSeparator": " "
68
66
  },
@@ -73,9 +71,9 @@
73
71
  "lint": "eslint",
74
72
  "postpack": "shx rm -f oclif.manifest.json",
75
73
  "posttest": "npm run lint",
76
- "prepack": "oclif manifest && oclif readme",
74
+ "prepack": "oclif manifest && oclif readme --no-source-links",
77
75
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
78
- "version": "oclif readme && git add README.md"
76
+ "version": "oclif readme --no-source-links && git add README.md"
79
77
  },
80
78
  "types": "dist/index.d.ts"
81
79
  }