git-workreport
Version:
A powerful GitHub plugin that generates AI-powered work reports from Git commit history for specified dates. Perfect for DevOps teams and development companies to track and validate work progress with intelligent summaries.
17 lines • 517 B
TypeScript
export declare class AISummarizer {
private anthropic;
constructor(apiKey: string);
/**
* Generate a summary of changes from commit messages using Anthropic API
*/
generateSummary(commitMessages: string[], totalLinesChanged: number): Promise<string>;
/**
* Build the prompt for the AI model
*/
private buildPrompt;
/**
* Generate a fallback summary when AI is not available
*/
private generateFallbackSummary;
}
//# sourceMappingURL=ai-summarizer.d.ts.map