/** * KHAELOR * File: src/tasks/index.ts * Description: Public surface of the parallel-subtask module (v2 design ยง6). * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ export { WORKTREES_DIR, createWorktree, mergeSubtaskBranch, removeWorktree, worktreeBranch, worktreeDiffStats, } from "./worktree.js"; export type { ExecFn, MergeResult, WorktreeDiff, WorktreeInfo } from "./worktree.js"; export { SubtaskManager } from "./manager.js"; export type { ChildRunOutcome, ChildRunner, SubtaskManagerOptions, SubtaskRecord, SubtaskStatus, } from "./manager.js";