codesummary
Version:
Cross-platform CLI tool that generates professional PDF documentation and RAG-optimized JSON outputs from project source code. Perfect for code reviews, audits, documentation, and AI/ML applications with semantic chunking and precision offsets.
13 lines (11 loc) • 335 B
JavaScript
/**
* CodeSummary CLI Executable
* Global entry point for the CodeSummary npm package
*/
import('../src/index.js').then(module => {
// The main function is automatically executed in index.js
}).catch(error => {
console.error('Failed to load CodeSummary:', error.message);
process.exit(1);
});