@cat-factory/orchestration 0.177.0 → 0.178.1
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/container/dependencies.d.ts +9 -1
- package/dist/container/dependencies.d.ts.map +1 -1
- package/dist/container.d.ts.map +1 -1
- package/dist/container.js +1 -0
- package/dist/container.js.map +1 -1
- package/dist/modules/execution/AgentContextBuilder.d.ts +5 -24
- package/dist/modules/execution/AgentContextBuilder.d.ts.map +1 -1
- package/dist/modules/execution/AgentContextBuilder.js +10 -42
- package/dist/modules/execution/AgentContextBuilder.js.map +1 -1
- package/dist/modules/execution/ExecutionService.d.ts +14 -72
- package/dist/modules/execution/ExecutionService.d.ts.map +1 -1
- package/dist/modules/execution/ExecutionService.js +70 -353
- package/dist/modules/execution/ExecutionService.js.map +1 -1
- package/dist/modules/execution/ExecutionServiceDependencies.d.ts +7 -1
- package/dist/modules/execution/ExecutionServiceDependencies.d.ts.map +1 -1
- package/dist/modules/execution/OneShotStepController.d.ts +92 -0
- package/dist/modules/execution/OneShotStepController.d.ts.map +1 -0
- package/dist/modules/execution/OneShotStepController.js +202 -0
- package/dist/modules/execution/OneShotStepController.js.map +1 -0
- package/dist/modules/execution/PollRunningController.d.ts +113 -0
- package/dist/modules/execution/PollRunningController.d.ts.map +1 -0
- package/dist/modules/execution/PollRunningController.js +298 -0
- package/dist/modules/execution/PollRunningController.js.map +1 -0
- package/dist/modules/execution/RunAdmission.d.ts.map +1 -1
- package/dist/modules/execution/RunAdmission.js +4 -2
- package/dist/modules/execution/RunAdmission.js.map +1 -1
- package/dist/modules/execution/RunDispatcher.d.ts +4 -108
- package/dist/modules/execution/RunDispatcher.d.ts.map +1 -1
- package/dist/modules/execution/RunDispatcher.js +51 -468
- package/dist/modules/execution/RunDispatcher.js.map +1 -1
- package/dist/modules/execution/RunStateMachine.d.ts +44 -1
- package/dist/modules/execution/RunStateMachine.d.ts.map +1 -1
- package/dist/modules/execution/RunStateMachine.js +92 -1
- package/dist/modules/execution/RunStateMachine.js.map +1 -1
- package/dist/modules/execution/StepDecisionController.d.ts +120 -0
- package/dist/modules/execution/StepDecisionController.d.ts.map +1 -0
- package/dist/modules/execution/StepDecisionController.js +347 -0
- package/dist/modules/execution/StepDecisionController.js.map +1 -0
- package/dist/modules/execution/dispatchPromptSettings.d.ts +43 -0
- package/dist/modules/execution/dispatchPromptSettings.d.ts.map +1 -0
- package/dist/modules/execution/dispatchPromptSettings.js +76 -0
- package/dist/modules/execution/dispatchPromptSettings.js.map +1 -0
- package/dist/modules/execution/runStart.d.ts +50 -0
- package/dist/modules/execution/runStart.d.ts.map +1 -0
- package/dist/modules/execution/runStart.js +53 -0
- package/dist/modules/execution/runStart.js.map +1 -0
- package/dist/modules/kaizen/KaizenService.d.ts.map +1 -1
- package/dist/modules/kaizen/KaizenService.js +7 -5
- package/dist/modules/kaizen/KaizenService.js.map +1 -1
- package/dist/modules/kaizen/kaizen.logic.d.ts +24 -9
- package/dist/modules/kaizen/kaizen.logic.d.ts.map +1 -1
- package/dist/modules/kaizen/kaizen.logic.js +25 -10
- package/dist/modules/kaizen/kaizen.logic.js.map +1 -1
- package/dist/modules/pipelines/pipelineShape.d.ts +27 -0
- package/dist/modules/pipelines/pipelineShape.d.ts.map +1 -1
- package/dist/modules/pipelines/pipelineShape.js +44 -1
- package/dist/modules/pipelines/pipelineShape.js.map +1 -1
- package/dist/validation/validateRegistrations.d.ts.map +1 -1
- package/dist/validation/validateRegistrations.js +92 -0
- package/dist/validation/validateRegistrations.js.map +1 -1
- package/package.json +11 -11
|
@@ -188,6 +188,10 @@ export declare class RunDispatcher {
|
|
|
188
188
|
private readonly prReviewResolution;
|
|
189
189
|
/** Settled-agent-poll completion (helper-phase branches + `failed` handling), extracted collaborator. */
|
|
190
190
|
private readonly pollCompletion;
|
|
191
|
+
/** The RUNNING half of the poll branch tree — the sibling of {@link pollCompletion}. */
|
|
192
|
+
private readonly pollRunning;
|
|
193
|
+
/** The one-shot engine steps (`tracker` / `bug-intake` / `initiative-committer`). */
|
|
194
|
+
private readonly oneShot;
|
|
191
195
|
/**
|
|
192
196
|
* The Follow-up companion gate (the future-looking Coder's streamed items, the
|
|
193
197
|
* park-until-decided gate, and the human-action API), extracted to
|
|
@@ -308,70 +312,6 @@ export declare class RunDispatcher {
|
|
|
308
312
|
*/
|
|
309
313
|
pollAgentJob(workspaceId: string, executionId: string): Promise<AdvanceResult>;
|
|
310
314
|
private pollAgentJobInner;
|
|
311
|
-
/**
|
|
312
|
-
* Handle a `running` poll: a successful poll proves the container is up, so surface live subtask
|
|
313
|
-
* progress (e.g. 3/8 todos) without advancing the step. Only persist + emit when something
|
|
314
|
-
* actually changed so an idle poll doesn't churn storage or the event stream. Folds the poll's
|
|
315
|
-
* delta via {@link applyRunningFold} — a cheap pre-check against the loaded snapshot, then the
|
|
316
|
-
* authoritative re-apply on fresh state under CAS (idempotent for the set-to-latest folds and
|
|
317
|
-
* correct for the drain-on-read follow-up append). Split from {@link pollAgentJobInner} to stay
|
|
318
|
-
* under the statement ceiling.
|
|
319
|
-
*/
|
|
320
|
-
private handleRunningPoll;
|
|
321
|
-
/**
|
|
322
|
-
* A gate whose helper INVESTIGATES instead of fixing (post-release-health → on-call) declares a
|
|
323
|
-
* `resolveHelperCompletion` hook. When such a helper's job settles — done OR failed — call the
|
|
324
|
-
* hook INSTEAD of re-probing the precheck (re-probing an investigate-don't-fix helper would just
|
|
325
|
-
* regress again and burn the budget) and finish the gate step with the output it returns. Returns
|
|
326
|
-
* the resulting {@link AdvanceResult}, or `null` when this branch doesn't apply (the caller falls
|
|
327
|
-
* through to the re-probe / other completion paths).
|
|
328
|
-
*/
|
|
329
|
-
private resolveInvestigateHelperCompletion;
|
|
330
|
-
/**
|
|
331
|
-
* Fold a running poll's container signals into `step.container`: a successful poll
|
|
332
|
-
* proves the container is `up`, and the harness's live phase (clone / agent / push)
|
|
333
|
-
* plus the transport's container id/url enrich it. Returns whether anything changed,
|
|
334
|
-
* so the caller only persists + emits on a real transition (an idle poll is a no-op).
|
|
335
|
-
* Prior id/url/phase are preserved when a poll omits them (drain-on-read semantics).
|
|
336
|
-
*/
|
|
337
|
-
/**
|
|
338
|
-
* Fold a running poll's live delta (container status/phase, subtask counts, backend, streamed
|
|
339
|
-
* follow-ups, env projection) onto `target`, returning whether anything changed. Idempotent for
|
|
340
|
-
* the set-to-latest folds and correct under CAS retry for the drain-on-read follow-up append —
|
|
341
|
-
* see the call site in {@link pollAgentJobInner}. A concurrent write that advanced the step (or
|
|
342
|
-
* superseded the job) makes it a no-op.
|
|
343
|
-
*/
|
|
344
|
-
private applyRunningFold;
|
|
345
|
-
/**
|
|
346
|
-
* A polling gate step's in-flight job is its helper agent (ci-fixer / conflict-resolver / the
|
|
347
|
-
* human-review fixer), NOT the step's own work: when it finishes (or fails) we don't record a
|
|
348
|
-
* result or advance — we run any deterministic post-helper bookkeeping hook, record the attempt,
|
|
349
|
-
* drop the handle, return the gate to `checking`, and re-run the precheck (the helper's push
|
|
350
|
-
* triggers a fresh CI run / updates mergeability). A helper that failed without pushing leaves the
|
|
351
|
-
* precheck negative, so the next check re-dispatches (until the attempt budget is spent). Split
|
|
352
|
-
* from {@link pollAgentJobInner} to keep it under the complexity ceiling.
|
|
353
|
-
*/
|
|
354
|
-
private reprobeGateAfterHelper;
|
|
355
|
-
/**
|
|
356
|
-
* Shared container-eviction recovery for an async step (agent or deployer). When `error` is a
|
|
357
|
-
* container-eviction error and the per-flavour budget (transient vs genuine) isn't spent, resets
|
|
358
|
-
* the step so the driver re-dispatches a fresh container (returns `continue`); once the budget is
|
|
359
|
-
* spent, marks the container errored and returns the terminal `job_evicted`. Returns null when
|
|
360
|
-
* `error` is NOT an eviction, so the caller proceeds with its own genuine-failure handling.
|
|
361
|
-
* `onBeforeRedispatch` runs the kind-specific reclaim (the deployer releases its separately
|
|
362
|
-
* dispatched deploy-job runner) before the step state is reset. Keeps the eviction budgets +
|
|
363
|
-
* the user-facing "still evicting…" wording uniform across the agent and deployer paths.
|
|
364
|
-
*/
|
|
365
|
-
private recoverContainerEviction;
|
|
366
|
-
/**
|
|
367
|
-
* Mark a container step's container `errored` (preserving the id/url/phase it reached) and
|
|
368
|
-
* PERSIST it, so a failed run's details show the errored container. Called on the genuine
|
|
369
|
-
* job-failure / exhausted-eviction paths before the result funnels to `failRun`, which
|
|
370
|
-
* re-reads the run from storage (so an in-memory-only mutation here would be lost) and emits
|
|
371
|
-
* the terminal frame itself — so we deliberately persist WITHOUT emitting here, to avoid a
|
|
372
|
-
* redundant transient "errored but still running" broadcast right before the "failed" one.
|
|
373
|
-
*/
|
|
374
|
-
private markContainerErrored;
|
|
375
315
|
/**
|
|
376
316
|
* Re-run a polling gate step's precheck from the durable driver's `awaiting_gate`
|
|
377
317
|
* loop: which gate (ci / conflicts) is resolved from the current step's `agentKind`,
|
|
@@ -441,50 +381,6 @@ export declare class RunDispatcher {
|
|
|
441
381
|
* the advance/finalize path leaves that status alone rather than clobbering it to `in_progress`.
|
|
442
382
|
*/
|
|
443
383
|
private applyTerminalStepResolver;
|
|
444
|
-
/**
|
|
445
|
-
* File a tracking issue/ticket for a `tracker` step from the preceding `analysis`
|
|
446
|
-
* output. Non-LLM and best-effort: when no provider is wired or none is configured
|
|
447
|
-
* for the workspace it simply notes the skip; a filing error is folded into the
|
|
448
|
-
* step output rather than failing the run (the implementation still proceeds).
|
|
449
|
-
*/
|
|
450
|
-
private runTracker;
|
|
451
|
-
/**
|
|
452
|
-
* Run a `bug-intake` step — the recurring bug-triage pipeline's inbound dual of `tracker`
|
|
453
|
-
* (design §3). Pull ONE matching open issue from the schedule's configured tracker board,
|
|
454
|
-
* claim it (import + replace-link onto the reused block, mark it in-progress + comment), and
|
|
455
|
-
* seed the block's title/description from it so every downstream step works THAT bug. When
|
|
456
|
-
* nothing matches — or no task source is wired — the run completes SUCCESSFULLY with every
|
|
457
|
-
* remaining step skipped (there is nothing to investigate / reproduce / fix), no notification.
|
|
458
|
-
* Best-effort throughout: the intake helper never throws (a tracker outage resolves to a
|
|
459
|
-
* no-op), and the pickup writeback is fire-and-forget.
|
|
460
|
-
*/
|
|
461
|
-
private runBugIntake;
|
|
462
|
-
/**
|
|
463
|
-
* Complete the run successfully after a `bug-intake` step found no issue to work: record the
|
|
464
|
-
* intake step's own no-match output (it SUCCEEDED — it made the decision), then mark every
|
|
465
|
-
* REMAINING step `skipped` and finalize the reused block `done`, with NO notification (the
|
|
466
|
-
* outcome is visible in the schedule's run history).
|
|
467
|
-
*
|
|
468
|
-
* The block is finalized `done` DIRECTLY here rather than through `RunStateMachine.finalizeBlock`:
|
|
469
|
-
* for a mergerless task block (every bug-triage pipeline) finalizeBlock's terminal branch treats
|
|
470
|
-
* the run as "work complete but unmerged" — it flips the block `pr_ready` and raises a
|
|
471
|
-
* `pipeline_complete` "confirm + merge the PR" notification. This fire did NO work and opened NO
|
|
472
|
-
* PR, so that card would be spurious (and its payload would reference a STALE PR carried over from
|
|
473
|
-
* a prior fire). Setting the terminal status inline keeps the no-op silent, as documented.
|
|
474
|
-
*/
|
|
475
|
-
private completeRunSkippingRemaining;
|
|
476
|
-
/**
|
|
477
|
-
* Persist an APPROVED initiative plan for an `initiative-committer` step: flip the
|
|
478
|
-
* entity to `executing` and mirror the tracker into the repo's default branch
|
|
479
|
-
* (`docs/initiatives/<slug>/`) via the checkout-free {@link RepoFiles}. Deterministic,
|
|
480
|
-
* no LLM. REPLAY-SAFE: the tracker commit hash-short-circuits (an unchanged entity
|
|
481
|
-
* commits nothing) and `markExecuting` is content-idempotent, so a durable-driver
|
|
482
|
-
* replay re-enters harmlessly. The repo mirror is skipped gracefully when GitHub
|
|
483
|
-
* isn't wired (the DB entity stays the source of truth); a missing entity or an
|
|
484
|
-
* empty plan is a REAL failure — completing the run would strand the initiative in
|
|
485
|
-
* `planning` behind a green run.
|
|
486
|
-
*/
|
|
487
|
-
private runInitiativeCommitter;
|
|
488
384
|
/**
|
|
489
385
|
* The polling-gate registry, keyed by `agentKind`. A gate runs a programmatic
|
|
490
386
|
* precheck against a provider and only escalates to a helper container agent on a
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RunDispatcher.d.ts","sourceRoot":"","sources":["../../../src/modules/execution/RunDispatcher.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,eAAe,EACf,aAAa,EACb,cAAc,EACd,iBAAiB,EACjB,aAAa,
|
|
1
|
+
{"version":3,"file":"RunDispatcher.d.ts","sourceRoot":"","sources":["../../../src/modules/execution/RunDispatcher.ts"],"names":[],"mappings":"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"}
|