@jjdenhertog/ai-driven-development
Version:
AI-driven development workflow with learning capabilities for Claude
15 lines • 556 B
TypeScript
import { SessionReport } from '../../types/session-report/SessionReport';
export { SessionReport } from '../../types/session-report/SessionReport';
/**
* Creates a session report from debug logs and transcript files
*/
export type CreateSessionReportOptions = {
taskId: string;
taskName: string;
worktreePath: string;
logsDir: string;
exitCode?: number;
fileName: string;
};
export declare function createSessionReport(options: CreateSessionReportOptions): Promise<SessionReport>;
//# sourceMappingURL=createSessionReport.d.ts.map