/** * Worktrees Module * * Provides git worktree management for parallel agent execution. * Exports the WorktreeManager for lifecycle management, * BranchManager for git branch operations, PipelineMergeOrchestrator * for ordered merge operations, ConflictHandler for conflict resolution, * conflict parser utilities, WorktreePool for pre-warming, * and instruction builders for coding agent context. */ export { WorktreeManager } from "./manager.js"; export { BranchManager } from "./branch-manager.js"; export { ResourceManager } from "./resource-manager.js"; export { WorktreePool, type PoolConfig, type PoolStats, } from "./pool.js"; export { PipelineMergeOrchestrator, type MergeConflict, type StepMergeResult, type MergeOrchestratorConfig, } from "./pipeline-merge-orchestrator.js"; export { ConflictHandler } from "./conflict-handler.js"; export { buildWorktreeInstructions, buildCompactInstructions, injectWorktreeContext, } from "./instructions.js"; export { parseConflictsInFile, parseConflictMarkers, parseConflictsInFiles, hasConflictMarkers, resolveConflictContent, } from "./conflict-parser.js"; export { RecoveryManager, type OrphanedWorktree, type OrphanedTask, type OrphanedBranch, type ReconciliationResult, type RecoveryOptions, } from "./recovery.js"; //# sourceMappingURL=index.d.ts.map