SPB Git

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%
590 B · 20 lines typescript
Raw Blame History
1/**2 * KHAELOR3 * File: src/verify/index.ts4 * Description: Public surface of the native-verification module (v2 design §4).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export {11  DEFAULT_MAX_REPAIR_LOOPS,12  VERIFY_FILE,13  detectVerifyChecks,14  loadVerifyConfig,15  parseVerifyConfig,16} from "./config.js";17export type { VerifyCheck, VerifyConfig, VerifyPolicy } from "./config.js";18export { VerifyRunner, countRepairFailures, truncateErrorsFirst } from "./runner.js";19export type { VerifyOutcome, VerifyRunnerOptions, VerifySessionHandle } from "./runner.js";20