Files
gims/QUICK_REFERENCE.md
T
s41r4j 6832a598cb feat: update to latest AI models and simplify README
- Update AI models to latest versions:
  - Gemini: gemini-2.5-flash
  - OpenAI: gpt-5
  - Groq: groq/compound
- Drastically simplify README (90% shorter)
- Focus on quick start and essential commands
- Update version to 0.6.2
2025-10-09 23:56:48 +05:30

74 lines
1.7 KiB
Markdown

# 🚀 GIMS Quick Reference
## Single-Letter Workflow Commands
```bash
g s # Status - Enhanced git status with AI insights
g i # Interactive - Guided commit wizard
g p # Preview - See what will be committed
g l # Local - AI commit locally
g o # Online - AI commit + push
g h # History - Numbered commit log
g a # Amend - Smart amend with AI
g u # Undo - Undo last commit
```
## Quick Setup
```bash
# Choose your AI provider (one-time setup)
g setup --api-key gemini # 🚀 Recommended: Fast & free
g setup --api-key openai # 💎 High quality
g setup --api-key groq # ⚡ Ultra fast
# Or run full setup wizard
g setup
```
## Essential Workflow
```bash
# 1. Check what's changed
g s
# 2. Commit with AI (choose one)
g i # Interactive mode (guided)
g o # One-command: commit + push
g l # Local commit only
# 3. View history
g h # Recent commits
g h --detailed --limit 10 # Detailed view
```
## Default AI Models
- **Gemini**: `gemini-2.5-flash` (Fast, free, recommended)
- **OpenAI**: `gpt-5` (Latest GPT model)
- **Groq**: `groq/compound` (Ultra-fast inference)
## Pro Tips
```bash
g sg --multiple # Get 3 AI suggestions
g p # Preview before committing
g a # Smart amend with new AI message
g sync --rebase # Smart sync with rebase
g stash # Stash with AI description
```
## Configuration
```bash
g config --list # View all settings
g config --set conventional=true # Enable conventional commits
g config --set autoStage=true # Auto-stage changes
g config --set provider=gemini # Set AI provider
```
## Help
```bash
g --help # All commands
g q # This quick reference
```