/** * Operations module — batch orchestrators and custom commands. * * Single-project git operations are accessed directly via `bunGitService` * from `src/services/git.ts` (per ADR-0008). Batch operations accept an * optional GitService for test injection. */ export { batchPull, batchPush, batchFetch, batchRefreshStatus, type BatchOptions, type ProgressCallback, } from "./batch.ts"; export { executeCommand, findCommandByKey, batchExecuteCommand, type CommandResult, } from "./commands.ts";