galaxyrepowatch 2.0.3 → 2.0.5

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.
Files changed (3) hide show
  1. package/README.md +11 -11
  2. package/dist/cli.js +2 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -27,19 +27,19 @@ The setup wizard will configure everything automatically.
27
27
  # ✨ Features
28
28
 
29
29
  ### 1. 🛡️ AI Guard
30
- - 🤖 **AI-powered code review using Google Gemini**
31
- - 🔒 **Detects hardcoded secrets and credentials**
32
- - 🚫 **Blocks risky commits before they reach your repository**
33
- - ⚡ **Automatic Husky Git Hook installation**
34
- - ⚙️ **Easy one-time setup**
35
- - 📝 **Reviews only staged files for faster execution**
36
- - 🎯 **Works with any Git repository**
30
+ - 🤖 AI-powered code review using Google Gemini
31
+ - 🔒 Detects hardcoded secrets and credentials
32
+ - 🚫 Blocks risky commits before they reach your repository
33
+ - ⚡ Automatic Husky Git Hook installation
34
+ - ⚙️ Easy one-time setup
35
+ - 📝 Reviews only staged files for faster execution
36
+ - 🎯 Works with any Git repository
37
37
 
38
38
  ### 2. 🚀 Code Impact Analyzer
39
- - 📊 **Summarizes the purpose and impact of every commit**
40
- - 💡 **Explains why the change matters before it reaches your repository**
41
- - 🔍 **Highlights affected files, APIs, databases, and frontend components**
42
- - **Recommends relevant tests to run before pushing your changes**
39
+ - 📊 Summarizes the purpose and impact of every commit
40
+ - 💡 Explains why the change matters before it reaches your repository
41
+ - 🔍 Highlights affected files, APIs, databases, and frontend components
42
+ - 🤖 Recommends relevant tests to run before pushing your changes
43
43
 
44
44
  ---
45
45
 
package/dist/cli.js CHANGED
@@ -520,7 +520,8 @@ if [ -z "$GEMINI_API_KEY" ]; then
520
520
  echo "GEMINI_API_KEY=\\"$NEW_KEY\\"" >> .env
521
521
  export GEMINI_API_KEY="$NEW_KEY"
522
522
  if ! grep -q "^GEMINI_MODEL=" .env; then
523
- echo "GEMINI_MODEL=\\"gemini-2.5-flash\\"" >> .env
523
+ echo "GEMINI_MODEL="gemini-3.6-flash"" >> .env
524
+ export GEMINI_MODEL="gemini-3.6-flash"
524
525
  fi
525
526
  echo "\u2705 API key and model saved to .env!"
526
527
  echo ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "galaxyrepowatch",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "description": "AI-powered Git pre-commit guard. Blocks bad code, detects secrets, runs Gemini AI review on every commit.",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {