minovative-mind-cli 1.1.0 → 1.1.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.
@@ -1,5 +1,7 @@
1
1
  import 'dotenv/config';
2
+ import fs from 'node:fs';
2
3
  import { Command } from '@oclif/core';
4
+ import updateNotifier from 'update-notifier';
3
5
  import * as p from '@clack/prompts';
4
6
  import pc from 'picocolors';
5
7
  import { startAgentLoop } from '../services/agent.js';
@@ -10,6 +12,9 @@ export default class DefaultCommand extends Command {
10
12
  async run() {
11
13
  const workspaceRoot = process.cwd();
12
14
  console.clear();
15
+ // Setup update notifier
16
+ const pkg = JSON.parse(await fs.promises.readFile(new URL('../../package.json', import.meta.url), 'utf8'));
17
+ updateNotifier({ pkg }).notify();
13
18
  p.intro(`${pc.bgCyan(pc.black(' Minovative Mind '))} ${pc.dim('v' + this.config.version)}`);
14
19
  // Check authentication
15
20
  let idToken = await getAuthorizedIdToken();
@@ -203,7 +203,7 @@ export class AsyncInputHandler {
203
203
  }
204
204
  }
205
205
  import { consumeSkipOnce, executeTool, getApprovalMode, setApprovalMode } from './agent-tools.js';
206
- import { createSharedChatSession, getGeneralChatConfig, getPlanExecutionConfig, ProxyChatSession, compressTextUsingFlashLite } from './ai.js';
206
+ import { createSharedChatSession, getGeneralChatConfig, getPlanExecutionConfig, ProxyChatSession, compressTextUsingFlashLite, } from './ai.js';
207
207
  import { changeLogger } from './changeLogger.js';
208
208
  import { gatherContext, routeIntent } from './contextAgent.js';
209
209
  import { verifyChangedFiles } from './verificationService.js';
@@ -691,9 +691,9 @@ export async function startAgentLoop(workspaceRoot, version) {
691
691
  message: 'Select AI Model',
692
692
  options: [
693
693
  { value: 'gemini-3.1-pro', label: 'Gemini 3.1 Pro', hint: 'The newest Pro model for complex logic' },
694
- { value: 'gemini-3.5-flash', label: 'Gemini 3.5 Flash', hint: 'The newest Flash model for high speed' },
694
+ { value: 'gemini-3.5-flash', label: 'Gemini 3.5 Flash', hint: 'Balanced performance' },
695
695
  { value: 'gemini-2.5-pro', label: 'Gemini 2.5 Pro', hint: 'Best for complex coding & large context' },
696
- { value: 'gemini-2.5-flash', label: 'Gemini 2.5 Flash', hint: 'Balanced performance' },
696
+ // {value: 'gemini-2.5-flash', label: 'Gemini 2.5 Flash', hint: 'Balanced performance'},
697
697
  // {value: 'claude-opus-4-6', label: 'Claude Opus 4.6', hint: 'Anthropic: Highly capable, complex reasoning'},
698
698
  // {value: 'claude-sonnet-4-6', label: 'Claude Sonnet 4.6', hint: 'Anthropic: Fast and highly intelligent'},
699
699
  ],
@@ -65,5 +65,5 @@
65
65
  ]
66
66
  }
67
67
  },
68
- "version": "1.1.0"
68
+ "version": "1.1.1"
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.1.0",
4
+ "version": "1.1.1",
5
5
  "author": "Daniel Ward",
6
6
  "bin": "./bin/run.js",
7
7
  "bugs": "https://github.com/quarantiine/minovative-mind-cli/issues",
@@ -14,7 +14,8 @@
14
14
  "fastest-levenshtein": "^1.0.16",
15
15
  "marked": "^12.0.2",
16
16
  "marked-terminal": "^7.0.0",
17
- "picocolors": "^1"
17
+ "picocolors": "^1",
18
+ "update-notifier": "^7.3.1"
18
19
  },
19
20
  "devDependencies": {
20
21
  "@eslint/compat": "^1",
@@ -24,6 +25,7 @@
24
25
  "@types/marked-terminal": "^6.1.1",
25
26
  "@types/mocha": "^10",
26
27
  "@types/node": "^18",
28
+ "@types/update-notifier": "^6.0.8",
27
29
  "chai": "^4",
28
30
  "eslint": "^9",
29
31
  "eslint-config-oclif": "^6",