@delegance/claude-autopilot 7.11.0-pre.4 → 7.11.0-pre.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,5 +7,7 @@ export type { BudgetCaps, BudgetReplaySummary, IncreaseReservationOptions, Relea
|
|
|
7
7
|
export { WorktreeLifecycle, assertRunWorktreesDirAvailable, } from './worktree-lifecycle.ts';
|
|
8
8
|
export type { CommitVerification, CreatedTaskWorktree, TaskTerminalState, WorktreeLifecycleOptions, } from './worktree-lifecycle.ts';
|
|
9
9
|
export { runScheduler, computeEffectiveConcurrency, } from './scheduler.ts';
|
|
10
|
-
export type { ConcurrencyConfig, MergeDecision, MergeOrchestrator, MergeOrchestratorInput, SchedulerDiagnostics, SchedulerOptions, SchedulerResult, SubagentRunInput, SubagentRunner, SubagentRunResult, } from './scheduler.ts';
|
|
10
|
+
export type { ConcurrencyConfig, MergeDecision, MergeOrchestrator as SchedulerMergeOrchestratorCallback, MergeOrchestratorInput, SchedulerDiagnostics, SchedulerOptions, SchedulerResult, SubagentRunInput, SubagentRunner, SubagentRunResult, } from './scheduler.ts';
|
|
11
|
+
export { createMergeOrchestrator, toSchedulerCallback, } from './merge-orchestrator.ts';
|
|
12
|
+
export type { MergeableTask, MergeOrchestrator, MergeOrchestratorOptions, MergeResult, } from './merge-orchestrator.ts';
|
|
11
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
// - Git operation queue (PR 2, #198)
|
|
8
8
|
// - Budget reservation ledger + caps (PR 3, #199)
|
|
9
9
|
// - Scheduler + worktree lifecycle (PR 4, this PR)
|
|
10
|
-
// - Merge orchestrator (PR 5, #192
|
|
10
|
+
// - Merge orchestrator (PR 5, #192)
|
|
11
11
|
//
|
|
12
12
|
// Importers should reach for THIS module rather than the underlying files so
|
|
13
13
|
// the internal layout can be reorganized without breaking call sites.
|
|
@@ -17,4 +17,5 @@ export { GitOperationQueue } from "./git-op-queue.js";
|
|
|
17
17
|
export { BudgetReservation, BudgetExceededError, } from "./budget-reservation.js";
|
|
18
18
|
export { WorktreeLifecycle, assertRunWorktreesDirAvailable, } from "./worktree-lifecycle.js";
|
|
19
19
|
export { runScheduler, computeEffectiveConcurrency, } from "./scheduler.js";
|
|
20
|
+
export { createMergeOrchestrator, toSchedulerCallback, } from "./merge-orchestrator.js";
|
|
20
21
|
//# sourceMappingURL=index.js.map
|