UNPKG

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.

28 lines 656 B
export interface CommitInfo { hash: string; author: string; date: string; message: string; files: string[]; insertions: number; deletions: number; } export interface WorkReport { date: string; totalCommits: number; totalInsertions: number; totalDeletions: number; authors: string[]; aiSummary: string; totalLinesChanged: number; } export interface GitWorkReportOptions { date?: string; format?: 'json' | 'text' | 'markdown'; output?: string; includeStats?: boolean; includeFiles?: boolean; timezone?: string; anthropicApiKey?: string; } //# sourceMappingURL=types.d.ts.map