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%
457 B · 15 lines typescript
Raw Blame History
1/**2 * KHAELOR3 * File: src/shared/index.ts4 * Description: Public barrel for the shared module (Layer 0 — imports nothing).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export { KhaelorError, isKhaelorError } from "./errors.js";11export type { KhaelorErrorCode } from "./errors.js";12export { ok, err, unwrap } from "./result.js";13export type { Result, Unsubscribe } from "./result.js";14export { ulid, isUlid } from "./ids.js";15