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%
802 B · 32 lines typescript
Raw Blame History
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 {11  DEFAULT_CONFIG,12  validateGateSection,13  validatePartialConfig,14  validatePermissionsSection,15} from "./schema.js";16export type {17  GateModeSetting,18  GateSection,19  KhaelorConfig,20  PartialKhaelorConfig,21  ThinkingMode,22  PermissionAction,23  PermissionRuleEntry,24  PermissionsSection,25} from "./schema.js";2627export { loadConfig, ResolvedConfig, REDACTED } from "./loader.js";28export type { CliConfigFlags, LoadConfigOptions } from "./loader.js";2930export { persistPermissionGrant } from "./persist.js";31export type { PermissionGrant, PersistPermissionGrantOptions } from "./persist.js";32