@cat-factory/orchestration 0.37.1 → 0.37.3
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.
- package/dist/modules/execution/CompanionController.d.ts +6 -11
- package/dist/modules/execution/CompanionController.d.ts.map +1 -1
- package/dist/modules/execution/CompanionController.js +20 -20
- package/dist/modules/execution/CompanionController.js.map +1 -1
- package/dist/modules/execution/ExecutionService.d.ts +25 -192
- package/dist/modules/execution/ExecutionService.d.ts.map +1 -1
- package/dist/modules/execution/ExecutionService.js +128 -610
- package/dist/modules/execution/ExecutionService.js.map +1 -1
- package/dist/modules/execution/HumanTestController.d.ts +6 -8
- package/dist/modules/execution/HumanTestController.d.ts.map +1 -1
- package/dist/modules/execution/HumanTestController.js +26 -26
- package/dist/modules/execution/HumanTestController.js.map +1 -1
- package/dist/modules/execution/ReviewGateController.d.ts +11 -19
- package/dist/modules/execution/ReviewGateController.d.ts.map +1 -1
- package/dist/modules/execution/ReviewGateController.js +19 -19
- package/dist/modules/execution/ReviewGateController.js.map +1 -1
- package/dist/modules/execution/RunStateMachine.d.ts +131 -0
- package/dist/modules/execution/RunStateMachine.d.ts.map +1 -0
- package/dist/modules/execution/RunStateMachine.js +389 -0
- package/dist/modules/execution/RunStateMachine.js.map +1 -0
- package/dist/modules/execution/TesterController.d.ts +3 -4
- package/dist/modules/execution/TesterController.d.ts.map +1 -1
- package/dist/modules/execution/TesterController.js +6 -6
- package/dist/modules/execution/TesterController.js.map +1 -1
- package/dist/modules/execution/VisualConfirmationController.d.ts +6 -8
- package/dist/modules/execution/VisualConfirmationController.d.ts.map +1 -1
- package/dist/modules/execution/VisualConfirmationController.js +18 -18
- package/dist/modules/execution/VisualConfirmationController.js.map +1 -1
- package/dist/modules/execution/gate-window-facades.d.ts +107 -0
- package/dist/modules/execution/gate-window-facades.d.ts.map +1 -0
- package/dist/modules/execution/gate-window-facades.js +114 -0
- package/dist/modules/execution/gate-window-facades.js.map +1 -0
- package/package.json +3 -3
|
@@ -2,6 +2,8 @@ import type { AgentRunContext, AgentRunResult, Block, ExecutionInstance, IdGener
|
|
|
2
2
|
import type { SpendService } from '@cat-factory/spend';
|
|
3
3
|
import type { AdvanceOptions, AdvanceResult } from './advance.js';
|
|
4
4
|
import type { AgentContextBuilder } from './AgentContextBuilder.js';
|
|
5
|
+
import type { RunStateMachine } from './RunStateMachine.js';
|
|
6
|
+
import type { StepGraph } from './StepGraph.js';
|
|
5
7
|
/**
|
|
6
8
|
* The engine flow-control operations the companion loop drives. These stay on
|
|
7
9
|
* `ExecutionService` (they are the shared state-machine primitives, reused by the human
|
|
@@ -14,17 +16,10 @@ export interface CompanionControllerDeps {
|
|
|
14
16
|
idGenerator: IdGenerator;
|
|
15
17
|
previewStepModel: (context: AgentRunContext) => Promise<string | undefined>;
|
|
16
18
|
runAgent: (context: AgentRunContext, options: AdvanceOptions) => Promise<AgentRunResult>;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
persistInstance: (workspaceId: string, instance: ExecutionInstance) => Promise<void>;
|
|
22
|
-
emitInstance: (workspaceId: string, instance: ExecutionInstance) => Promise<void>;
|
|
23
|
-
stopRunContainer: (workspaceId: string, instance: ExecutionInstance) => Promise<void>;
|
|
24
|
-
finalizeBlock: (workspaceId: string, instance: ExecutionInstance, confidence: number | undefined) => Promise<void>;
|
|
25
|
-
parkStepOnDecision: (workspaceId: string, instance: ExecutionInstance, step: PipelineStep, proposal?: string) => Promise<AdvanceResult>;
|
|
26
|
-
raiseDecisionRequired: (workspaceId: string, instance: ExecutionInstance) => Promise<void>;
|
|
27
|
-
loopCompanionProducer: (instance: ExecutionInstance, companionIndex: number, rework: NonNullable<PipelineStep['rework']>) => void;
|
|
19
|
+
/** The async instance/block spine (persist/emit/park/finalize/progress/notify/stop). */
|
|
20
|
+
stateMachine: RunStateMachine;
|
|
21
|
+
/** The pure step mutators (start/finish/park a step + the companion rework loop). */
|
|
22
|
+
stepGraph: StepGraph;
|
|
28
23
|
/**
|
|
29
24
|
* Infer + persist the block's `technical` label from the spec phase when the
|
|
30
25
|
* spec-companion converges. Both signals are read off the persisted steps — the
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompanionController.d.ts","sourceRoot":"","sources":["../../../src/modules/execution/CompanionController.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,cAAc,EAEd,KAAK,EACL,iBAAiB,EACjB,WAAW,EACX,YAAY,EACb,MAAM,qBAAqB,CAAA;AAO5B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEtD,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,cAAc,CAAA;AACjE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;
|
|
1
|
+
{"version":3,"file":"CompanionController.d.ts","sourceRoot":"","sources":["../../../src/modules/execution/CompanionController.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,cAAc,EAEd,KAAK,EACL,iBAAiB,EACjB,WAAW,EACX,YAAY,EACb,MAAM,qBAAqB,CAAA;AAO5B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEtD,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,cAAc,CAAA;AACjE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;AACnE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAC3D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAyC/C;;;;;GAKG;AACH,MAAM,WAAW,uBAAuB;IACtC,cAAc,EAAE,mBAAmB,CAAA;IACnC,KAAK,EAAE,YAAY,CAAA;IACnB,WAAW,EAAE,WAAW,CAAA;IACxB,gBAAgB,EAAE,CAAC,OAAO,EAAE,eAAe,KAAK,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAA;IAC3E,QAAQ,EAAE,CAAC,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,cAAc,KAAK,OAAO,CAAC,cAAc,CAAC,CAAA;IACxF,wFAAwF;IACxF,YAAY,EAAE,eAAe,CAAA;IAC7B,qFAAqF;IACrF,SAAS,EAAE,SAAS,CAAA;IACpB;;;;;;;;;OASG;IACH,mBAAmB,CAAC,EAAE,CACpB,WAAW,EAAE,MAAM,EACnB,KAAK,EAAE,KAAK,EACZ,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,YAAY,KACxB,OAAO,CAAC,IAAI,CAAC,CAAA;CACnB;AAED;;;;;;;;;;;;;;GAcG;AACH,qBAAa,mBAAmB;IAClB,OAAO,CAAC,QAAQ,CAAC,IAAI;IAAjC,YAA6B,IAAI,EAAE,uBAAuB,EAAI;IAE9D;;;;;;OAMG;IACG,QAAQ,CACZ,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,iBAAiB,EAC3B,IAAI,EAAE,YAAY,EAClB,KAAK,EAAE,KAAK,EACZ,WAAW,EAAE,OAAO,EACpB,OAAO,EAAE,cAAc,GACtB,OAAO,CAAC,aAAa,CAAC,CAuCxB;IAED;;;;;;;;OAQG;IACG,uBAAuB,CAC3B,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,iBAAiB,EAC3B,IAAI,EAAE,YAAY,EAClB,KAAK,EAAE,KAAK,EACZ,WAAW,EAAE,OAAO,EACpB,MAAM,EAAE,cAAc,GACrB,OAAO,CAAC,aAAa,CAAC,CAcxB;IAED,wFAAwF;IACxF,OAAO,CAAC,gBAAgB;IAQxB;;;;;;;;OAQG;YACW,eAAe;IA8J7B;;;;;;;;;OASG;YACW,aAAa;CAiB5B"}
|
|
@@ -139,7 +139,7 @@ export class CompanionController {
|
|
|
139
139
|
if (producerIndex >= 0 && !assessment) {
|
|
140
140
|
step.output = result.output || '';
|
|
141
141
|
step.companion = companion;
|
|
142
|
-
await this.deps.persistInstance(workspaceId, instance);
|
|
142
|
+
await this.deps.stateMachine.persistInstance(workspaceId, instance);
|
|
143
143
|
// Hand the precise classification + the raw reply (the whole point of the failure,
|
|
144
144
|
// for triage) to the driver's single `failRun` funnel. Do NOT fail the run here as
|
|
145
145
|
// well: a second `failRun` from the driver would clobber this rich record with a
|
|
@@ -184,7 +184,7 @@ export class CompanionController {
|
|
|
184
184
|
}
|
|
185
185
|
// PASS: the producer cleared the bar (and was not force-looped on its first batch).
|
|
186
186
|
if (passed) {
|
|
187
|
-
this.deps.finishStep(step);
|
|
187
|
+
this.deps.stepGraph.finishStep(step);
|
|
188
188
|
step.progress = 1;
|
|
189
189
|
// The spec-companion just corroborated the spec-writer's business-vs-technical
|
|
190
190
|
// determination: infer the block's `technical` label from the writer's
|
|
@@ -204,28 +204,28 @@ export class CompanionController {
|
|
|
204
204
|
status: 'pending',
|
|
205
205
|
proposal: producer?.output ?? step.output,
|
|
206
206
|
};
|
|
207
|
-
this.deps.pauseStepForInput(step);
|
|
207
|
+
this.deps.stepGraph.pauseStepForInput(step);
|
|
208
208
|
instance.status = 'blocked';
|
|
209
|
-
await this.deps.updateBlockProgress(workspaceId, instance, 'blocked');
|
|
210
|
-
await this.deps.persistInstance(workspaceId, instance);
|
|
211
|
-
await this.deps.emitInstance(workspaceId, instance);
|
|
209
|
+
await this.deps.stateMachine.updateBlockProgress(workspaceId, instance, 'blocked');
|
|
210
|
+
await this.deps.stateMachine.persistInstance(workspaceId, instance);
|
|
211
|
+
await this.deps.stateMachine.emitInstance(workspaceId, instance);
|
|
212
212
|
return { kind: 'awaiting_decision', decisionId: step.approval.id };
|
|
213
213
|
}
|
|
214
214
|
if (isFinalStep) {
|
|
215
215
|
instance.status = 'done';
|
|
216
|
-
await this.deps.finalizeBlock(workspaceId, instance, undefined);
|
|
217
|
-
await this.deps.persistInstance(workspaceId, instance);
|
|
218
|
-
await this.deps.emitInstance(workspaceId, instance);
|
|
219
|
-
await this.deps.stopRunContainer(workspaceId, instance);
|
|
216
|
+
await this.deps.stateMachine.finalizeBlock(workspaceId, instance, undefined);
|
|
217
|
+
await this.deps.stateMachine.persistInstance(workspaceId, instance);
|
|
218
|
+
await this.deps.stateMachine.emitInstance(workspaceId, instance);
|
|
219
|
+
await this.deps.stateMachine.stopRunContainer(workspaceId, instance);
|
|
220
220
|
return { kind: 'done' };
|
|
221
221
|
}
|
|
222
222
|
instance.currentStep += 1;
|
|
223
223
|
const next = instance.steps[instance.currentStep];
|
|
224
224
|
if (next)
|
|
225
|
-
this.deps.startStep(next);
|
|
226
|
-
await this.deps.updateBlockProgress(workspaceId, instance, 'in_progress');
|
|
227
|
-
await this.deps.persistInstance(workspaceId, instance);
|
|
228
|
-
await this.deps.emitInstance(workspaceId, instance);
|
|
225
|
+
this.deps.stepGraph.startStep(next);
|
|
226
|
+
await this.deps.stateMachine.updateBlockProgress(workspaceId, instance, 'in_progress');
|
|
227
|
+
await this.deps.stateMachine.persistInstance(workspaceId, instance);
|
|
228
|
+
await this.deps.stateMachine.emitInstance(workspaceId, instance);
|
|
229
229
|
return { kind: 'continue' };
|
|
230
230
|
}
|
|
231
231
|
// BELOW THRESHOLD, automatic budget spent → DON'T get stuck. Park on a human
|
|
@@ -238,8 +238,8 @@ export class CompanionController {
|
|
|
238
238
|
if (companion.attempts >= companion.maxAttempts) {
|
|
239
239
|
companion.exceeded = true;
|
|
240
240
|
step.companion = companion;
|
|
241
|
-
await this.deps.raiseDecisionRequired(workspaceId, instance);
|
|
242
|
-
return this.deps.parkStepOnDecision(workspaceId, instance, step, step.output ?? '');
|
|
241
|
+
await this.deps.stateMachine.raiseDecisionRequired(workspaceId, instance);
|
|
242
|
+
return this.deps.stateMachine.parkStepOnDecision(workspaceId, instance, step, step.output ?? '');
|
|
243
243
|
}
|
|
244
244
|
// NOT PASSED, budget left → loop the producer back with the feedback folded in (the
|
|
245
245
|
// automatic analogue of a human "request changes"). Reached either below threshold or
|
|
@@ -247,14 +247,14 @@ export class CompanionController {
|
|
|
247
247
|
// loop requires comments on a real producer, and a below-threshold rating requires a
|
|
248
248
|
// parsed verdict against a producer (otherwise rating defaulted to 1 and we passed).
|
|
249
249
|
const producer = instance.steps[producerIndex];
|
|
250
|
-
this.deps.loopCompanionProducer(instance, instance.currentStep, {
|
|
250
|
+
this.deps.stepGraph.loopCompanionProducer(instance, instance.currentStep, {
|
|
251
251
|
previousProposal: producer.output ?? '',
|
|
252
252
|
feedback: assessment?.summary ?? '',
|
|
253
253
|
...(assessment?.comments?.length ? { comments: assessment.comments } : {}),
|
|
254
254
|
});
|
|
255
|
-
await this.deps.updateBlockProgress(workspaceId, instance, 'in_progress');
|
|
256
|
-
await this.deps.persistInstance(workspaceId, instance);
|
|
257
|
-
await this.deps.emitInstance(workspaceId, instance);
|
|
255
|
+
await this.deps.stateMachine.updateBlockProgress(workspaceId, instance, 'in_progress');
|
|
256
|
+
await this.deps.stateMachine.persistInstance(workspaceId, instance);
|
|
257
|
+
await this.deps.stateMachine.emitInstance(workspaceId, instance);
|
|
258
258
|
return { kind: 'continue' };
|
|
259
259
|
}
|
|
260
260
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CompanionController.js","sourceRoot":"","sources":["../../../src/modules/execution/CompanionController.ts"],"names":[],"mappings":"AASA,OAAO,EAEL,8BAA8B,EAC9B,wBAAwB,GACzB,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAEpE,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAA;
|
|
1
|
+
{"version":3,"file":"CompanionController.js","sourceRoot":"","sources":["../../../src/modules/execution/CompanionController.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,12 +3,14 @@ import type { RunInitiatorScope } from '@cat-factory/kernel';
|
|
|
3
3
|
import { type HasPersonalSubscription } from './individualVendors.logic.js';
|
|
4
4
|
import { type ProviderCapabilities, type SubscriptionVendor } from '@cat-factory/kernel';
|
|
5
5
|
import { type DocumentUrlResolver, type FragmentBodyResolver } from './AgentContextBuilder.js';
|
|
6
|
+
import { type KaizenScheduler } from './RunStateMachine.js';
|
|
7
|
+
import { BrainstormActions, ClarityReviewActions, type HumanTestActions, RequirementReviewActions, type VisualConfirmActions } from './gate-window-facades.js';
|
|
6
8
|
import type { NotificationService } from '../notifications/NotificationService.js';
|
|
7
9
|
import type { WorkspaceSettingsService } from '../settings/WorkspaceSettingsService.js';
|
|
8
10
|
import type { RequirementReviewService } from '../requirements/RequirementReviewService.js';
|
|
9
11
|
import type { ClarityReviewService } from '../clarity/ClarityReviewService.js';
|
|
10
12
|
import type { BrainstormService } from '../brainstorm/BrainstormService.js';
|
|
11
|
-
import type { IterationCapChoice,
|
|
13
|
+
import type { IterationCapChoice, BrainstormStage } from '@cat-factory/kernel';
|
|
12
14
|
import type { LlmObservabilityService } from '../observability/LlmObservabilityService.js';
|
|
13
15
|
import type { AccountRepository, BlockRepository, ExecutionRepository, PipelineRepository, WorkspaceRepository } from '@cat-factory/kernel';
|
|
14
16
|
import type { Clock, IdGenerator } from '@cat-factory/kernel';
|
|
@@ -26,13 +28,6 @@ import type { BoardService } from '../board/BoardService.js';
|
|
|
26
28
|
import type { SpendService } from '@cat-factory/spend';
|
|
27
29
|
import type { AdvanceOptions, AdvanceResult } from './advance.js';
|
|
28
30
|
import { type TesterEnvironment } from './tester-infra.logic.js';
|
|
29
|
-
/**
|
|
30
|
-
* Structural view of the Kaizen agent's scheduler the engine calls at run completion.
|
|
31
|
-
* Kept minimal so the execution engine doesn't depend on the concrete `KaizenService`.
|
|
32
|
-
*/
|
|
33
|
-
export interface KaizenScheduler {
|
|
34
|
-
scheduleForRun(workspaceId: string, instance: ExecutionInstance): Promise<void>;
|
|
35
|
-
}
|
|
36
31
|
export interface ExecutionServiceDependencies {
|
|
37
32
|
workspaceRepository: WorkspaceRepository;
|
|
38
33
|
blockRepository: BlockRepository;
|
|
@@ -287,23 +282,21 @@ export declare class ExecutionService {
|
|
|
287
282
|
private readonly blockRepository;
|
|
288
283
|
private readonly pipelineRepository;
|
|
289
284
|
private readonly executionRepository;
|
|
290
|
-
private readonly accountRepository;
|
|
291
285
|
private readonly idGenerator;
|
|
292
286
|
private readonly clock;
|
|
293
287
|
/** The pure step/cursor mutators (start/finish/park/reset + the companion rework loop). */
|
|
294
288
|
private readonly stepGraph;
|
|
289
|
+
/** The async instance/block state-machine spine (persist/emit/park/advance/finalize/fail). */
|
|
290
|
+
private readonly runStateMachine;
|
|
295
291
|
private readonly agentExecutor;
|
|
296
292
|
private readonly workRunner;
|
|
297
293
|
private readonly events;
|
|
298
294
|
private readonly board;
|
|
299
295
|
private readonly spend;
|
|
300
296
|
private readonly requirementReviewService?;
|
|
301
|
-
private readonly kaizenScheduler?;
|
|
302
297
|
private readonly clarityReviewService?;
|
|
303
298
|
private readonly brainstormServices?;
|
|
304
299
|
private readonly environmentProvisioning?;
|
|
305
|
-
private readonly environmentTeardown?;
|
|
306
|
-
private readonly branchUpdater?;
|
|
307
300
|
/** Assembles the per-step agent context (requirements, docs, env, service frame, fragments). */
|
|
308
301
|
private readonly contextBuilder;
|
|
309
302
|
/** Resolves a `merger` step's assessment into an auto-merge or a `merge_review` notification. */
|
|
@@ -325,10 +318,15 @@ export declare class ExecutionService {
|
|
|
325
318
|
/** The two brainstorm (structured-dialogue) subjects for {@link reviewGate}, by stage. */
|
|
326
319
|
private readonly requirementsBrainstormKind;
|
|
327
320
|
private readonly architectureBrainstormKind;
|
|
321
|
+
/** Requirements-review window actions (exposed via {@link requirementsReview}). */
|
|
322
|
+
private readonly requirementsReviewActions;
|
|
323
|
+
/** Clarity-review (bug triage) window actions (exposed via {@link clarityReview}). */
|
|
324
|
+
private readonly clarityReviewActions;
|
|
325
|
+
/** Brainstorm window actions (exposed via {@link brainstorm}). */
|
|
326
|
+
private readonly brainstormActions;
|
|
328
327
|
private readonly blueprintReconciler?;
|
|
329
328
|
private readonly notificationService?;
|
|
330
329
|
private readonly workspaceSettingsService?;
|
|
331
|
-
private readonly llmObservability?;
|
|
332
330
|
private readonly prMerger?;
|
|
333
331
|
private readonly mergePresetRepository?;
|
|
334
332
|
private readonly ticketTrackerProvider?;
|
|
@@ -368,6 +366,16 @@ export declare class ExecutionService {
|
|
|
368
366
|
*/
|
|
369
367
|
private stepCompletionInterceptorCache?;
|
|
370
368
|
constructor({ workspaceRepository, blockRepository, pipelineRepository, executionRepository, accountRepository, idGenerator, clock, agentExecutor, workRunner, executionEventPublisher, boardService, spendService, documentRepository, documentUrlResolver, taskRepository, requirementReviewRepository, requirementReviewService, kaizenScheduler, clarityReviewRepository, clarityReviewService, brainstormServices, brainstormSessionRepository, fragmentResolver, environmentProvisioning, environmentTeardown, branchUpdater, blueprintReconciler, notificationService, resolveBinaryArtifactStore, workspaceSettingsService, llmObservability, pullRequestMerger, mergePresetRepository, ticketTrackerProvider, issueWriteback, subscriptionActivationRepository, resolveWorkspaceModelDefault, resolveProviderCapabilities, localTestInfraSupported, resolveRunRepoContext, resolveTesterFallbackDefault, resolveRequireEnvironmentProvider, assertAgentBackendConfigured, runInitiatorScope, }: ExecutionServiceDependencies);
|
|
369
|
+
/** Requirements-review window actions (run / incorporate / re-review / proceed / …). */
|
|
370
|
+
get requirementsReview(): RequirementReviewActions;
|
|
371
|
+
/** Clarity-review (bug-report triage) window actions. */
|
|
372
|
+
get clarityReview(): ClarityReviewActions;
|
|
373
|
+
/** Brainstorm (structured-dialogue) window actions, keyed by stage. */
|
|
374
|
+
get brainstorm(): BrainstormActions;
|
|
375
|
+
/** Human-testing gate window actions (confirm / request-fix / pull-main / recreate / destroy). */
|
|
376
|
+
get humanTest(): HumanTestActions;
|
|
377
|
+
/** Visual-confirmation gate window actions (approve / request-fix / recapture). */
|
|
378
|
+
get visualConfirm(): VisualConfirmActions;
|
|
371
379
|
private requireWorkspace;
|
|
372
380
|
private requireBlock;
|
|
373
381
|
/**
|
|
@@ -763,34 +771,6 @@ export declare class ExecutionService {
|
|
|
763
771
|
* under replay via the step's `jobId` (re-attach handled in {@link evaluateGate}).
|
|
764
772
|
*/
|
|
765
773
|
private dispatchGateHelper;
|
|
766
|
-
/**
|
|
767
|
-
* Raise a `decision_required` notification when a run parks on an iteration-cap gate
|
|
768
|
-
* after spending its automatic budget — a quality companion at its rework cap or an
|
|
769
|
-
* iterative reviewer (requirements / clarity) at its iteration cap. Without it the
|
|
770
|
-
* three-choice decision is reachable only by drilling into the parked step, so the run
|
|
771
|
-
* looks silently stuck. Best-effort: a missing notification service (tests) or block is
|
|
772
|
-
* a no-op.
|
|
773
|
-
*/
|
|
774
|
-
private raiseDecisionRequired;
|
|
775
|
-
/**
|
|
776
|
-
* Ensure an open notification exists for a run that has just parked waiting for a human
|
|
777
|
-
* (an agent-raised decision, an approval gate, or an iterative review gate). Without
|
|
778
|
-
* the old decision timeout the run waits indefinitely, so the inbox card — which the
|
|
779
|
-
* periodic sweep escalates yellow → red — is the only signal a human is needed.
|
|
780
|
-
*
|
|
781
|
-
* Non-clobbering: if ANY open notification is already on the block (a more specific
|
|
782
|
-
* `merge_review`, iteration-cap `decision_required`, etc.), it is left untouched and we
|
|
783
|
-
* raise nothing — so the richer message wins. Best-effort: no notification service
|
|
784
|
-
* (tests) or a missing block is a no-op.
|
|
785
|
-
*/
|
|
786
|
-
private ensureWaitingNotification;
|
|
787
|
-
/**
|
|
788
|
-
* Clear the auto-raised "waiting for a human decision" card once a run advances past
|
|
789
|
-
* the decision it was parked on (so the escalation sweep can't flip a settled decision
|
|
790
|
-
* red). Scoped to the `decision_required` type, so the human-actionable cards a stopped
|
|
791
|
-
* run leaves behind are untouched. Best-effort: no notification service (tests) is a no-op.
|
|
792
|
-
*/
|
|
793
|
-
private clearWaitingNotification;
|
|
794
774
|
/**
|
|
795
775
|
* Append the items the harness streamed since the last poll onto the Coder step's
|
|
796
776
|
* follow-up state as fresh `pending` items. A no-op when the companion is off or nothing
|
|
@@ -877,15 +857,6 @@ export declare class ExecutionService {
|
|
|
877
857
|
* nudge. A persisted board projection is a deliberate later phase.
|
|
878
858
|
*/
|
|
879
859
|
private ingestSpec;
|
|
880
|
-
/**
|
|
881
|
-
* Park a step on the durable decision-wait the approval gate uses, so a human (or the
|
|
882
|
-
* dedicated review window) can drive an iterative loop and resume the run. Shared by the
|
|
883
|
-
* requirements gate and the companion iteration-cap gate: both reuse the SAME parking
|
|
884
|
-
* mechanism rather than each rolling its own. `proposal` seeds the gate's stored text
|
|
885
|
-
* (the companion's latest feedback; empty for the requirements window, which renders its
|
|
886
|
-
* own structured surface via the universal result-view registry).
|
|
887
|
-
*/
|
|
888
|
-
private parkStepOnDecision;
|
|
889
860
|
/**
|
|
890
861
|
* Two gates park on a `step.approval` but are NOT generic prose approvals — they are
|
|
891
862
|
* iterative gates driven by their own dedicated surface, never the generic
|
|
@@ -917,122 +888,29 @@ export declare class ExecutionService {
|
|
|
917
888
|
private buildBrainstormKind;
|
|
918
889
|
/** Pick the brainstorm kind for a stage (the dedicated window drives both via the same loop). */
|
|
919
890
|
private brainstormKindFor;
|
|
920
|
-
/** Run a fresh brainstorm pass over a block + stage (off-path inspector / window surface). */
|
|
921
|
-
reviewBrainstorm(workspaceId: string, blockId: string, stage: BrainstormStage): Promise<BrainstormSession>;
|
|
922
|
-
/** Incorporate the human's picks ASYNCHRONOUSLY (the brainstorm mirror of {@link incorporateRequirements}). */
|
|
923
|
-
incorporateBrainstorm(workspaceId: string, blockId: string, stage: BrainstormStage, feedback?: string): Promise<BrainstormSession>;
|
|
924
|
-
/** Re-run the brainstorm against the converged direction (one more pass). */
|
|
925
|
-
reReviewBrainstorm(workspaceId: string, blockId: string, stage: BrainstormStage): Promise<BrainstormSession>;
|
|
926
|
-
/** Proceed: settle the brainstorm (last converged direction wins downstream) and advance. */
|
|
927
|
-
proceedBrainstorm(workspaceId: string, blockId: string, stage: BrainstormStage): Promise<BrainstormSession>;
|
|
928
|
-
/** Resolve a brainstorm that hit its iteration cap (extra-round / proceed / stop-reset). */
|
|
929
|
-
resolveBrainstormExceeded(workspaceId: string, blockId: string, stage: BrainstormStage, choice: ResolveRequirementsExceededChoice): Promise<BrainstormSession>;
|
|
930
|
-
/**
|
|
931
|
-
* Run a fresh reviewer pass over a block's collected requirements, snapshotting the
|
|
932
|
-
* task's merge-preset knobs (iteration budget + tolerated severity) onto the review.
|
|
933
|
-
* Shared by the pipeline gate and the off-path inspector "Run review" surface, so both
|
|
934
|
-
* honour the task's preset identically.
|
|
935
|
-
*/
|
|
936
|
-
reviewRequirements(workspaceId: string, blockId: string): Promise<RequirementReview>;
|
|
937
|
-
/**
|
|
938
|
-
* Incorporate the human's settled answers ASYNCHRONOUSLY. Validates that every finding is
|
|
939
|
-
* answered/dismissed, flags the review `incorporating`, records the intent on the parked
|
|
940
|
-
* gate step, and signals the durable driver to wake — which folds the answers and
|
|
941
|
-
* re-reviews in the background. Off-path (no parked run) the fold + re-review run inline.
|
|
942
|
-
*/
|
|
943
|
-
incorporateRequirements(workspaceId: string, blockId: string, feedback?: string): Promise<RequirementReview>;
|
|
944
|
-
/**
|
|
945
|
-
* Re-review the incorporated document (one more reviewer pass). On convergence
|
|
946
|
-
* (`incorporated`) the parked run advances; otherwise the window shows the next cycle
|
|
947
|
-
* (`ready`) or the iteration-cap choices (`exceeded`).
|
|
948
|
-
*/
|
|
949
|
-
reReviewRequirements(workspaceId: string, blockId: string): Promise<RequirementReview>;
|
|
950
|
-
/**
|
|
951
|
-
* Proceed: settle the requirements (the last incorporated doc, if any, becomes what
|
|
952
|
-
* downstream agents consume) and advance the parked run.
|
|
953
|
-
*/
|
|
954
|
-
proceedRequirements(workspaceId: string, blockId: string): Promise<RequirementReview>;
|
|
955
|
-
/**
|
|
956
|
-
* Ask the Requirement Writer to recommend answers for a batch of findings ASYNCHRONOUSLY:
|
|
957
|
-
* append `pending` placeholder recommendations at once and signal the durable driver to run
|
|
958
|
-
* the Writer per finding in the background (filling them in + notifying when done). Returns the
|
|
959
|
-
* review with the placeholders so the SPA shows "generating…" and hands the user back.
|
|
960
|
-
*/
|
|
961
|
-
requestRecommendations(workspaceId: string, blockId: string, itemIds: string[], note?: string): Promise<RequirementReview>;
|
|
962
|
-
/**
|
|
963
|
-
* Re-request a single recommendation with a "do it differently" note — resets it to `pending`
|
|
964
|
-
* and drives the Writer through the same async path. Review-scoped (the re-request endpoint
|
|
965
|
-
* addresses the recommendation by review id).
|
|
966
|
-
*/
|
|
967
|
-
reRequestRecommendation(workspaceId: string, reviewId: string, recId: string, note: string): Promise<RequirementReview>;
|
|
968
891
|
/**
|
|
969
892
|
* Route an iteration-cap resolution to its gate-specific handlers. `stop-reset` is
|
|
970
893
|
* uniform across gates: cancel the run and return the block to phase zero (editable),
|
|
971
894
|
* keeping whatever reference artifact each gate persists (the requirements doc on its
|
|
972
895
|
* own table; a companion's producer output on its branch). Shared by the requirements
|
|
973
|
-
* gate ({@link
|
|
974
|
-
* ({@link resolveCompanionExceeded}) so the three-way choice lives in one place.
|
|
896
|
+
* gate (`requirementsReview.resolveExceeded`, via {@link ReviewGateController}) and the
|
|
897
|
+
* companion gate ({@link resolveCompanionExceeded}) so the three-way choice lives in one place.
|
|
975
898
|
*/
|
|
976
899
|
private dispatchIterationCap;
|
|
977
|
-
/**
|
|
978
|
-
* Resolve a requirements review that hit its iteration cap: grant one more round,
|
|
979
|
-
* proceed with the last incorporated doc, or stop the task and reset it to phase zero.
|
|
980
|
-
*/
|
|
981
|
-
resolveRequirementsExceeded(workspaceId: string, blockId: string, choice: ResolveRequirementsExceededChoice): Promise<RequirementReview>;
|
|
982
900
|
/**
|
|
983
901
|
* Resolve a companion step parked at its automatic-rework cap (`companion.exceeded`):
|
|
984
902
|
* grant one more round, proceed accepting the producer's current output, or stop the
|
|
985
|
-
* task and reset it to phase zero. The companion mirror of
|
|
986
|
-
*
|
|
903
|
+
* task and reset it to phase zero. The companion mirror of the requirements
|
|
904
|
+
* iteration-cap resolution (`requirementsReview.resolveExceeded`), sharing the iteration-cap dispatch + the
|
|
987
905
|
* gate-resume plumbing. Idempotent — an already-resolved gate returns the instance
|
|
988
906
|
* unchanged. Scoped by execution + approval id (the execution controller surface),
|
|
989
907
|
* since a companion gate is not block-addressed like the requirements window.
|
|
990
908
|
*/
|
|
991
909
|
resolveCompanionExceeded(workspaceId: string, executionId: string, approvalId: string, choice: IterationCapChoice): Promise<ExecutionInstance>;
|
|
992
|
-
/**
|
|
993
|
-
* Finish a gate step the human just resolved (its `approval` already marked `approved`),
|
|
994
|
-
* then either finish the run (final step) or advance to the next step, persist, and wake
|
|
995
|
-
* the parked durable driver. The single advance/finalize/signal path shared by every
|
|
996
|
-
* gate-resume site — the generic approval ({@link approveStep}), the review gates (via
|
|
997
|
-
* {@link ReviewGateController}) and the companion iteration-cap proceed
|
|
998
|
-
* ({@link resolveCompanionExceeded}) — so the logic lives in exactly one place.
|
|
999
|
-
*/
|
|
1000
|
-
private advancePastResolvedGate;
|
|
1001
910
|
/** The latest `bug-investigator` step output on a run (the triage subject), or undefined. */
|
|
1002
911
|
private investigationFor;
|
|
1003
912
|
/** Resolve a block's investigator output via its current execution (off the gate path). */
|
|
1004
913
|
private investigationForBlock;
|
|
1005
|
-
/**
|
|
1006
|
-
* Run a fresh clarity reviewer pass over a block's bug report, snapshotting the task's
|
|
1007
|
-
* merge-preset knobs (iteration budget + tolerated severity) and threading in any
|
|
1008
|
-
* `bug-investigator` output as the triage subject. Shared by the gate + the off-path
|
|
1009
|
-
* inspector "Run review" surface.
|
|
1010
|
-
*/
|
|
1011
|
-
reviewClarity(workspaceId: string, blockId: string): Promise<ClarityReview>;
|
|
1012
|
-
/** Incorporate the human's settled answers ASYNCHRONOUSLY (the clarity mirror of {@link incorporateRequirements}). */
|
|
1013
|
-
incorporateClarity(workspaceId: string, blockId: string, feedback?: string): Promise<ClarityReview>;
|
|
1014
|
-
/** Re-review the clarified report (one more pass). On convergence the parked run advances. */
|
|
1015
|
-
reReviewClarity(workspaceId: string, blockId: string): Promise<ClarityReview>;
|
|
1016
|
-
/** Proceed: settle the clarity review and advance the parked run. */
|
|
1017
|
-
proceedClarity(workspaceId: string, blockId: string): Promise<ClarityReview>;
|
|
1018
|
-
/** Resolve a clarity review that hit its iteration cap (extra-round / proceed / stop-reset). */
|
|
1019
|
-
resolveClarityExceeded(workspaceId: string, blockId: string, choice: ResolveRequirementsExceededChoice): Promise<ClarityReview>;
|
|
1020
|
-
/** Confirm the change works: tear the ephemeral env down and advance the run. */
|
|
1021
|
-
confirmHumanTest(workspaceId: string, blockId: string): Promise<ExecutionInstance>;
|
|
1022
|
-
/** Submit findings and request a fix: dispatch the Tester's `fixer`, then rebuild the env. */
|
|
1023
|
-
requestHumanTestFix(workspaceId: string, blockId: string, findings: string): Promise<ExecutionInstance>;
|
|
1024
|
-
/** Pull the repo default branch into the PR branch + redeploy (conflict → conflict-resolver). */
|
|
1025
|
-
pullMainHumanTest(workspaceId: string, blockId: string): Promise<ExecutionInstance>;
|
|
1026
|
-
/** Rebuild the ephemeral environment on demand. */
|
|
1027
|
-
recreateHumanTestEnv(workspaceId: string, blockId: string): Promise<ExecutionInstance>;
|
|
1028
|
-
/** Destroy the ephemeral environment on demand (the run stays parked). */
|
|
1029
|
-
destroyHumanTestEnv(workspaceId: string, blockId: string): Promise<ExecutionInstance>;
|
|
1030
|
-
/** Approve the reviewed screenshots: advance the run. */
|
|
1031
|
-
approveVisualConfirm(workspaceId: string, blockId: string): Promise<ExecutionInstance>;
|
|
1032
|
-
/** Submit findings and request a fix: dispatch the Tester's `fixer`, then re-park. */
|
|
1033
|
-
requestVisualConfirmFix(workspaceId: string, blockId: string, findings: string): Promise<ExecutionInstance>;
|
|
1034
|
-
/** Refresh the screenshot pairs from the latest UI-tester report. */
|
|
1035
|
-
recaptureVisualConfirm(workspaceId: string, blockId: string): Promise<ExecutionInstance>;
|
|
1036
914
|
/**
|
|
1037
915
|
* Dispatch the `fixer` against the human-review gate's PR branch from a human's freeform
|
|
1038
916
|
* instructions — bypassing the precheck + grace window. Parks a `pendingFix` on the gate step,
|
|
@@ -1047,39 +925,6 @@ export declare class ExecutionService {
|
|
|
1047
925
|
* polling. A spend-paused run is left paused (it resumes through its own path).
|
|
1048
926
|
*/
|
|
1049
927
|
requestHumanReviewFix(workspaceId: string, blockId: string, instructions: string): Promise<ExecutionInstance>;
|
|
1050
|
-
/**
|
|
1051
|
-
* Push the run's latest state to subscribed clients, alongside its rolled-up
|
|
1052
|
-
* block so the board updates without a refetch. Best-effort: the publisher
|
|
1053
|
-
* swallows its own errors, and the persisted run remains the source of truth.
|
|
1054
|
-
*/
|
|
1055
|
-
private emitInstance;
|
|
1056
|
-
/**
|
|
1057
|
-
* Roll the run's recorded LLM calls into per-step `metrics` for the board, in
|
|
1058
|
-
* place on the emitted instance. The proxy keys calls by execution + agentKind
|
|
1059
|
-
* (not step index), so the aggregate is per-agent-kind within the run; steps
|
|
1060
|
-
* sharing a kind get the same rollup. Best-effort and a no-op when the sink is
|
|
1061
|
-
* not wired, so it never blocks an emit.
|
|
1062
|
-
*/
|
|
1063
|
-
private attachStepMetrics;
|
|
1064
|
-
/** Set the block's in-progress/blocked status and step-completion progress. */
|
|
1065
|
-
private updateBlockProgress;
|
|
1066
|
-
/**
|
|
1067
|
-
* Advance the block's step PROGRESS without touching its status — used when a step
|
|
1068
|
-
* resolver already owns the block's terminal status (the merger set `done`/`pr_ready`)
|
|
1069
|
-
* and a trailing step still follows, so the bar moves on without downgrading that status.
|
|
1070
|
-
*/
|
|
1071
|
-
private refreshBlockProgress;
|
|
1072
|
-
/**
|
|
1073
|
-
* A pipeline finished. A frame becomes `done` (a mapping-only run leaves it
|
|
1074
|
-
* `ready`). A *task* never auto-`done`s from a confidence score any more — that
|
|
1075
|
-
* looked merged when the PR was still open with red CI. Instead:
|
|
1076
|
-
* - if the pipeline has a `merger` step, it already owned the merge/notify
|
|
1077
|
-
* decision (see {@link resolveMergerStep}); we only backstop a missing one;
|
|
1078
|
-
* - otherwise the work is complete but unmerged: leave the PR open (`pr_ready`)
|
|
1079
|
-
* and raise a `pipeline_complete` notification for a human to confirm + merge.
|
|
1080
|
-
* `done` now strictly means the PR was merged (see {@link finalizeMerge}).
|
|
1081
|
-
*/
|
|
1082
|
-
private finalizeBlock;
|
|
1083
928
|
/**
|
|
1084
929
|
* Merge a block's PR for real, then mark it `done`. The remote merge happens
|
|
1085
930
|
* FIRST (via the {@link PullRequestMerger} port) and only on its success does the
|
|
@@ -1110,8 +955,6 @@ export declare class ExecutionService {
|
|
|
1110
955
|
* Returns just the thresholds the engine compares against (+ the CI attempt budget).
|
|
1111
956
|
*/
|
|
1112
957
|
private resolveMergePreset;
|
|
1113
|
-
/** Raise a `pipeline_complete` notification for a no-merger run awaiting confirmation. */
|
|
1114
|
-
private raisePipelineComplete;
|
|
1115
958
|
/**
|
|
1116
959
|
* Implementing a task assigned to a module materialises that module: create it
|
|
1117
960
|
* in the service if missing, then move the task inside it.
|
|
@@ -1241,15 +1084,5 @@ export declare class ExecutionService {
|
|
|
1241
1084
|
* delete that follows emits the coarse refresh, so no per-run event is needed.
|
|
1242
1085
|
*/
|
|
1243
1086
|
teardownForBlockTree(workspaceId: string, rootId: string): Promise<void>;
|
|
1244
|
-
/**
|
|
1245
|
-
* Best-effort: reclaim the per-run container backing an execution. The container is
|
|
1246
|
-
* addressed by the run (execution) id, so a backend that shares one across the run
|
|
1247
|
-
* (Cloudflare, local Docker) tears the whole thing down. A per-job backend (a
|
|
1248
|
-
* self-hosted pool) has no run container, so it cancels the run's IN-FLIGHT step job
|
|
1249
|
-
* instead — hence we pass the current step's job id alongside the run id. A no-op for
|
|
1250
|
-
* inline executors (no `stopJob`) and for an already-gone container/job; never
|
|
1251
|
-
* throws, so it can't derail the teardown that calls it.
|
|
1252
|
-
*/
|
|
1253
|
-
private stopRunContainer;
|
|
1254
1087
|
}
|
|
1255
1088
|
//# sourceMappingURL=ExecutionService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExecutionService.d.ts","sourceRoot":"","sources":["../../../src/modules/execution/ExecutionService.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ExecutionService.d.ts","sourceRoot":"","sources":["../../../src/modules/execution/ExecutionService.ts"],"names":[],"mappings":"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"}
|