minovative-mind-cli 1.1.2 → 1.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 CHANGED
@@ -65,7 +65,27 @@ Getting started with Minovative Mind CLI is easy!
65
65
  # Commands
66
66
 
67
67
  <!-- commands -->
68
+ * [`minovative-mind-cli chat`](#minovative-mind-cli-chat)
68
69
  * [`minovative-mind-cli help [COMMAND]`](#minovative-mind-cli-help-command)
70
+ * [`minovative-mind-cli login`](#minovative-mind-cli-login)
71
+ * [`minovative-mind-cli logout`](#minovative-mind-cli-logout)
72
+
73
+ ## `minovative-mind-cli chat`
74
+
75
+ Start an interactive AI coding agent session powered by Vertex AI.
76
+
77
+ ```
78
+ USAGE
79
+ $ minovative-mind-cli chat
80
+
81
+ DESCRIPTION
82
+ Start an interactive AI coding agent session powered by Vertex AI.
83
+
84
+ EXAMPLES
85
+ $ minovative-mind-cli
86
+
87
+ $ minovative-mind-cli --help
88
+ ```
69
89
 
70
90
  ## `minovative-mind-cli help [COMMAND]`
71
91
 
@@ -84,6 +104,30 @@ FLAGS
84
104
  DESCRIPTION
85
105
  Display help for minovative-mind-cli.
86
106
  ```
107
+
108
+ ## `minovative-mind-cli login`
109
+
110
+ Sign in to your Minovative Mind account using GitHub
111
+
112
+ ```
113
+ USAGE
114
+ $ minovative-mind-cli login
115
+
116
+ DESCRIPTION
117
+ Sign in to your Minovative Mind account using GitHub
118
+ ```
119
+
120
+ ## `minovative-mind-cli logout`
121
+
122
+ Sign out of your Minovative Mind account
123
+
124
+ ```
125
+ USAGE
126
+ $ minovative-mind-cli logout
127
+
128
+ DESCRIPTION
129
+ Sign out of your Minovative Mind account
130
+ ```
87
131
  <!-- commandsstop -->
88
132
 
89
133
  ## Legal
@@ -1,4 +1,69 @@
1
1
  {
2
- "commands": {},
3
- "version": "1.1.2"
2
+ "commands": {
3
+ "chat": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Start an interactive AI coding agent session powered by Vertex AI.",
7
+ "examples": [
8
+ "<%= config.bin %>",
9
+ "<%= config.bin %> --help"
10
+ ],
11
+ "flags": {},
12
+ "hasDynamicHelp": false,
13
+ "hiddenAliases": [],
14
+ "id": "chat",
15
+ "pluginAlias": "minovative-mind-cli",
16
+ "pluginName": "minovative-mind-cli",
17
+ "pluginType": "core",
18
+ "strict": true,
19
+ "enableJsonFlag": false,
20
+ "isESM": true,
21
+ "relativePath": [
22
+ "dist",
23
+ "commands",
24
+ "chat.js"
25
+ ]
26
+ },
27
+ "login": {
28
+ "aliases": [],
29
+ "args": {},
30
+ "description": "Sign in to your Minovative Mind account using GitHub",
31
+ "flags": {},
32
+ "hasDynamicHelp": false,
33
+ "hiddenAliases": [],
34
+ "id": "login",
35
+ "pluginAlias": "minovative-mind-cli",
36
+ "pluginName": "minovative-mind-cli",
37
+ "pluginType": "core",
38
+ "strict": true,
39
+ "enableJsonFlag": false,
40
+ "isESM": true,
41
+ "relativePath": [
42
+ "dist",
43
+ "commands",
44
+ "login.js"
45
+ ]
46
+ },
47
+ "logout": {
48
+ "aliases": [],
49
+ "args": {},
50
+ "description": "Sign out of your Minovative Mind account",
51
+ "flags": {},
52
+ "hasDynamicHelp": false,
53
+ "hiddenAliases": [],
54
+ "id": "logout",
55
+ "pluginAlias": "minovative-mind-cli",
56
+ "pluginName": "minovative-mind-cli",
57
+ "pluginType": "core",
58
+ "strict": true,
59
+ "enableJsonFlag": false,
60
+ "isESM": true,
61
+ "relativePath": [
62
+ "dist",
63
+ "commands",
64
+ "logout.js"
65
+ ]
66
+ }
67
+ },
68
+ "version": "1.1.3"
4
69
  }
package/package.json CHANGED
@@ -1,9 +1,11 @@
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.1.2",
4
+ "version": "1.1.3",
5
5
  "author": "Daniel Ward",
6
- "bin": "./bin/run.js",
6
+ "bin": {
7
+ "minovative-mind-cli": "./bin/run.js"
8
+ },
7
9
  "bugs": "https://github.com/quarantiine/minovative-mind-cli/issues",
8
10
  "dependencies": {
9
11
  "@clack/prompts": "^0.11.0",
@@ -66,14 +68,17 @@
66
68
  ],
67
69
  "topicSeparator": " "
68
70
  },
69
- "repository": "quarantiine/minovative-mind-cli",
71
+ "repository": {
72
+ "type": "git",
73
+ "url": "git+https://github.com/quarantiine/minovative-mind-cli.git"
74
+ },
70
75
  "scripts": {
71
76
  "build": "shx rm -rf dist && tsc -b",
72
77
  "prepare": "npm run build",
73
78
  "lint": "eslint",
74
79
  "postpack": "shx rm -f oclif.manifest.json",
75
80
  "posttest": "npm run lint",
76
- "prepack": "oclif manifest && oclif readme --no-source-links",
81
+ "prepack": "npm run build && oclif manifest && oclif readme --no-source-links",
77
82
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
78
83
  "version": "oclif readme --no-source-links && git add README.md"
79
84
  },