spb/khaelor Public
KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.
TypeScript 82.9%
HTML 14.9%
CSS 1.1%
JavaScript 0.7%
1/**2 * KHAELOR3 * File: src/repograph/index.ts4 * Description: Public surface of the RepoGraph semantic-index module (v2 design §3).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export { extractFile, isIndexablePath } from "./extractor.js";11export type {12 ExtractedImport,13 ExtractedSymbol,14 ExtractionResult,15 SymbolKind,16} from "./extractor.js";17export { RepoGraphService } from "./service.js";18export type { IndexStats, IndexedFile, RefQueryHit, SymbolQueryHit } from "./service.js";19