minovative-mind-cli 1.0.0 → 1.0.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 +26 -311
- package/oclif.manifest.json +1 -1
- package/package.json +4 -6
package/README.md
CHANGED
|
@@ -14,8 +14,6 @@ The CLI supports the following advanced reasoning and coding models via Vertex A
|
|
|
14
14
|
|
|
15
15
|
- **Gemini 2.5 Pro**: Best for complex coding and large context windows.
|
|
16
16
|
- **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
17
|
|
|
20
18
|
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.
|
|
21
19
|
|
|
@@ -25,6 +23,31 @@ Note: Background utility tasks (like Intent Routing, Context Investigation, and
|
|
|
25
23
|
* [Commands](#commands)
|
|
26
24
|
<!-- tocstop -->
|
|
27
25
|
|
|
26
|
+
## Quick Start
|
|
27
|
+
|
|
28
|
+
Getting started with Minovative Mind CLI is easy!
|
|
29
|
+
|
|
30
|
+
1. **Install Globally:**
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g minovative-mind-cli
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
2. **Authenticate:**
|
|
36
|
+
You need to sign in with GitHub to access the AI models securely. Run:
|
|
37
|
+
```bash
|
|
38
|
+
minovative-mind-cli login
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
3. **Start Coding!**
|
|
42
|
+
Navigate to any project directory on your computer and start a chat session:
|
|
43
|
+
```bash
|
|
44
|
+
cd your-project-folder
|
|
45
|
+
minovative-mind-cli chat
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
4. **Change Models (Optional):**
|
|
49
|
+
Once in a chat, type `/models` to switch between advanced reasoning models like Gemini 2.5 Pro and Gemini 2.5 Flash!
|
|
50
|
+
|
|
28
51
|
# Usage
|
|
29
52
|
|
|
30
53
|
<!-- usage -->
|
|
@@ -33,7 +56,7 @@ $ npm install -g minovative-mind-cli
|
|
|
33
56
|
$ minovative-mind-cli COMMAND
|
|
34
57
|
running command...
|
|
35
58
|
$ minovative-mind-cli (--version)
|
|
36
|
-
minovative-mind-cli/1.0.
|
|
59
|
+
minovative-mind-cli/1.0.1 darwin-arm64 node-v25.6.1
|
|
37
60
|
$ minovative-mind-cli --help [COMMAND]
|
|
38
61
|
USAGE
|
|
39
62
|
$ minovative-mind-cli COMMAND
|
|
@@ -48,16 +71,6 @@ USAGE
|
|
|
48
71
|
* [`minovative-mind-cli help [COMMAND]`](#minovative-mind-cli-help-command)
|
|
49
72
|
* [`minovative-mind-cli login`](#minovative-mind-cli-login)
|
|
50
73
|
* [`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
74
|
|
|
62
75
|
## `minovative-mind-cli chat`
|
|
63
76
|
|
|
@@ -76,8 +89,6 @@ EXAMPLES
|
|
|
76
89
|
$ minovative-mind-cli --help
|
|
77
90
|
```
|
|
78
91
|
|
|
79
|
-
_See code: [src/commands/chat.ts](https://github.com/quarantiine/minovative-mind-cli/blob/v1.0.0/src/commands/chat.ts)_
|
|
80
|
-
|
|
81
92
|
## `minovative-mind-cli help [COMMAND]`
|
|
82
93
|
|
|
83
94
|
Display help for minovative-mind-cli.
|
|
@@ -96,8 +107,6 @@ DESCRIPTION
|
|
|
96
107
|
Display help for minovative-mind-cli.
|
|
97
108
|
```
|
|
98
109
|
|
|
99
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.50/src/commands/help.ts)_
|
|
100
|
-
|
|
101
110
|
## `minovative-mind-cli login`
|
|
102
111
|
|
|
103
112
|
Sign in to your Minovative Mind account using GitHub
|
|
@@ -110,8 +119,6 @@ DESCRIPTION
|
|
|
110
119
|
Sign in to your Minovative Mind account using GitHub
|
|
111
120
|
```
|
|
112
121
|
|
|
113
|
-
_See code: [src/commands/login.ts](https://github.com/quarantiine/minovative-mind-cli/blob/v1.0.0/src/commands/login.ts)_
|
|
114
|
-
|
|
115
122
|
## `minovative-mind-cli logout`
|
|
116
123
|
|
|
117
124
|
Sign out of your Minovative Mind account
|
|
@@ -123,296 +130,4 @@ USAGE
|
|
|
123
130
|
DESCRIPTION
|
|
124
131
|
Sign out of your Minovative Mind account
|
|
125
132
|
```
|
|
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
133
|
<!-- commandsstop -->
|
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.1",
|
|
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
|
}
|