UNPKG

@codervisor/devlog-ai

Version:

AI Chat History Extractor & Docker-based Automation - TypeScript implementation for GitHub Copilot and other AI coding assistants with automated testing capabilities

10 lines 489 B
/** * AI Chat History Parsers * * This module provides parsers for various AI coding assistants and their chat histories. * Currently supports GitHub Copilot, with planned support for Cursor, Claude Code, and others. */ export { AIAssistantParser, Logger, SimpleConsoleLogger } from './base/ai-assistant-parser.js'; export { CopilotParser } from './copilot/copilot-parser.js'; export type { SearchResult, ChatStatistics } from '../models/index.js'; //# sourceMappingURL=index.d.ts.map