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/tasks/index.ts4 * Description: Public surface of the parallel-subtask module (v2 design §6).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910export {11 WORKTREES_DIR,12 createWorktree,13 mergeSubtaskBranch,14 removeWorktree,15 worktreeBranch,16 worktreeDiffStats,17} from "./worktree.js";18export type { ExecFn, MergeResult, WorktreeDiff, WorktreeInfo } from "./worktree.js";19export { SubtaskManager } from "./manager.js";20export type {21 ChildRunOutcome,22 ChildRunner,23 SubtaskManagerOptions,24 SubtaskRecord,25 SubtaskStatus,26} from "./manager.js";27