UNPKG

hikma-engine

Version:

Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents

32 lines 947 B
/** * @file Main entry point for the hikma-engine application. * Initializes configuration, logging, and delegates to the core indexer. */ import 'dotenv/config'; /** * Command line interface for the hikma-engine. */ declare class HikmaEngineCLI { private projectRoot; constructor(projectRoot: string); /** * Parses command line arguments and returns indexing options. */ private parseArguments; /** * Prints help information. */ private printHelp; /** * Runs the hikma-engine with the provided options. */ run(): Promise<void>; } export { Indexer } from './core/indexer'; export type { IndexingOptions } from './core/indexer'; export { EnhancedSearchService } from './modules/enhanced-search-service'; export { SearchService } from './modules/search-service'; export * from './types'; export * from './config'; export { HikmaEngineCLI }; //# sourceMappingURL=index.d.ts.map