@claudexor/orchestrator 3.0.4 → 3.1.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/attemptFinalize.d.ts +200 -0
- package/dist/attemptFinalize.d.ts.map +1 -0
- package/dist/attemptFinalize.js +412 -0
- package/dist/attemptFinalize.js.map +1 -0
- package/dist/attemptTelemetry.d.ts +88 -7
- package/dist/attemptTelemetry.d.ts.map +1 -1
- package/dist/attemptTelemetry.js +276 -14
- package/dist/attemptTelemetry.js.map +1 -1
- package/dist/budgetFailure.d.ts +70 -0
- package/dist/budgetFailure.d.ts.map +1 -0
- package/dist/budgetFailure.js +114 -0
- package/dist/budgetFailure.js.map +1 -0
- package/dist/candidateEvidence.d.ts +55 -1
- package/dist/candidateEvidence.d.ts.map +1 -1
- package/dist/candidateEvidence.js +72 -0
- package/dist/candidateEvidence.js.map +1 -1
- package/dist/continuation.d.ts +77 -0
- package/dist/continuation.d.ts.map +1 -0
- package/dist/continuation.js +92 -0
- package/dist/continuation.js.map +1 -0
- package/dist/deepScanReducer.d.ts +148 -0
- package/dist/deepScanReducer.d.ts.map +1 -0
- package/dist/deepScanReducer.js +348 -0
- package/dist/deepScanReducer.js.map +1 -0
- package/dist/effortGovernance.d.ts +49 -0
- package/dist/effortGovernance.d.ts.map +1 -0
- package/dist/effortGovernance.js +35 -0
- package/dist/effortGovernance.js.map +1 -0
- package/dist/harnessFailure.d.ts +27 -0
- package/dist/harnessFailure.d.ts.map +1 -0
- package/dist/harnessFailure.js +61 -0
- package/dist/harnessFailure.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/orchestrator.d.ts +103 -16
- package/dist/orchestrator.d.ts.map +1 -1
- package/dist/orchestrator.js +1245 -327
- package/dist/orchestrator.js.map +1 -1
- package/dist/planQuestions.d.ts.map +1 -1
- package/dist/planQuestions.js +105 -50
- package/dist/planQuestions.js.map +1 -1
- package/dist/planRun.d.ts +15 -7
- package/dist/planRun.d.ts.map +1 -1
- package/dist/planRun.js +88 -42
- package/dist/planRun.js.map +1 -1
- package/dist/planTerminal.d.ts +36 -0
- package/dist/planTerminal.d.ts.map +1 -0
- package/dist/planTerminal.js +63 -0
- package/dist/planTerminal.js.map +1 -0
- package/dist/reviewerPanel.d.ts +4 -0
- package/dist/reviewerPanel.d.ts.map +1 -1
- package/dist/reviewerPanel.js +54 -9
- package/dist/reviewerPanel.js.map +1 -1
- package/dist/revisePrompt.d.ts +17 -0
- package/dist/revisePrompt.d.ts.map +1 -0
- package/dist/revisePrompt.js +15 -0
- package/dist/revisePrompt.js.map +1 -0
- package/dist/runSupport.d.ts +67 -2
- package/dist/runSupport.d.ts.map +1 -1
- package/dist/runSupport.js +86 -6
- package/dist/runSupport.js.map +1 -1
- package/dist/runTelemetryWriter.d.ts +6 -1
- package/dist/runTelemetryWriter.d.ts.map +1 -1
- package/dist/runTelemetryWriter.js +2 -0
- package/dist/runTelemetryWriter.js.map +1 -1
- package/dist/runTerminals.d.ts +15 -4
- package/dist/runTerminals.d.ts.map +1 -1
- package/dist/runTerminals.js +16 -1
- package/dist/runTerminals.js.map +1 -1
- package/dist/structuredOutput.d.ts +27 -0
- package/dist/structuredOutput.d.ts.map +1 -1
- package/dist/structuredOutput.js +65 -7
- package/dist/structuredOutput.js.map +1 -1
- package/dist/transientClassify.d.ts +59 -0
- package/dist/transientClassify.d.ts.map +1 -0
- package/dist/transientClassify.js +109 -0
- package/dist/transientClassify.js.map +1 -0
- package/dist/write-isolation.d.ts +11 -0
- package/dist/write-isolation.d.ts.map +1 -0
- package/dist/write-isolation.js +13 -0
- package/dist/write-isolation.js.map +1 -0
- package/package.json +17 -17
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The category that best explains a terminal harness failure across a run's
|
|
3
|
+
* attempt telemetries. `auth_failed` and `capability_refused` are deterministic
|
|
4
|
+
* refusals that dominate (retrying never clears them, so they are the true
|
|
5
|
+
* cause even when a later transient also fired); otherwise the most recent
|
|
6
|
+
* classified failure wins. Null when no transient failure was classified.
|
|
7
|
+
*/
|
|
8
|
+
export function dominantHarnessFailureCategory(transientFailures) {
|
|
9
|
+
if (transientFailures.length === 0)
|
|
10
|
+
return null;
|
|
11
|
+
const refusal = transientFailures.find((f) => f.category === "auth_failed" || f.category === "capability_refused");
|
|
12
|
+
if (refusal)
|
|
13
|
+
return refusal.category;
|
|
14
|
+
return transientFailures.at(-1)?.category ?? null;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Required-actions for a terminal harness failure, keyed off the classified
|
|
18
|
+
* category. Authentication guidance appears ONLY on `auth_failed`; every other
|
|
19
|
+
* category gets remediation that fits its actual cause. A null category (no
|
|
20
|
+
* classified transient) keeps the neutral diagnostics/retry guidance.
|
|
21
|
+
*/
|
|
22
|
+
export function harnessFailureNextActions(category) {
|
|
23
|
+
switch (category) {
|
|
24
|
+
case "auth_failed":
|
|
25
|
+
return [
|
|
26
|
+
"Re-authenticate this harness (run `claudexor doctor`, then the vendor login it names)",
|
|
27
|
+
"Open diagnostics",
|
|
28
|
+
"Retry the run once the login is restored",
|
|
29
|
+
];
|
|
30
|
+
case "capability_refused":
|
|
31
|
+
return [
|
|
32
|
+
"The route refused the requested capability (model/org/permission); choose a permitted model or route",
|
|
33
|
+
"Open diagnostics",
|
|
34
|
+
"Retry with a supported capability",
|
|
35
|
+
];
|
|
36
|
+
case "config_error":
|
|
37
|
+
return [
|
|
38
|
+
"The harness could not start or accepted an invalid request; check its install and the run's settings",
|
|
39
|
+
"Open diagnostics",
|
|
40
|
+
"Retry after fixing the configuration",
|
|
41
|
+
];
|
|
42
|
+
case "rate_limited":
|
|
43
|
+
return [
|
|
44
|
+
"The route was rate-limited; wait for the window to reset or route another account/profile",
|
|
45
|
+
"Open diagnostics",
|
|
46
|
+
"Retry the run",
|
|
47
|
+
];
|
|
48
|
+
case "timeout":
|
|
49
|
+
return [
|
|
50
|
+
"The harness went silent past the inactivity window; raise runtime.harness_inactivity_timeout_ms if the workload is legitimately quiet",
|
|
51
|
+
"Open diagnostics",
|
|
52
|
+
"Retry the run",
|
|
53
|
+
];
|
|
54
|
+
case "process_crash":
|
|
55
|
+
return ["The harness process crashed; open diagnostics for the exit detail", "Retry the run"];
|
|
56
|
+
case "unknown_harness_error":
|
|
57
|
+
case null:
|
|
58
|
+
return ["Open diagnostics", "Retry the run"];
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=harnessFailure.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"harnessFailure.js","sourceRoot":"","sources":["../src/harnessFailure.ts"],"names":[],"mappings":"AAYA;;;;;;GAMG;AACH,MAAM,UAAU,8BAA8B,CAC5C,iBAAgD;IAEhD,IAAI,iBAAiB,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,IAAI,CAAC;IAChD,MAAM,OAAO,GAAG,iBAAiB,CAAC,IAAI,CACpC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,KAAK,aAAa,IAAI,CAAC,CAAC,QAAQ,KAAK,oBAAoB,CAC3E,CAAC;IACF,IAAI,OAAO;QAAE,OAAO,OAAO,CAAC,QAAQ,CAAC;IACrC,OAAO,iBAAiB,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,IAAI,IAAI,CAAC;AACpD,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,yBAAyB,CAAC,QAAuC;IAC/E,QAAQ,QAAQ,EAAE,CAAC;QACjB,KAAK,aAAa;YAChB,OAAO;gBACL,uFAAuF;gBACvF,kBAAkB;gBAClB,0CAA0C;aAC3C,CAAC;QACJ,KAAK,oBAAoB;YACvB,OAAO;gBACL,sGAAsG;gBACtG,kBAAkB;gBAClB,mCAAmC;aACpC,CAAC;QACJ,KAAK,cAAc;YACjB,OAAO;gBACL,sGAAsG;gBACtG,kBAAkB;gBAClB,sCAAsC;aACvC,CAAC;QACJ,KAAK,cAAc;YACjB,OAAO;gBACL,2FAA2F;gBAC3F,kBAAkB;gBAClB,eAAe;aAChB,CAAC;QACJ,KAAK,SAAS;YACZ,OAAO;gBACL,uIAAuI;gBACvI,kBAAkB;gBAClB,eAAe;aAChB,CAAC;QACJ,KAAK,eAAe;YAClB,OAAO,CAAC,mEAAmE,EAAE,eAAe,CAAC,CAAC;QAChG,KAAK,uBAAuB,CAAC;QAC7B,KAAK,IAAI;YACP,OAAO,CAAC,kBAAkB,EAAE,eAAe,CAAC,CAAC;IACjD,CAAC;AACH,CAAC"}
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,OAAO,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC"}
|
package/dist/orchestrator.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import type { AccessProfile, Attachment, ControlReviewerPanelEntry, EffortHint, KnownModelEntry, ExternalContextPolicy, HarnessEvent, Intent, InteractionAnswerSet, InteractionRequest, ModeKind, PaidBudget, QuotaSnapshot, RoutingGoal, ProtectedPathApproval, RequestRequirementResolution, RunEvent, RunLifecycle, RunOutcomeFacts, TaskContract, TestCommandInvocation, ProviderFamily, ImplementationTransport, WebPolicySupport } from "@claudexor/schema";
|
|
1
|
+
import type { AccessProfile, Attachment, ControlReviewerPanelEntry, EffortHint, HarnessCapabilities, KnownModelEntry, ExternalContextPolicy, HarnessEvent, Intent, InteractionAnswerSet, InteractionRequest, ModeKind, PaidBudget, QuotaSnapshot, RoutingGoal, ProtectedPathApproval, RequestRequirementResolution, RunEvent, RunLifecycle, RunOutcomeFacts, TaskContract, TestCommandInvocation, ProviderFamily, ImplementationTransport, WebPolicySupport } from "@claudexor/schema";
|
|
2
2
|
import { type ExtraMcpServer } from "@claudexor/schema";
|
|
3
3
|
import type { AdapterRegistry, HarnessAdapter } from "@claudexor/core";
|
|
4
|
+
import { type BudgetDenial } from "./budgetFailure.js";
|
|
4
5
|
import { type ContinuityDisclosureResult } from "./continuity.js";
|
|
5
6
|
import { type DiffReviewInput, type DiffReviewResult } from "./diffReview.js";
|
|
6
7
|
import { type AttemptTelemetry } from "./attemptTelemetry.js";
|
|
8
|
+
import { type AttemptOutcomeClass } from "./attemptFinalize.js";
|
|
7
9
|
import { ArtifactStore, type RunPaths } from "@claudexor/artifact-store";
|
|
8
10
|
import { EventLog } from "@claudexor/event-log";
|
|
9
11
|
import { type ReviewerSpec } from "@claudexor/review";
|
|
@@ -132,6 +134,11 @@ export interface RunInput {
|
|
|
132
134
|
models?: Record<string, string>;
|
|
133
135
|
/** Optional reasoning-effort hint forwarded to harnesses that support it. */
|
|
134
136
|
effort?: EffortHint;
|
|
137
|
+
/** Harness-scoped effort map (harness id → effort). Specific beats general: an
|
|
138
|
+
* entry wins over the scalar `effort` and the per-harness settings default,
|
|
139
|
+
* analogous to `models`. Exact Retry replays the frozen per-lane efforts here
|
|
140
|
+
* so a non-primary lane keeps its own effort (QA-035 completeness). */
|
|
141
|
+
efforts?: Record<string, EffortHint>;
|
|
135
142
|
/** Pre-assigned ids so a caller (daemon/control-api) knows them before the run starts. */
|
|
136
143
|
runId?: string;
|
|
137
144
|
taskId?: string;
|
|
@@ -194,10 +201,10 @@ export interface RunInput {
|
|
|
194
201
|
*/
|
|
195
202
|
inPlace?: boolean;
|
|
196
203
|
/**
|
|
197
|
-
* Per-run globs no candidate may touch
|
|
198
|
-
*
|
|
199
|
-
*
|
|
200
|
-
*
|
|
204
|
+
* Per-run globs no candidate may touch (create/modify/delete/rename). Unlike
|
|
205
|
+
* project protected paths, these produce a deny-path violation; both require
|
|
206
|
+
* a human decision before delivery. The engine's post-diff policy gate is the
|
|
207
|
+
* authoritative enforcement (violation → blocking finding → blocked,
|
|
201
208
|
* patch undelivered). An in-place run with denyPaths is refused at preflight:
|
|
202
209
|
* a live tree offers no pre-delivery containment, and silent non-enforcement
|
|
203
210
|
* is never acceptable. accept_risk MAY still deliver (INV-111).
|
|
@@ -271,6 +278,20 @@ interface HarnessRouteSettings {
|
|
|
271
278
|
* unsandboxed lane — the only ones under which a full-access-requiring MCP
|
|
272
279
|
* injection (the belt on codex) can reach the daemon. */
|
|
273
280
|
export declare function isFullAccess(access: AccessProfile): boolean;
|
|
281
|
+
/**
|
|
282
|
+
* A routing preflight refusal (`RoutingPreflightError`: quality routing with no
|
|
283
|
+
* comparable user-declared tier for the intent) is a CONFIGURATION error, not a
|
|
284
|
+
* harness-availability problem (A-1/D-9/#22). Classifying it as
|
|
285
|
+
* `harness_unavailable` sent the operator to re-auth or wait for a harness; the
|
|
286
|
+
* real fix is to configure a tier or change the routing goal. Detected by the
|
|
287
|
+
* typed `code` (robust across duplicate `@claudexor/budget` package copies) so
|
|
288
|
+
* EVERY strategy's routing catch (ask/agent/plan/deep-scan/council) classifies
|
|
289
|
+
* it identically. Returns the failure category + matching remediation.
|
|
290
|
+
*/
|
|
291
|
+
export declare function routingFailureClassification(err: unknown): {
|
|
292
|
+
category: "config_error" | "harness_unavailable";
|
|
293
|
+
nextActions?: string[];
|
|
294
|
+
};
|
|
274
295
|
export interface RoutedAdapter {
|
|
275
296
|
adapter: HarnessAdapter;
|
|
276
297
|
adapterAccess: AccessProfile;
|
|
@@ -282,20 +303,31 @@ export interface RoutedAdapter {
|
|
|
282
303
|
/** Per-lane deny-path enforcement disclosure (postdiff_only until an adapter
|
|
283
304
|
* supports native pre-write deny). */
|
|
284
305
|
denyRequirement: RequestRequirementResolution;
|
|
285
|
-
/**
|
|
286
|
-
*
|
|
306
|
+
/** Harness-wide advertised effort ladder (empty = not tunable → the requested
|
|
307
|
+
* effort is DISCLOSED as ignored); the adapter re-resolves per model in its own env. */
|
|
287
308
|
effortLevels: readonly EffortHint[];
|
|
288
309
|
/** Manifest model truth source (used when the adapter has no live models()). */
|
|
289
310
|
knownModels: readonly KnownModelEntry[];
|
|
290
311
|
/** Pre-spawn credential-route estimate (INV-061 projection of preference x
|
|
291
312
|
* doctor source readiness); null = undecidable, model gates stay fail-closed. */
|
|
292
313
|
authRouteEstimate: "local_session" | "api_key" | null;
|
|
314
|
+
/** Manifest `synthesize` capability (#27 / D-6): only such routes are eligible
|
|
315
|
+
* to run the deep-scan bounded synthesis reducer over the scout reports. */
|
|
316
|
+
supportsSynthesize: boolean;
|
|
293
317
|
/** Manifest `interactive` capability: only such routes are OFFERED an
|
|
294
318
|
* InteractionChannel (gate). */
|
|
295
319
|
supportsInteractive: boolean;
|
|
296
320
|
/** Manifest `json_schema_output`: only such routes receive
|
|
297
321
|
* HarnessRunSpec.output_schema (gate); others keep fenced-JSON parsing. */
|
|
298
322
|
supportsJsonSchemaOutput: boolean;
|
|
323
|
+
/** Manifest `work_report_transport` (D-16): whether/how this route carries a
|
|
324
|
+
* WorkReport envelope. `unsupported` leaves the attempt's work_state
|
|
325
|
+
* `unverified` (a disclosed absence). */
|
|
326
|
+
workReportTransport: HarnessCapabilities["work_report_transport"];
|
|
327
|
+
/** Manifest `structured_output_channel` (D-16): decides the no-caller-schema
|
|
328
|
+
* envelope shape (side_tool = `{work_report}`; final_message = `{work_report,
|
|
329
|
+
* output:string}`). */
|
|
330
|
+
structuredOutputChannel: HarnessCapabilities["structured_output_channel"];
|
|
299
331
|
/** Manifest `capability_profile.mcp_injection`: only such routes can receive
|
|
300
332
|
* engine-injected MCP servers (browser, delegation belt). Delegate on a lane
|
|
301
333
|
* without it is a typed preflight refusal. */
|
|
@@ -315,6 +347,9 @@ export interface PlannerAttemptOutcome {
|
|
|
315
347
|
attemptId: string;
|
|
316
348
|
harnessId: string;
|
|
317
349
|
status: "success" | "failed" | "blocked";
|
|
350
|
+
/** D-16 r9: the finalizer's outcome class — interrupted/veto planners are
|
|
351
|
+
* NEVER accepted as clean plans; terminals project these facts. */
|
|
352
|
+
outcomeClass: AttemptOutcomeClass;
|
|
318
353
|
error: string | null;
|
|
319
354
|
/** Plan/merge body on success; null otherwise. */
|
|
320
355
|
text: string | null;
|
|
@@ -322,6 +357,10 @@ export interface PlannerAttemptOutcome {
|
|
|
322
357
|
/** True when the budget lease was denied — the solo loop stops trying
|
|
323
358
|
* further fallbacks; council treats it as a failed member. */
|
|
324
359
|
budgetDenied: boolean;
|
|
360
|
+
/** QA-050: the ledger's TYPED denial (route/slot + sub-code), so the plan
|
|
361
|
+
* terminal emits a budget failure with real remediation instead of collapsing
|
|
362
|
+
* to "all planners failed". Null when the attempt was not budget-denied. */
|
|
363
|
+
budgetDenial?: BudgetDenial | null;
|
|
325
364
|
}
|
|
326
365
|
/** Inputs to one planner spawn. Shared by the solo plan loop and the Council
|
|
327
366
|
* strategy (planRun.ts) so both drive the SAME machinery. */
|
|
@@ -345,6 +384,11 @@ export declare class Orchestrator {
|
|
|
345
384
|
private readonly deps;
|
|
346
385
|
private readonly gateway;
|
|
347
386
|
private readonly requestRequirements;
|
|
387
|
+
/** QA-034: the typed routing rationale computed ONCE at pool ordering, keyed
|
|
388
|
+
* by run id so the terminal telemetry writer can record it as run evidence
|
|
389
|
+
* (RunTelemetry.routing_rationale). Cleared when the run's telemetry is
|
|
390
|
+
* written. Absent for runs with an explicit single-harness pool (no ranking). */
|
|
391
|
+
private readonly routingRationaleByRun;
|
|
348
392
|
/** Per-attempt cap on forwarded live delta chunks (W-C4 flood guard, sol
|
|
349
393
|
* #10): past this the deltas are dropped and the cutoff is disclosed once;
|
|
350
394
|
* the complete message always still lands. */
|
|
@@ -422,6 +466,16 @@ export declare class Orchestrator {
|
|
|
422
466
|
* always pinned first. Cross-family diversity is encouraged for later slots.
|
|
423
467
|
*/
|
|
424
468
|
private orderPool;
|
|
469
|
+
/**
|
|
470
|
+
* Typed auth-route evidence for one candidate (QA-034): the concrete
|
|
471
|
+
* credential route the resolved auth mode maps to, plus the doctor's
|
|
472
|
+
* verification for the source that route runs under. `local_session` →
|
|
473
|
+
* vendor_native + the native/OAuth source verification; `api_key` →
|
|
474
|
+
* managed_api_key + the key source verification. Unknown route → no evidence
|
|
475
|
+
* (the router keeps its conservative metric-derived billing). Verification is
|
|
476
|
+
* the source's typed verdict — never inferred from mere availability.
|
|
477
|
+
*/
|
|
478
|
+
private authRouteEvidenceFor;
|
|
425
479
|
/**
|
|
426
480
|
* Lazy ContextPack: built ONLY for the read-only report modes
|
|
427
481
|
* (explore/plan/readonly_audit) that consume it. Persisted to
|
|
@@ -464,6 +518,22 @@ export declare class Orchestrator {
|
|
|
464
518
|
* read lanes and reviewers have nothing to delegate). */
|
|
465
519
|
private delegationBeltFor;
|
|
466
520
|
private harnessSpecKnobs;
|
|
521
|
+
/**
|
|
522
|
+
* D-16: the WorkReport transport envelope for one route. Called at every
|
|
523
|
+
* task-producing spec-build site AFTER harnessSpecKnobs so it OVERRIDES the
|
|
524
|
+
* plain caller-schema transport with the compiled `{work_report, output}`
|
|
525
|
+
* envelope on capable routes. The returned `mode` is retained by the caller
|
|
526
|
+
* and handed to `unwrapWorkReportEnvelope` when the answer is finalized.
|
|
527
|
+
*/
|
|
528
|
+
private workReportEnvelopeFor;
|
|
529
|
+
/**
|
|
530
|
+
* D-16: apply the resolved WorkReport transport to a built spec — set the
|
|
531
|
+
* envelope output_schema (constrained/side_tool routes) and APPEND the fenced
|
|
532
|
+
* envelope instruction (validated routes, e.g. cursor). Mutates the spec in
|
|
533
|
+
* place and returns the mode the answer unwrap consumes. Called at every
|
|
534
|
+
* task-producing spec-build site so the transport is never wired one-off.
|
|
535
|
+
*/
|
|
536
|
+
private applyWorkEnvelope;
|
|
467
537
|
private routeSpecKnobs;
|
|
468
538
|
/**
|
|
469
539
|
* Build the per-lane continuation packet for a thread turn (INV-137).
|
|
@@ -486,6 +556,23 @@ export declare class Orchestrator {
|
|
|
486
556
|
* emitted); null on success.
|
|
487
557
|
*/
|
|
488
558
|
private ensureWriteModeGitBoundary;
|
|
559
|
+
/**
|
|
560
|
+
* D-14 layer 3 (AGENTS.md unification, INV-113): the ONE new live-tree write.
|
|
561
|
+
* When the PROJECT root has `AGENTS.md` and no `CLAUDE.md`, drop a thin
|
|
562
|
+
* `CLAUDE.md` (`@AGENTS.md` import + Claudexor ownership marker) so a Claude
|
|
563
|
+
* Code route reads the same instruction file codex/cursor read natively.
|
|
564
|
+
*
|
|
565
|
+
* Fenced exactly where the automatic git-init boundary is: read-only modes
|
|
566
|
+
* never reach this run-prep stage; `--in-place` stateful targets are left
|
|
567
|
+
* untouched; the write targets the PROJECT root (`repoRoot`), never a worktree
|
|
568
|
+
* envelope. The workspace helper adds exclusive-create + no-follow +
|
|
569
|
+
* idempotency, so a hand-written or symlinked `CLAUDE.md` is never overwritten
|
|
570
|
+
* and a concurrent/second prep is a no-op. Announced via a typed
|
|
571
|
+
* `project.claude_bridge.created` event on an actual create only — the git-init
|
|
572
|
+
* pattern. A bridge is a convenience, not a precondition: any failure is
|
|
573
|
+
* swallowed so it can never fail an otherwise-valid write run.
|
|
574
|
+
*/
|
|
575
|
+
private ensureClaudeBridgeForRun;
|
|
489
576
|
/**
|
|
490
577
|
* Freeze-on-implement delivery (D17/D27): verify the frozen plan's hash and
|
|
491
578
|
* materialize it as context/PLAN.md in the run artifact tree — OUTSIDE every
|
|
@@ -524,15 +611,7 @@ export declare class Orchestrator {
|
|
|
524
611
|
* read-only access still enforces it; this gives the model the right job.
|
|
525
612
|
*/
|
|
526
613
|
private planPrompt;
|
|
527
|
-
/**
|
|
528
|
-
* Run ONE planner spawn (native plan mode, read-only) end to end: budget
|
|
529
|
-
* lease, spec build, continuity hydration, event streaming, telemetry, and
|
|
530
|
-
* settle. Shared by the solo plan loop (each pool member is a sequential
|
|
531
|
-
* fallback) and the Council strategy (each member is a parallel draft, then
|
|
532
|
-
* one merge iteration on the primary — same machinery, different prompt +
|
|
533
|
-
* intent). The caller owns bookkeeping that differs per path: which artifact
|
|
534
|
-
* a success writes to, fallback disclosure, and accumulation.
|
|
535
|
-
*/
|
|
614
|
+
/** One read-only planner spawn shared by solo fallback, Council drafts, and merge. */
|
|
536
615
|
runPlannerAttempt(args: PlannerAttemptArgs): Promise<PlannerAttemptOutcome>;
|
|
537
616
|
private runPlan;
|
|
538
617
|
/** Bind the few orchestrator methods planRun.ts needs (the rest of its
|
|
@@ -547,6 +626,14 @@ export declare class Orchestrator {
|
|
|
547
626
|
private resolvePaidBudget;
|
|
548
627
|
private rootLedger;
|
|
549
628
|
private routeBillingKnowledge;
|
|
629
|
+
/**
|
|
630
|
+
* #27 / D-6: build the engine-side deps closure for the deep-scan bounded
|
|
631
|
+
* synthesis reducer (packages/orchestrator/src/deepScanReducer.ts owns the
|
|
632
|
+
* spawn/stream/settle machinery). The closure keeps the private
|
|
633
|
+
* route/session/knob machinery HERE and hands the module only finished public
|
|
634
|
+
* types (a `HarnessRunSpec`, cost evidence, a disposable home).
|
|
635
|
+
*/
|
|
636
|
+
private deepScanReducerDeps;
|
|
550
637
|
private runReadOnlyReport;
|
|
551
638
|
}
|
|
552
639
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../src/orchestrator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../src/orchestrator.ts"],"names":[],"mappings":"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"}
|