gims 0.6.3 โ†’ 0.6.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.4] - 2025-10-19
4
+
5
+ ### ๐Ÿ”ง Command Aliases Fixed
6
+ - **Fixed `g i` alias**: Now correctly initializes a git repository (was incorrectly mapped to interactive mode)
7
+ - **Updated `g interactive` alias**: Changed from `g i` to `g int` to avoid conflicts
8
+ - **Verified `g ls` and `g ll`**: Both commands working correctly (short and detailed commit history)
9
+
10
+ ### ๐Ÿ“š Documentation Updates
11
+ - Updated `QUICK_REFERENCE.md` to reflect correct command aliases
12
+ - Updated help output (`g q`) to show correct mappings
13
+
14
+ ---
15
+
3
16
  ## [0.6.2] - 2024-12-19
4
17
 
5
18
  ### ๐Ÿš€ AI Model Updates
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```bash
6
6
  g s # Status - Enhanced git status with AI insights
7
- g i # Interactive - Guided commit wizard
7
+ g i # Init - Initialize a new Git repository
8
8
  g p # Preview - See what will be committed
9
9
  g l # Local - AI commit locally
10
10
  g o # Online - AI commit + push
@@ -34,7 +34,7 @@ g setup
34
34
  g s
35
35
 
36
36
  # 2. Commit with AI (choose one)
37
- g i # Interactive mode (guided)
37
+ g int # Interactive mode (guided)
38
38
  g o # One-command: commit + push
39
39
  g l # Local commit only
40
40
 
package/README.md CHANGED
@@ -29,7 +29,8 @@ g o # AI commit + push
29
29
  | Command | Description |
30
30
  |---------|-------------|
31
31
  | `g s` | Enhanced status with AI insights |
32
- | `g i` | Interactive commit wizard |
32
+ | `g i` | Initialize git repository |
33
+ | `g int` | Interactive commit wizard |
33
34
  | `g o` | AI commit + push |
34
35
  | `g l` | AI commit locally |
35
36
  | `g ls` | Commit history (short) |
@@ -48,7 +49,7 @@ g o # AI commit + push
48
49
  ```bash
49
50
  # Daily workflow
50
51
  g s # Check what changed
51
- g i # Interactive commit
52
+ g int # Interactive commit
52
53
  g o # Quick commit + push
53
54
 
54
55
  # Advanced
package/bin/gims.js CHANGED
@@ -237,7 +237,7 @@ program.command('status').alias('s')
237
237
  }
238
238
  });
239
239
 
240
- program.command('interactive').alias('i')
240
+ program.command('interactive').alias('int')
241
241
  .description('Interactive commit wizard')
242
242
  .action(async () => {
243
243
  await ensureRepo();
@@ -304,7 +304,7 @@ program.command('help-quick').alias('q')
304
304
 
305
305
  console.log(color.bold('Single-Letter Workflow:'));
306
306
  console.log(` ${color.cyan('g s')} Status - Enhanced git status with AI insights`);
307
- console.log(` ${color.cyan('g i')} Interactive - Guided commit wizard`);
307
+ console.log(` ${color.cyan('g i')} Init - Initialize a new Git repository`);
308
308
  console.log(` ${color.cyan('g p')} Preview - See what will be committed`);
309
309
  console.log(` ${color.cyan('g l')} Local - AI commit locally`);
310
310
  console.log(` ${color.cyan('g o')} Online - AI commit + push`);
@@ -321,14 +321,14 @@ program.command('help-quick').alias('q')
321
321
 
322
322
  console.log(color.bold('Essential Workflow:'));
323
323
  console.log(` ${color.cyan('g s')} Check what's changed`);
324
- console.log(` ${color.cyan('g i')} or ${color.cyan('g o')} Commit with AI`);
324
+ console.log(` ${color.cyan('g int')} or ${color.cyan('g o')} Commit with AI (interactive or online)`);
325
325
  console.log(` ${color.cyan('g ls')} or ${color.cyan('g h')} View history\n`);
326
326
 
327
327
  console.log(`For full help: ${color.cyan('g --help')}`);
328
328
  console.log(`For detailed docs: See README.md`);
329
329
  });
330
330
 
331
- program.command('init')
331
+ program.command('init').alias('i')
332
332
  .description('Initialize a new Git repository')
333
333
  .action(async () => {
334
334
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gims",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "Git Made Simple โ€“ AIโ€‘powered git helper using Gemini / OpenAI",
5
5
  "author": "S41R4J",
6
6
  "license": "MIT",