@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
11 lines (10 loc) • 433 B
JavaScript
/**
* 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 base classes
export { AIAssistantParser, SimpleConsoleLogger } from './base/ai-assistant-parser.js';
// Export provider-specific parsers
export { CopilotParser } from './copilot/copilot-parser.js';