galaxyrepowatch 2.0.1 → 2.0.3
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 +33 -9
- package/dist/cli.js +168 -161
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -26,13 +26,20 @@ The setup wizard will configure everything automatically.
|
|
|
26
26
|
|
|
27
27
|
# ✨ Features
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
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**
|
|
37
|
+
|
|
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**
|
|
36
43
|
|
|
37
44
|
---
|
|
38
45
|
|
|
@@ -114,6 +121,23 @@ Please fix the issues before committing.
|
|
|
114
121
|
|
|
115
122
|
---
|
|
116
123
|
|
|
124
|
+
### 🔍 Code Impact Analyzer
|
|
125
|
+
|
|
126
|
+
Introduced in **v2.0.0**, Code Impact Analyzer gives every commit a clear developer-focused impact report.
|
|
127
|
+
|
|
128
|
+
After the guard checks your staged changes, Galaxy Repo Watch generates an informational impact summary for the commit.
|
|
129
|
+
|
|
130
|
+
It helps developers understand:
|
|
131
|
+
|
|
132
|
+
- What feature, fix, or refactor the commit introduces
|
|
133
|
+
- Why the change matters
|
|
134
|
+
- Which files, APIs, databases, or frontend components are affected
|
|
135
|
+
- Which tests are recommended before pushing
|
|
136
|
+
|
|
137
|
+
The impact report is informational only and does not block your commit.
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
117
141
|
# 📁 Configuration
|
|
118
142
|
|
|
119
143
|
Galaxy Repo Watch creates a configuration file named:
|
|
@@ -245,10 +269,10 @@ Galaxy Repo Watch only analyzes your staged changes before a commit.
|
|
|
245
269
|
- ✅ Husky Integration
|
|
246
270
|
- ✅ Commit Risk Scoring
|
|
247
271
|
- ✅ Automatic Project Setup
|
|
272
|
+
- ✅ Code Impact Analyzer
|
|
248
273
|
|
|
249
274
|
### Coming Soon
|
|
250
275
|
|
|
251
|
-
- ⏳ Commit Impact Analysis
|
|
252
276
|
- ⏳ Custom AI Rules
|
|
253
277
|
- ⏳ Multi-AI Provider Support
|
|
254
278
|
- ⏳ GitHub Actions Integration
|
|
@@ -284,4 +308,4 @@ Your support motivates us to continue building powerful AI tools for developers.
|
|
|
284
308
|
|
|
285
309
|
---
|
|
286
310
|
|
|
287
|
-
## Made with ❤️ by Galaxy Weblinks
|
|
311
|
+
## Made with ❤️ by Galaxy Weblinks
|