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/config/index.ts4 * Description: Public barrel for the config module (Layer 1 — imports shared only).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export { DEFAULT_CONFIG, validatePartialConfig, validatePermissionsSection } from "./schema.js";11export type {12 KhaelorConfig,13 PartialKhaelorConfig,14 ThinkingMode,15 PermissionAction,16 PermissionRuleEntry,17 PermissionsSection,18} from "./schema.js";1920export { loadConfig, ResolvedConfig, REDACTED } from "./loader.js";21export type { CliConfigFlags, LoadConfigOptions } from "./loader.js";2223export { persistPermissionGrant } from "./persist.js";24export type { PermissionGrant, PersistPermissionGrantOptions } from "./persist.js";25