@snapcommit/cli 3.8.6 → 3.8.8

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.
@@ -13,7 +13,7 @@ const retry_1 = require("../utils/retry");
13
13
  const genAI = new generative_ai_1.GoogleGenerativeAI(process.env.GOOGLE_AI_API_KEY || '');
14
14
  async function generateCommitMessageGemini(diff) {
15
15
  try {
16
- const model = genAI.getGenerativeModel({ model: 'gemini-2.0-flash-exp' });
16
+ const model = genAI.getGenerativeModel({ model: 'gemini-2.5-pro' });
17
17
  const prompt = `You are an expert software engineer writing commit messages.
18
18
 
19
19
  Analyze this git diff and generate a professional conventional commit message.
@@ -51,7 +51,7 @@ Reply with ONLY the commit message, nothing else.`;
51
51
  }
52
52
  async function interpretGitCommandGemini(userInput, context) {
53
53
  try {
54
- const model = genAI.getGenerativeModel({ model: 'gemini-2.0-flash-exp' });
54
+ const model = genAI.getGenerativeModel({ model: 'gemini-2.5-pro' });
55
55
  const prompt = `You are a Git expert assistant. Interpret the user's natural language request into a structured Git operation.
56
56
 
57
57
  User request: "${userInput}"
@@ -107,7 +107,7 @@ Respond with ONLY the JSON object, no other text.`;
107
107
  */
108
108
  async function needsClarificationGemini(userInput) {
109
109
  try {
110
- const model = genAI.getGenerativeModel({ model: 'gemini-2.0-flash-exp' });
110
+ const model = genAI.getGenerativeModel({ model: 'gemini-2.5-pro' });
111
111
  const prompt = `You are a helpful Git assistant. Determine if this user request is ambiguous and requires clarification.
112
112
 
113
113
  User request: "${userInput}"
@@ -151,7 +151,7 @@ Respond with ONLY the JSON object, no other text.`;
151
151
  */
152
152
  async function solveGitProblemGemini(userInput, context) {
153
153
  try {
154
- const model = genAI.getGenerativeModel({ model: 'gemini-2.0-flash-exp' });
154
+ const model = genAI.getGenerativeModel({ model: 'gemini-2.5-pro' });
155
155
  const prompt = `You are an expert Git problem solver. A user encountered an issue.
156
156
 
157
157
  User's problem: "${userInput}"
package/dist/index.js CHANGED
@@ -8,6 +8,7 @@ const commander_1 = require("commander");
8
8
  const chalk_1 = __importDefault(require("chalk"));
9
9
  const dotenv_1 = require("dotenv");
10
10
  const path_1 = __importDefault(require("path"));
11
+ const fs_1 = require("fs");
11
12
  const version_1 = require("./utils/version");
12
13
  const commit_1 = require("./commands/commit");
13
14
  const stats_1 = require("./commands/stats");
@@ -24,6 +25,8 @@ const github_connect_1 = require("./commands/github-connect");
24
25
  const repl_1 = require("./repl");
25
26
  // Load environment variables from root .env
26
27
  (0, dotenv_1.config)({ path: path_1.default.join(__dirname, '../../.env') });
28
+ // Read version from package.json
29
+ const packageJson = JSON.parse((0, fs_1.readFileSync)(path_1.default.join(__dirname, '../package.json'), 'utf-8'));
27
30
  const program = new commander_1.Command();
28
31
  // Check for updates (async, non-blocking)
29
32
  (0, version_1.checkForUpdates)().then((result) => {
@@ -40,7 +43,7 @@ const program = new commander_1.Command();
40
43
  program
41
44
  .name('snapcommit')
42
45
  .description('Snap. Commit. Track. - Instant AI commits with beautiful stats')
43
- .version('1.0.0');
46
+ .version(packageJson.version);
44
47
  // Command: devflow commit
45
48
  program
46
49
  .command('commit')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snapcommit/cli",
3
- "version": "3.8.6",
3
+ "version": "3.8.8",
4
4
  "description": "Instant AI commits. Beautiful progress tracking. Never write commit messages again.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {