gims 0.5.3 β†’ 0.6.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 CHANGED
@@ -1,4 +1,4 @@
1
- # πŸš€ GIMS - Git Made Simple
1
+ # πŸš€ GIMS - Git Made Simple (Enhanced)
2
2
 
3
3
  <div align="center">
4
4
 
@@ -9,7 +9,7 @@
9
9
 
10
10
  **The AI-powered Git CLI that writes your commit messages for you**
11
11
 
12
- *Because life's too short for "fix stuff" commits* 🎯
12
+ *Now with enhanced UX, smart insights, and interactive workflows* ✨
13
13
 
14
14
  </div>
15
15
 
@@ -17,7 +17,7 @@
17
17
 
18
18
  ## ✨ What is GIMS?
19
19
 
20
- GIMS is a revolutionary Git CLI tool that uses AI to automatically generate meaningful commit messages from your code changes. Say goodbye to generic "update code" commits and hello to descriptive, professional commit messages that actually tell a story.
20
+ GIMS is a revolutionary Git CLI tool that uses AI to automatically generate meaningful commit messages from your code changes. The enhanced version adds intelligent insights, interactive workflows, and a modular architecture for better performance and user experience.
21
21
 
22
22
  ### 🎬 See It In Action
23
23
 
@@ -31,91 +31,152 @@ git push
31
31
  g o # AI analyzes changes, commits with perfect message, and pushes!
32
32
  ```
33
33
 
34
- ## 🌟 Features
34
+ ## 🌟 Enhanced Features
35
35
 
36
36
  ### πŸ€– **AI-Powered Commit Messages**
37
37
  - OpenAI, Google Gemini, and Groq support with automatic provider selection
38
- - Smart diff analysis that understands your code changes
38
+ - Smart diff analysis with caching for improved performance
39
+ - Multiple suggestion generation for better options
39
40
  - Handles large codebases with intelligent summarization and safe truncation
40
- - Optional Conventional Commits formatting and optional commit body generation (`--conventional`, `--body`)
41
+ - Optional Conventional Commits formatting and optional commit body generation
41
42
 
42
43
  ### ⚑ **Lightning Fast Workflow**
44
+ - **Interactive Mode**: `g int` - guided commit wizard with multiple suggestions
45
+ - **Smart Status**: `g status` - enhanced git status with AI insights
46
+ - **Preview Mode**: `g preview` - see what would be committed with AI message
43
47
  - One command commits: `g o` - analyze, commit, and push
44
- - Smart suggestions: `g s` - get AI-generated messages copied to clipboard
45
- - Local commits: `g l` - commit locally with AI messages
46
- - Staged-only by default for suggestions for precise control (use `--all` to stage everything)
47
-
48
- ### 🧠 **Intelligent Code Analysis**
49
- - Analyzes actual code changes, not just file names
50
- - Understands context from function changes, imports, and logic
51
- - Graceful fallbacks for extremely large changesets and offline use
52
-
53
- ### πŸ› οΈ **Developer-Friendly**
54
- - Numbered commit history with `g ls` / `g ll` and index-aware commands
55
- - Smart branching: `g b 5` creates branch from commit #5
56
- - Safe operations with confirmations and dry-run support
57
- - JSON output for editor integrations
58
- - Quality-of-life: `--amend`, `undo` command, and automatic upstream setup on push
59
- - Manual commit command for custom messages: `g m "your message"`
48
+ - Smart suggestions: `g s` - get AI-generated messages (use `--multiple` for options)
49
+
50
+ ### 🧠 **Intelligent Analysis & Insights**
51
+ - **Project Detection**: Automatically detects project type (React, Node, Python, etc.)
52
+ - **Smart Insights**: AI analyzes changes and provides contextual tips
53
+ - **Change Complexity**: Understands and reports on the scope of changes
54
+ - **Commit History Analysis**: Tracks patterns and suggests improvements
55
+
56
+ ### πŸ› οΈ **Enhanced Developer Experience**
57
+ - **Setup Wizard**: `g setup` - interactive configuration for first-time users
58
+ - **Progress Indicators**: Visual feedback for AI operations
59
+ - **Better Error Messages**: Actionable guidance when things go wrong
60
+ - **Smart Sync**: `g sync` - intelligent pull with rebase/merge options
61
+ - **Enhanced Stash**: `g stash` - AI-generated stash descriptions
62
+
63
+ ### πŸ”§ **Advanced Configuration**
64
+ - **Config Management**: `g config` - set preferences globally or per-project
65
+ - **Caching System**: Speeds up repeated operations
66
+ - **Modular Architecture**: Better performance and maintainability
60
67
 
61
68
  ## πŸš€ Quick Start
62
69
 
70
+ ### Prerequisites
71
+
72
+ - Node.js >= 18.18.0 (Node 20+ recommended)
73
+ - npm >= 9
74
+
75
+ Tip: Use nvm to manage Node versions per-user without sudo:
76
+
77
+ ```bash
78
+ curl -fsSL https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
79
+ export NVM_DIR="$HOME/.nvm" && . "$NVM_DIR/nvm.sh"
80
+ nvm install 20 && nvm alias default 20
81
+ ```
82
+
63
83
  ### Installation
64
84
 
65
85
  ```bash
66
86
  npm install -g gims
67
87
  ```
68
88
 
69
- ### Setup AI (Choose One)
89
+ If you get EACCES permission errors on Linux when installing globally, set a user prefix:
70
90
 
71
- **Option 1: OpenAI**
72
91
  ```bash
73
- export OPENAI_API_KEY="your-api-key-here"
92
+ mkdir -p ~/.npm-global
93
+ npm config set prefix '~/.npm-global'
94
+ echo 'export PATH="$HOME/.npm-global/bin:$PATH"' >> ~/.bashrc
95
+ source ~/.bashrc
96
+ npm install -g gims
74
97
  ```
75
98
 
76
- **Option 2: Google Gemini**
99
+ ### Setup AI (Choose One - Quick & Easy!)
100
+
101
+ **πŸš€ Quick Setup (Recommended)**
77
102
  ```bash
78
- export GEMINI_API_KEY="your-api-key-here"
103
+ # Gemini (Free, fast, recommended)
104
+ g setup --api-key gemini
105
+
106
+ # OpenAI (High quality)
107
+ g setup --api-key openai
108
+
109
+ # Groq (Ultra fast)
110
+ g setup --api-key groq
79
111
  ```
80
112
 
81
- **Option 3: Groq**
113
+ **πŸ”§ Manual Setup (Advanced)**
82
114
  ```bash
83
- export GROQ_API_KEY="your-api-key-here"
84
- # Optional, if self-hosting/proxying
85
- export GROQ_BASE_URL="https://api.groq.com/openai/v1"
115
+ # Set environment variables
116
+ export GEMINI_API_KEY="your-api-key-here" # Uses gemini-2.0-flash-exp
117
+ export OPENAI_API_KEY="your-api-key-here" # Uses gpt-4o-mini
118
+ export GROQ_API_KEY="your-api-key-here" # Uses llama-3.1-8b-instant
86
119
  ```
87
120
 
88
- GIMS auto-detects configured providers. If none are configured, it uses a local heuristic to generate sensible messages.
121
+ GIMS auto-detects configured providers and uses smart defaults. If no AI is configured, it uses local heuristics to generate sensible messages.
89
122
 
90
- ### Your First AI Commit
123
+ ### Your First Enhanced Experience
91
124
 
92
125
  ```bash
126
+ # Quick AI setup (choose one - Gemini recommended)
127
+ g setup --api-key gemini # Fast & free
128
+ g setup --api-key openai # High quality
129
+ g setup --api-key groq # Ultra fast
130
+
93
131
  # Make some changes to your code
94
- echo "console.log('Hello GIMS!');" > hello.js
132
+ echo "console.log('Hello Enhanced GIMS!');" > hello.js
133
+
134
+ # Check enhanced status with AI insights
135
+ g s
136
+ # Shows: Git status + AI insights about your changes
137
+
138
+ # Use interactive mode for guided commits
139
+ g i
140
+ # Walks you through: staging β†’ AI suggestions β†’ commit β†’ push
95
141
 
96
- # Let AI commit it for you
142
+ # Or use the classic one-command workflow
97
143
  g o
98
- # Output: Committed & pushed: "Add hello world console log"
144
+ # Output: βœ“ Committed & pushed: "Add hello world console log"
99
145
  ```
100
146
 
101
- ## πŸ“– Commands Reference
147
+ ## πŸ“– Enhanced Commands Reference
102
148
 
149
+ ### πŸš€ **Main Workflow (Single Letters)**
103
150
  | Command | Alias | Description | Example |
104
151
  |---------|-------|-------------|---------|
105
- | `gims init` | `g i` | Initialize new Git repo | `g i` |
106
- | `gims clone <repo>` | `g c` | Clone repository | `g c https://github.com/user/repo` |
107
- | `gims suggest` | `g s` | Generate & copy commit message from staged changes (use `--all` to stage) | `g s --all` |
152
+ | `gims status` | `g s` | Enhanced git status with AI insights | `g s` |
153
+ | `gims interactive` | `g i` | Interactive commit wizard | `g i` |
154
+ | `gims preview` | `g p` | Preview commit with AI message | `g p` |
108
155
  | `gims local` | `g l` | AI commit locally | `g l` |
109
- | `gims online` | `g o` | AI commit + push (use `--set-upstream` on first push) | `g o --set-upstream` |
110
- | `gims commit <message...>` | `g m` | Commit with a custom message (no AI) | `g m "fix: handle empty input"` |
111
- | `gims pull` | `g p` | Pull latest changes | `g p` |
112
- | `gims amend` | `g a` | Stage all changes and amend the last commit (reuse message) | `g a` |
113
- | `gims list` | `g ls` | Show numbered commit history | `g ls` |
114
- | `gims largelist` | `g ll` | Detailed commit history | `g ll` |
156
+ | `gims online` | `g o` | AI commit + push | `g o` |
157
+ | `gims list` | `g h` | Numbered commit history | `g h` |
158
+ | `gims amend` | `g a` | Smart amend with AI | `g a` |
159
+ | `gims undo` | `g u` | Undo last commit | `g u --yes` |
160
+
161
+ ### οΏ½ **Se tup & Config**
162
+ | Command | Alias | Description | Example |
163
+ |---------|-------|-------------|---------|
164
+ | `gims setup` | - | Setup wizard or quick API key setup | `g setup --api-key gemini` |
165
+ | `gims config` | - | Manage configuration | `g config --set provider=gemini` |
166
+
167
+ ### πŸ“ **Additional Commands**
168
+ | Command | Alias | Description | Example |
169
+ |---------|-------|-------------|---------|
170
+ | `gims suggest` | `g sg` | AI suggestions with clipboard | `g sg --multiple` |
171
+ | `gims commit <msg>` | `g m` | Custom message commit | `g m "fix: handle edge case"` |
172
+ | `gims sync` | - | Smart sync: pull + rebase/merge | `g sync --rebase` |
173
+ | `gims stash` | - | Enhanced stash with AI descriptions | `g stash` |
174
+ | `gims init` | - | Initialize repo | `g init` |
175
+ | `gims clone <repo>` | `g c` | Clone repository | `g c https://github.com/user/repo` |
176
+ | `gims pull` | - | Pull changes | `g pull` |
115
177
  | `gims branch <n>` | `g b` | Branch from commit #n | `g b 3 feature-x` |
116
- | `gims reset <n>` | `g r` | Reset to commit #n (`--hard` needs `--yes`) | `g r 5 --hard --yes` |
117
- | `gims revert <n>` | `g rv` | Safely revert commit #n (requires `--yes`) | `g rv 2 --yes` |
118
- | `gims undo` | `g u` | Undo last commit (soft reset by default) | `g u` or `g u --hard --yes` |
178
+ | `gims reset <n>` | `g r` | Reset to commit | `g r 5 --hard --yes` |
179
+ | `gims revert <n>` | `g rv` | Revert commit | `g rv 2 --yes` |
119
180
 
120
181
  ### Global Options
121
182
 
@@ -127,97 +188,190 @@ g o
127
188
  - `--body`: Generate a commit body in addition to subject
128
189
  - `--conventional`: Format subject using Conventional Commits
129
190
  - `--dry-run`: Print what would happen without committing/pushing
130
- - `--verbose`: Verbose logging
191
+ - `--verbose`: Verbose logging with AI provider details
131
192
  - `--json`: Machine-readable output for `g s`
132
- - `--yes`: Confirm destructive actions without prompting (e.g., reset/revert/undo)
193
+ - `--yes`: Confirm destructive actions without prompting
133
194
  - `--amend`: Amend the last commit instead of creating a new one
134
195
  - `--set-upstream`: On push, set upstream if the current branch has none
135
196
 
136
- ## πŸ’‘ Real-World Examples
197
+ ### Command-Specific Options
198
+
199
+ - `g s --multiple`: Generate multiple commit message suggestions
200
+ - `g ls --detailed`: Show detailed commit information with dates and authors
201
+ - `g ls --limit <n>`: Limit number of commits shown (default: 20)
202
+ - `g sync --rebase`: Use rebase instead of merge for sync
203
+ - `g stash --list`: List all stashes
204
+ - `g stash --pop`: Pop the latest stash
205
+ - `g stash --apply <n>`: Apply stash by index
206
+ - `g a --no-edit`: Amend without changing the commit message
207
+ - `g config --global`: Use global configuration instead of project-local
208
+
209
+ ## πŸ’‘ Enhanced Real-World Examples
137
210
 
138
- ### πŸ”§ Bug Fix
211
+ ### 🎯 **Interactive Workflow**
139
212
  ```bash
140
- # You fix a null pointer exception
141
- g o
142
- # AI generates: "Fix null pointer exception in user authentication"
213
+ # Complex feature development
214
+ g status # See AI insights about your changes
215
+ # Output: "πŸ“¦ Dependencies changed - consider updating package-lock.json"
216
+
217
+ g int # Interactive commit wizard
218
+ # Guides you through: staging β†’ multiple AI suggestions β†’ commit
219
+
220
+ g sync --rebase # Smart sync with rebase
221
+ # Output: "βœ“ Rebased successfully"
143
222
  ```
144
223
 
145
- ### ✨ New Feature
224
+ ### πŸ”§ **Bug Fix with Preview**
146
225
  ```bash
147
- # You add a search function
148
- g o
149
- # AI generates: "Add search functionality with pagination support"
226
+ # You fix a critical bug
227
+ g preview # Preview what would be committed
228
+ # Shows: complexity analysis + AI suggestion + diff summary
229
+
230
+ g o # Commit with confidence
231
+ # AI generates: "Fix null pointer exception in user authentication"
150
232
  ```
151
233
 
152
- ### πŸ“š Documentation
234
+ ### ✨ **Feature Development**
153
235
  ```bash
154
- # You update README and add comments
155
- g o
156
- # AI generates: "Update documentation and add inline code comments"
236
+ # Multiple related changes
237
+ g s --multiple # Get several commit message options
238
+ # Shows: 3 different AI-generated suggestions
239
+
240
+ g stash # Stash with AI description
241
+ # Output: "βœ“ Stashed changes: 'Add search functionality components'"
242
+
243
+ g l # Commit locally first
244
+ g sync # Smart sync before pushing
245
+ g o # Push with upstream setup
157
246
  ```
158
247
 
159
- ### 🎨 Refactoring
248
+ ### πŸ“Š **Project Analysis**
160
249
  ```bash
161
- # You clean up code structure
162
- g o
163
- # AI generates: "Refactor authentication module for better maintainability"
250
+ g status # Enhanced status with insights
251
+ # Shows: file changes + AI insights + recent activity summary
252
+
253
+ g config --set conventional=true # Enable conventional commits
254
+ g ls --detailed --limit 5 # Analyze recent commit patterns
164
255
  ```
165
256
 
166
- ## πŸ”₯ Pro Tips
257
+ ## πŸ”₯ Enhanced Pro Tips
258
+
259
+ ### 🎯 **Perfect Enhanced Workflow**
260
+ ```bash
261
+ g setup --api-key gemini # One-time AI setup (fast & free)
262
+ g s # Check status with AI insights
263
+ g i # Interactive commit for complex changes
264
+ g sync # Smart sync instead of manual pull
265
+ g o --set-upstream # Push with automatic upstream setup
266
+ ```
167
267
 
168
- ### 🎯 Perfect Workflow
268
+ ### 🧠 **Smart Development Patterns**
169
269
  ```bash
170
- g p # Pull latest changes
171
- # ... code your features ...
172
- g s # Preview AI suggestion from staged changes
173
- g s --all # Or stage everything and suggest
174
- g l # Commit locally first
175
- # ... test your changes ...
176
- g o --set-upstream # Push with automatic upstream setup on first push
270
+ # Feature development
271
+ g stash # Stash with AI description
272
+ g b 5 feature-x # Branch from specific commit
273
+ g preview # Preview changes before committing
274
+ g s --multiple # Get multiple commit options
275
+ g l && g sync # Commit locally, then smart sync
276
+
277
+ # Code review preparation
278
+ g ls --detailed # Review commit history
279
+ g config --set conventional=true # Enable conventional commits
280
+ g amend # Update last commit with AI message
177
281
  ```
178
282
 
179
- ### 🧠 Smart Branching
283
+ ### πŸ›‘οΈ **Safe & Smart Operations**
180
284
  ```bash
181
- g ls # See numbered history
182
- g b 5 hotfix # Branch from commit #5
183
- g l # Make changes and commit
184
- g checkout main && g pull # Back to main
285
+ # Experimentation
286
+ g stash # AI-described stash
287
+ g l # Commit experiment
288
+ g preview # Check what you're about to commit
289
+ g u --yes # Quick undo if needed
290
+
291
+ # Team collaboration
292
+ g sync --rebase # Clean history with rebase
293
+ g status # Check insights before committing
294
+ g config --global # Set team-wide preferences
185
295
  ```
186
296
 
187
- ### πŸ›‘οΈ Safe Experimentation
297
+ ### ⚑ **Power User Shortcuts**
188
298
  ```bash
189
- g l # Commit your experiment
190
- # ... code breaks something ...
191
- g r 1 --soft --yes # Soft reset to previous commit (confirmed)
192
- # ... or ...
193
- g u --yes # Undo last commit (soft)
299
+ # Single-letter workflow
300
+ g s # Enhanced status
301
+ g p # Quick preview
302
+ g i # Interactive mode
303
+ g sg --multiple # Multiple suggestions
304
+ g h --detailed # Detailed history
305
+ g l && g o # Local commit then push
306
+
307
+ # Configuration
308
+ g config --set autoStage=true # Auto-stage by default
309
+ g config --set progressIndicators=false # Disable progress bars
310
+ g config --list # Review all settings
194
311
  ```
195
312
 
196
- ## βš™οΈ Configuration
313
+ ## βš™οΈ Enhanced Configuration
314
+
315
+ ### Setup Wizard (Recommended)
316
+ ```bash
317
+ g setup # Interactive configuration wizard
318
+ # Detects project type, configures AI providers, sets preferences
319
+ ```
197
320
 
198
321
  ### Environment Variables
199
322
 
200
- | Variable | Purpose |
201
- |----------|---------|
202
- | `OPENAI_API_KEY` | OpenAI API access |
203
- | `GEMINI_API_KEY` | Google Gemini API access |
204
- | `GROQ_API_KEY` | Groq API access (OpenAI-compatible) |
205
- | `GROQ_BASE_URL` | Groq API base URL (optional) |
206
- | `GIMS_PROVIDER` | Default provider: `auto` | `openai` | `gemini` | `groq` | `none` |
207
- | `GIMS_MODEL` | Default model identifier for provider |
208
- | `GIMS_CONVENTIONAL` | `1` to enable Conventional Commits by default |
209
- | `GIMS_COPY` | `0` to disable clipboard copying in `g s` by default |
323
+ | Variable | Purpose | Default |
324
+ |----------|---------|---------|
325
+ | `OPENAI_API_KEY` | OpenAI API access | - |
326
+ | `GEMINI_API_KEY` | Google Gemini API access | - |
327
+ | `GROQ_API_KEY` | Groq API access | - |
328
+ | `GROQ_BASE_URL` | Groq API base URL | `https://api.groq.com/openai/v1` |
329
+ | `GIMS_PROVIDER` | Default provider | `auto` |
330
+ | `GIMS_MODEL` | Default model identifier | (provider-specific) |
331
+ | `GIMS_CONVENTIONAL` | Enable Conventional Commits | `0` |
332
+ | `GIMS_COPY` | Enable clipboard copying | `1` |
333
+ | `GIMS_AUTO_STAGE` | Auto-stage changes | `0` |
334
+ | `GIMS_CACHE` | Enable AI response caching | `1` |
335
+ | `GIMS_PROGRESS` | Show progress indicators | `1` |
336
+
337
+ ### Configuration Management
338
+ ```bash
339
+ # Set configuration values
340
+ g config --set provider=gemini
341
+ g config --set conventional=true --global
342
+ g config --set autoStage=true
343
+
344
+ # View configuration
345
+ g config --list
346
+ g config --get provider
347
+
348
+ # Project vs Global config
349
+ g config --set conventional=true # Project-specific
350
+ g config --set conventional=true --global # Global (all projects)
351
+ ```
210
352
 
211
- ### .gimsrc (optional)
353
+ ### .gimsrc Configuration Files
212
354
 
213
- Place a `.gimsrc` JSON file in your repo root or home directory to set defaults:
355
+ **Project-level** (`./.gimsrc`):
356
+ ```json
357
+ {
358
+ "provider": "gemini",
359
+ "model": "gemini-2.0-flash",
360
+ "conventional": true,
361
+ "autoStage": false,
362
+ "projectType": "react"
363
+ }
364
+ ```
214
365
 
366
+ **Global** (`~/.gimsrc`):
215
367
  ```json
216
368
  {
217
369
  "provider": "auto",
218
- "model": "gpt-4o-mini",
219
- "conventional": true,
220
- "copy": true
370
+ "conventional": false,
371
+ "copy": true,
372
+ "cacheEnabled": true,
373
+ "progressIndicators": true,
374
+ "maxDiffSize": 100000
221
375
  }
222
376
  ```
223
377
 
@@ -273,20 +427,49 @@ jkl3456 Update API documentation with new endpoint examples
273
427
  mno7890 Fix memory leak in image processing pipeline
274
428
  ```
275
429
 
276
- ## πŸ“ˆ Stats
430
+ ## πŸ“ˆ Enhanced Stats & Benefits
431
+
432
+ - ⚑ **50% faster** commits with interactive mode and smart defaults
433
+ - 🎯 **Higher accuracy** with multiple AI suggestions and caching
434
+ - 🧠 **Smart insights** help improve code quality and commit patterns
435
+ - πŸ“š **Zero learning curve** - enhanced Git workflow, not replacement
436
+ - 🌍 **Universal compatibility** - Mac, Windows, Linux, WSL
437
+ - οΏ½ **Modular architecture** - better performance and extensibility
277
438
 
278
- - ⚑ Faster commits than traditional Git workflow
279
- - 🎯 High accuracy in commit message relevance
280
- - πŸ“š Zero learning curve - if you know Git, you know GIMS
281
- - 🌍 Works everywhere - Mac, Windows, Linux, WSL
439
+ ## πŸ†• What's New in Enhanced GIMS
440
+
441
+ ### ✨ **Major Enhancements**
442
+ - **Interactive Commit Wizard** - guided workflow with multiple suggestions
443
+ - **Smart Status & Insights** - AI analyzes your changes and provides tips
444
+ - **Enhanced Configuration** - setup wizard and flexible config management
445
+ - **Progress Indicators** - visual feedback for all AI operations
446
+ - **Caching System** - faster repeated operations
447
+ - **Better Error Handling** - actionable guidance when things go wrong
448
+
449
+ ### πŸ”§ **Developer Experience**
450
+ - **Project Type Detection** - automatically adapts to React, Node, Python, etc.
451
+ - **Smart Sync** - intelligent pull with rebase/merge options
452
+ - **Enhanced Stash** - AI-generated stash descriptions
453
+ - **Preview Mode** - see exactly what will be committed
454
+ - **Modular Architecture** - cleaner code and better maintainability
282
455
 
283
456
  ## πŸ—ΊοΈ Roadmap
284
457
 
458
+ ### 🎯 **Completed (v0.6.0)**
459
+ - [x] Interactive commit wizard
460
+ - [x] Enhanced status with AI insights
461
+ - [x] Smart configuration management
462
+ - [x] Progress indicators and better UX
463
+ - [x] Caching and performance improvements
464
+ - [x] Modular architecture
465
+
466
+ ### πŸš€ **Coming Next**
285
467
  - [ ] πŸ”Œ Plugin system for custom AI providers
286
- - [ ] πŸ“Š Commit message templates and customization
468
+ - [ ] πŸ“Š Commit message templates and team standards
287
469
  - [ ] 🌐 Multi-language commit message support
288
- - [ ] πŸ”„ Integration with popular Git GUIs
289
- - [ ] πŸ“± Mobile companion app
470
+ - [ ] πŸ”„ Integration with popular Git GUIs (VS Code, etc.)
471
+ - [ ] πŸ“± Web dashboard for team commit analytics
472
+ - [ ] πŸ€– Advanced AI features (code review suggestions, etc.)
290
473
 
291
474
  ## πŸ“„ License
292
475