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/phases/index.ts4 * Description: Public surface of the phase-gate module (v2 design §1).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export { checkPhaseGate } from "./gate.js";11export type { GateCheck } from "./gate.js";12export { foldPhaseState } from "./state.js";13export type { PhaseState } from "./state.js";14export { PhaseService } from "./service.js";15export type { PhaseServiceOptions, PhaseSessionHandle } from "./service.js";16export { DEFAULT_GATE_CONFIG, PHASE_GATE_BLOCKED } from "./types.js";17export type {18 DesignArtifact,19 DesignDecision,20 GateAutoApprove,21 GateConfig,22 GateMode,23 Phase,24 PhaseApprovalAsker,25} from "./types.js";26