galaxyrepowatch 2.5.0 → 2.5.1
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/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/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 {};
|