codesummary 1.1.0 → 1.2.0
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/CHANGELOG.md +234 -165
- package/LICENSE +674 -674
- package/README.md +483 -607
- package/bin/codesummary.js +12 -12
- package/features.md +418 -502
- package/package.json +95 -96
- package/rag-schema.json +113 -113
- package/src/cli.js +599 -509
- package/src/configManager.js +880 -827
- package/src/errorHandler.js +474 -477
- package/src/index.js +25 -25
- package/src/llmGenerator.js +189 -0
- package/src/pdfGenerator.js +408 -475
- package/src/ragConfig.js +369 -373
- package/src/ragGenerator.js +1739 -1757
- package/src/scanner.js +386 -467
- package/src/utils.js +139 -0
package/bin/codesummary.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* CodeSummary CLI Executable
|
|
5
|
-
* Global entry point for the CodeSummary npm package
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
import('../src/index.js').then(module => {
|
|
9
|
-
// The main function is automatically executed in index.js
|
|
10
|
-
}).catch(error => {
|
|
11
|
-
console.error('Failed to load CodeSummary:', error.message);
|
|
12
|
-
process.exit(1);
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* CodeSummary CLI Executable
|
|
5
|
+
* Global entry point for the CodeSummary npm package
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import('../src/index.js').then(module => {
|
|
9
|
+
// The main function is automatically executed in index.js
|
|
10
|
+
}).catch(error => {
|
|
11
|
+
console.error('Failed to load CodeSummary:', error.message);
|
|
12
|
+
process.exit(1);
|
|
13
13
|
});
|