galaxyrepowatch 2.5.0 → 2.5.2
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 +3 -1
- package/dist/cli.d.ts +10 -0
- package/dist/cli.js +159 -143
- package/dist/codeImpactAnalyzer.d.ts +1 -0
- package/dist/databaseAnalyzer/cacheManager.d.ts +8 -0
- package/dist/databaseAnalyzer/formatter.d.ts +2 -0
- package/dist/databaseAnalyzer/geminiClient.d.ts +2 -0
- package/dist/databaseAnalyzer/index.d.ts +1 -0
- package/dist/databaseAnalyzer/promptBuilder.d.ts +2 -0
- package/dist/databaseAnalyzer/scanner.d.ts +12 -0
- package/dist/databaseAnalyzer/scoreCalculator.d.ts +12 -0
- package/dist/databaseAnalyzer/types.d.ts +20 -0
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -323,10 +323,12 @@ MIT License
|
|
|
323
323
|
|
|
324
324
|
---
|
|
325
325
|
|
|
326
|
-
# ⭐ Support
|
|
326
|
+
# ⭐ Support & Reviews
|
|
327
327
|
|
|
328
328
|
If Galaxy Repo Watch helps improve your development workflow, please consider giving the project a ⭐ on GitHub.
|
|
329
329
|
|
|
330
|
+
⭐ **Submit your Review & Rating:** [https://galaxyrepowatch.galaxyweblinks.com/app-reviews](https://galaxyrepowatch.galaxyweblinks.com/app-reviews)
|
|
331
|
+
|
|
330
332
|
Your support motivates us to continue building powerful AI tools for developers.
|
|
331
333
|
|
|
332
334
|
---
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* galaxyrepowatch: AI Git Review Guard
|
|
4
|
+
*
|
|
5
|
+
* This script is executed by a pre-commit hook. It performs a comprehensive
|
|
6
|
+
* local analysis of staged code changes, including rule-based checks,
|
|
7
|
+
* linting integration, and AI-powered review, calculates a risk score,
|
|
8
|
+
* and blocks the commit if the risk exceeds a configurable threshold.
|
|
9
|
+
*/
|
|
10
|
+
export {};
|