remcode
Version:
Turn your AI assistant into a codebase expert. Intelligent code analysis, semantic search, and software engineering guidance through MCP integration.
13 lines (12 loc) • 446 B
TypeScript
/**
* Processing module exports
*
* This module provides the complete processing pipeline for incremental
* code analysis, vectorization, and dependency mapping.
*/
export { ChangeDetector } from './change-detector';
export { FileAnalyzer } from './file-analyzer';
export { IncrementalProcessor } from './incremental';
export { StateManager } from './state-manager';
export { ProcessingPipeline } from './pipeline';
export * from './types';