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/workspace/index.ts4 * Description: Public barrel for the workspace module (Layer 1 — the world seam, ADR-13).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export { WorkspaceError, isWorkspaceError } from "./workspace.js";11export type { Command, ProcessResult, Workspace, WorkspaceErrorCode } from "./workspace.js";12export { LocalWorkspace } from "./local.js";13export type { LocalWorkspaceOptions } from "./local.js";14export { InMemoryFileTimeRegistry } from "./file-times.js";15export type { FileFreshness, FileStamp, FileTimeRegistry } from "./file-times.js";16export { IgnoreMatcher, globToRegExp, listDirectory, loadIgnoreMatcher, walkFiles } from "./walk.js";17export type { DirectoryListing, WalkOptions, WalkedFile } from "./walk.js";18export { LocalProcessManager } from "./processes.js";19export type {20 LocalProcessManagerOptions,21 ManagedProcess,22 ManagedProcessStatus,23 ProcessEventSink,24 ProcessManager,25 ProcessRead,26 SpawnedChild,27} from "./processes.js";28