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/repository/index.ts4 * Description: Public barrel for the repository module (Layer 2 — repository intelligence, CLAUDE.md §11/§16).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export {11 GitService,12 parseBranchHeader,13 parseStatusZ,14 parseNameStatusZ,15 parseNumstatZ,16 perFileDiffHashes,17} from "./git.js";18export type {19 BaselineWhen,20 BranchHeader,21 ChangeAttribution,22 GitBaseline,23 GitChangeKind,24 GitDiff,25 GitDiffEntry,26 GitErrorCode,27 GitResult,28 GitServiceOptions,29 GitStatus,30 ParsedStatus,31} from "./git.js";3233export { RepositoryMap, RepositoryScanError, languageOf, prunableNamesFromIgnore } from "./map.js";34export type { RepoFileEntry, RepositoryMapOptions, ScanFlavor } from "./map.js";3536export { RecentFilesTracker } from "./recent.js";37export type { RecentFile, RecentFilesOptions } from "./recent.js";3839export { FileSearch, subsequenceQuality } from "./search.js";40export type { FileSearchOptions, RankedFile } from "./search.js";41