gims 0.5.4 β 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/.gimsrc +10 -0
- package/.kiro/steering/product.md +21 -0
- package/.kiro/steering/structure.md +72 -0
- package/.kiro/steering/tech.md +68 -0
- package/CHANGELOG.md +116 -0
- package/QUICK_REFERENCE.md +74 -0
- package/README.md +274 -114
- package/bin/gims.js +520 -322
- package/bin/lib/ai/providers.js +286 -0
- package/bin/lib/commands/interactive.js +241 -0
- package/bin/lib/config/manager.js +213 -0
- package/bin/lib/git/analyzer.js +231 -0
- package/bin/lib/utils/colors.js +16 -0
- package/bin/lib/utils/progress.js +49 -0
- package/package.json +3 -2
- package/.npm-cache/_cacache/content-v2/sha512/50/76/b59cd1b7920f67e1f272759509b642dc898dfdd62cd143c2a6dda42c67217b79f4b5232f22a05a756d9b8fd266eadbae5f7df0bc886c63be4ace4bf547c1 +0 -0
- package/.npm-cache/_cacache/content-v2/sha512/cb/27/8dffe19cd1bef0222561d1d858d3968bfc7075a71ad21c55130ed2699a0778b0617302b9193447dad62c881e04104695de314ccec3f27617ba03d8ce01bd +0 -0
- package/.npm-cache/_cacache/content-v2/sha512/e4/ee/b849c92ec29d7d9df6b988c2e4272e363b85375a28c8a75d7ca3140e27eb4be1cdd615cd3e292c46d76fa982a36ca5fee968dd37f3e380fb50efbf6db22b +0 -0
- package/.npm-cache/_cacache/index-v5/54/dc/0588b4b9d94e884840efa9c9a3979d639d3849a2f409cb2845aaaafe0137 +0 -4
- /package/{.npm-cache/_update-notifier-last-checked β bin/lib/config.js} +0 -0
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
|
-
*
|
|
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.
|
|
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,32 +31,39 @@ 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
|
|
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
|
|
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
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
|
|
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
|
|
|
@@ -89,56 +96,87 @@ source ~/.bashrc
|
|
|
89
96
|
npm install -g gims
|
|
90
97
|
```
|
|
91
98
|
|
|
92
|
-
### Setup AI (Choose One)
|
|
99
|
+
### Setup AI (Choose One - Quick & Easy!)
|
|
93
100
|
|
|
94
|
-
|
|
101
|
+
**π Quick Setup (Recommended)**
|
|
95
102
|
```bash
|
|
96
|
-
|
|
97
|
-
|
|
103
|
+
# Gemini (Free, fast, recommended)
|
|
104
|
+
g setup --api-key gemini
|
|
98
105
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
106
|
+
# OpenAI (High quality)
|
|
107
|
+
g setup --api-key openai
|
|
108
|
+
|
|
109
|
+
# Groq (Ultra fast)
|
|
110
|
+
g setup --api-key groq
|
|
102
111
|
```
|
|
103
112
|
|
|
104
|
-
|
|
113
|
+
**π§ Manual Setup (Advanced)**
|
|
105
114
|
```bash
|
|
106
|
-
|
|
107
|
-
#
|
|
108
|
-
export
|
|
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
|
|
109
119
|
```
|
|
110
120
|
|
|
111
|
-
GIMS auto-detects configured providers. If
|
|
121
|
+
GIMS auto-detects configured providers and uses smart defaults. If no AI is configured, it uses local heuristics to generate sensible messages.
|
|
112
122
|
|
|
113
|
-
### Your First
|
|
123
|
+
### Your First Enhanced Experience
|
|
114
124
|
|
|
115
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
|
+
|
|
116
131
|
# Make some changes to your code
|
|
117
|
-
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
|
|
118
141
|
|
|
119
|
-
#
|
|
142
|
+
# Or use the classic one-command workflow
|
|
120
143
|
g o
|
|
121
|
-
# Output: Committed & pushed: "Add hello world console log"
|
|
144
|
+
# Output: β Committed & pushed: "Add hello world console log"
|
|
122
145
|
```
|
|
123
146
|
|
|
124
|
-
## π Commands Reference
|
|
147
|
+
## π Enhanced Commands Reference
|
|
125
148
|
|
|
149
|
+
### π **Main Workflow (Single Letters)**
|
|
126
150
|
| Command | Alias | Description | Example |
|
|
127
151
|
|---------|-------|-------------|---------|
|
|
128
|
-
| `gims
|
|
129
|
-
| `gims
|
|
130
|
-
| `gims
|
|
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` |
|
|
131
155
|
| `gims local` | `g l` | AI commit locally | `g l` |
|
|
132
|
-
| `gims online` | `g o` | AI commit + push
|
|
133
|
-
| `gims
|
|
134
|
-
| `gims
|
|
135
|
-
| `gims
|
|
136
|
-
|
|
137
|
-
|
|
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` |
|
|
138
177
|
| `gims branch <n>` | `g b` | Branch from commit #n | `g b 3 feature-x` |
|
|
139
|
-
| `gims reset <n>` | `g r` | Reset to commit
|
|
140
|
-
| `gims revert <n>` | `g rv` |
|
|
141
|
-
| `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` |
|
|
142
180
|
|
|
143
181
|
### Global Options
|
|
144
182
|
|
|
@@ -150,97 +188,190 @@ g o
|
|
|
150
188
|
- `--body`: Generate a commit body in addition to subject
|
|
151
189
|
- `--conventional`: Format subject using Conventional Commits
|
|
152
190
|
- `--dry-run`: Print what would happen without committing/pushing
|
|
153
|
-
- `--verbose`: Verbose logging
|
|
191
|
+
- `--verbose`: Verbose logging with AI provider details
|
|
154
192
|
- `--json`: Machine-readable output for `g s`
|
|
155
|
-
- `--yes`: Confirm destructive actions without prompting
|
|
193
|
+
- `--yes`: Confirm destructive actions without prompting
|
|
156
194
|
- `--amend`: Amend the last commit instead of creating a new one
|
|
157
195
|
- `--set-upstream`: On push, set upstream if the current branch has none
|
|
158
196
|
|
|
159
|
-
|
|
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
|
|
160
208
|
|
|
161
|
-
|
|
209
|
+
## π‘ Enhanced Real-World Examples
|
|
210
|
+
|
|
211
|
+
### π― **Interactive Workflow**
|
|
162
212
|
```bash
|
|
163
|
-
#
|
|
164
|
-
g
|
|
165
|
-
#
|
|
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"
|
|
166
222
|
```
|
|
167
223
|
|
|
168
|
-
###
|
|
224
|
+
### π§ **Bug Fix with Preview**
|
|
169
225
|
```bash
|
|
170
|
-
# You
|
|
171
|
-
g
|
|
172
|
-
#
|
|
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"
|
|
173
232
|
```
|
|
174
233
|
|
|
175
|
-
###
|
|
234
|
+
### β¨ **Feature Development**
|
|
176
235
|
```bash
|
|
177
|
-
#
|
|
178
|
-
g
|
|
179
|
-
#
|
|
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
|
|
180
246
|
```
|
|
181
247
|
|
|
182
|
-
###
|
|
248
|
+
### π **Project Analysis**
|
|
183
249
|
```bash
|
|
184
|
-
#
|
|
185
|
-
|
|
186
|
-
|
|
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
|
|
187
255
|
```
|
|
188
256
|
|
|
189
|
-
## π₯ Pro Tips
|
|
257
|
+
## π₯ Enhanced Pro Tips
|
|
190
258
|
|
|
191
|
-
### π― Perfect Workflow
|
|
259
|
+
### π― **Perfect Enhanced Workflow**
|
|
192
260
|
```bash
|
|
193
|
-
g
|
|
194
|
-
#
|
|
195
|
-
g
|
|
196
|
-
g
|
|
197
|
-
g
|
|
198
|
-
# ... test your changes ...
|
|
199
|
-
g o --set-upstream # Push with automatic upstream setup on first push
|
|
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
|
|
200
266
|
```
|
|
201
267
|
|
|
202
|
-
### π§ Smart
|
|
268
|
+
### π§ **Smart Development Patterns**
|
|
203
269
|
```bash
|
|
204
|
-
|
|
205
|
-
g
|
|
206
|
-
g
|
|
207
|
-
g
|
|
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
|
|
208
281
|
```
|
|
209
282
|
|
|
210
|
-
### π‘οΈ Safe
|
|
283
|
+
### π‘οΈ **Safe & Smart Operations**
|
|
211
284
|
```bash
|
|
212
|
-
|
|
213
|
-
#
|
|
214
|
-
g
|
|
215
|
-
#
|
|
216
|
-
g u --yes #
|
|
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
|
|
217
295
|
```
|
|
218
296
|
|
|
219
|
-
|
|
297
|
+
### β‘ **Power User Shortcuts**
|
|
298
|
+
```bash
|
|
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
|
|
311
|
+
```
|
|
312
|
+
|
|
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
|
+
```
|
|
220
320
|
|
|
221
321
|
### Environment Variables
|
|
222
322
|
|
|
223
|
-
| Variable | Purpose |
|
|
224
|
-
|
|
225
|
-
| `OPENAI_API_KEY` | OpenAI API access |
|
|
226
|
-
| `GEMINI_API_KEY` | Google Gemini API access |
|
|
227
|
-
| `GROQ_API_KEY` | Groq API access
|
|
228
|
-
| `GROQ_BASE_URL` | Groq API base URL
|
|
229
|
-
| `GIMS_PROVIDER` | Default provider
|
|
230
|
-
| `GIMS_MODEL` | Default model identifier
|
|
231
|
-
| `GIMS_CONVENTIONAL` |
|
|
232
|
-
| `GIMS_COPY` |
|
|
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
|
+
```
|
|
233
352
|
|
|
234
|
-
### .gimsrc
|
|
353
|
+
### .gimsrc Configuration Files
|
|
235
354
|
|
|
236
|
-
|
|
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
|
+
```
|
|
237
365
|
|
|
366
|
+
**Global** (`~/.gimsrc`):
|
|
238
367
|
```json
|
|
239
368
|
{
|
|
240
369
|
"provider": "auto",
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
370
|
+
"conventional": false,
|
|
371
|
+
"copy": true,
|
|
372
|
+
"cacheEnabled": true,
|
|
373
|
+
"progressIndicators": true,
|
|
374
|
+
"maxDiffSize": 100000
|
|
244
375
|
}
|
|
245
376
|
```
|
|
246
377
|
|
|
@@ -296,20 +427,49 @@ jkl3456 Update API documentation with new endpoint examples
|
|
|
296
427
|
mno7890 Fix memory leak in image processing pipeline
|
|
297
428
|
```
|
|
298
429
|
|
|
299
|
-
## π 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
|
|
438
|
+
|
|
439
|
+
## π What's New in Enhanced GIMS
|
|
300
440
|
|
|
301
|
-
|
|
302
|
-
-
|
|
303
|
-
-
|
|
304
|
-
-
|
|
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
|
|
305
455
|
|
|
306
456
|
## πΊοΈ Roadmap
|
|
307
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**
|
|
308
467
|
- [ ] π Plugin system for custom AI providers
|
|
309
|
-
- [ ] π Commit message templates and
|
|
468
|
+
- [ ] π Commit message templates and team standards
|
|
310
469
|
- [ ] π Multi-language commit message support
|
|
311
|
-
- [ ] π Integration with popular Git GUIs
|
|
312
|
-
- [ ] π±
|
|
470
|
+
- [ ] π Integration with popular Git GUIs (VS Code, etc.)
|
|
471
|
+
- [ ] π± Web dashboard for team commit analytics
|
|
472
|
+
- [ ] π€ Advanced AI features (code review suggestions, etc.)
|
|
313
473
|
|
|
314
474
|
## π License
|
|
315
475
|
|