hikma-engine
Version:
Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents
39 lines • 927 B
TypeScript
#!/usr/bin/env node
import 'dotenv/config';
declare class GraphQueryCLI {
private graphService;
private sqliteClient;
constructor();
initialize(): Promise<void>;
cleanup(): Promise<void>;
/**
* Show graph statistics
*/
showStats(): void;
/**
* List all functions in a file
*/
listFunctionsInFile(filePath: string): void;
/**
* Show function call relationships
*/
showFunctionCalls(functionName: string): void;
/**
* Find call chain between two functions
*/
findCallChain(fromFunction: string, toFunction: string): void;
/**
* Search functions by pattern
*/
searchFunctions(pattern: string): void;
/**
* Show file dependencies
*/
showFileDependencies(filePath: string): void;
/**
* Show help
*/
showHelp(): void;
}
export { GraphQueryCLI };
//# sourceMappingURL=graph-query.d.ts.map