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.
- package/README.md +11 -11
- package/dist/cli.js +2 -1
- 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
|
-
- 🤖
|
|
31
|
-
- 🔒
|
|
32
|
-
- 🚫
|
|
33
|
-
- ⚡
|
|
34
|
-
- ⚙️
|
|
35
|
-
- 📝
|
|
36
|
-
- 🎯
|
|
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
|
-
- 📊
|
|
40
|
-
- 💡
|
|
41
|
-
- 🔍
|
|
42
|
-
-
|
|
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
|
|
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 ""
|