@claudexor/schema 3.9.7 → 3.10.0
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/attachment.d.ts +6 -0
- package/dist/attachment.d.ts.map +1 -1
- package/dist/attachment.js +8 -0
- package/dist/attachment.js.map +1 -1
- package/dist/control-gc.d.ts +21 -0
- package/dist/control-gc.d.ts.map +1 -1
- package/dist/control-gc.js +12 -0
- package/dist/control-gc.js.map +1 -1
- package/dist/control-operation-responses.d.ts +15 -0
- package/dist/control-operation-responses.d.ts.map +1 -1
- package/dist/control-run-detail.d.ts +43 -5
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control.d.ts +40 -0
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +8 -0
- package/dist/control.js.map +1 -1
- package/dist/decision.d.ts +15 -4
- package/dist/decision.d.ts.map +1 -1
- package/dist/decision.js +13 -9
- package/dist/decision.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp-run-result.d.ts +24 -0
- package/dist/mcp-run-result.d.ts.map +1 -1
- package/dist/model-operation.d.ts +2158 -0
- package/dist/model-operation.d.ts.map +1 -0
- package/dist/model-operation.js +230 -0
- package/dist/model-operation.js.map +1 -0
- package/dist/run-facts.d.ts +5 -0
- package/dist/run-facts.d.ts.map +1 -1
- package/dist/run-facts.js +3 -3
- package/dist/run-facts.js.map +1 -1
- package/dist/run-strategy.d.ts +17 -0
- package/dist/run-strategy.d.ts.map +1 -1
- package/dist/run-strategy.js +31 -0
- package/dist/run-strategy.js.map +1 -1
- package/dist/status-projection.d.ts.map +1 -1
- package/dist/status-projection.js +13 -1
- package/dist/status-projection.js.map +1 -1
- package/dist/surface-run-controls.d.ts.map +1 -1
- package/dist/surface-run-controls.js +3 -0
- package/dist/surface-run-controls.js.map +1 -1
- package/dist/task.d.ts +9 -0
- package/dist/task.d.ts.map +1 -1
- package/dist/task.js +4 -0
- package/dist/task.js.map +1 -1
- package/dist/telemetry.d.ts +7 -0
- package/dist/telemetry.d.ts.map +1 -1
- package/generated/ControlGcReceipt.schema.json +23 -0
- package/generated/ControlGcRequest.schema.json +4 -0
- package/generated/ControlModelCatalogResponse.schema.json +137 -0
- package/generated/ControlModelOperationAckRequest.schema.json +19 -0
- package/generated/ControlModelOperationControlRequest.schema.json +27 -0
- package/generated/ControlModelOperationCreateRequest.schema.json +40 -0
- package/generated/ControlModelOperationDetail.schema.json +464 -0
- package/generated/ControlModelSourcesResponse.schema.json +44 -0
- package/generated/ControlResource.schema.json +5 -0
- package/generated/ControlRunAgainDraft.schema.json +4 -0
- package/generated/ControlRunDetail.schema.json +10 -1
- package/generated/ControlRunListResponse.schema.json +8 -0
- package/generated/ControlRunStartRequest.schema.json +4 -0
- package/generated/ControlRunSummary.schema.json +8 -0
- package/generated/ControlThreadDetail.schema.json +4 -0
- package/generated/ControlThreadTurnRequest.schema.json +4 -0
- package/generated/ControlUploadCreateRequest.schema.json +5 -0
- package/generated/DecisionRecord.schema.json +6 -1
- package/generated/McpRunHandleResult.schema.json +4 -0
- package/generated/McpRunToolResult.schema.json +4 -0
- package/generated/ModelCallRequest.schema.json +316 -0
- package/generated/ModelCallResult.schema.json +419 -0
- package/generated/RunFacts.schema.json +4 -0
- package/generated/RunTelemetry.schema.json +4 -0
- package/generated/TaskContract.schema.json +4 -0
- package/package.json +2 -2
package/dist/decision.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export declare const RunOutcomeFacts: z.ZodObject<{
|
|
|
51
51
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
52
52
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
53
53
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
54
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
54
55
|
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
55
56
|
/**
|
|
56
57
|
* D-16 work_state axis (INV-116): the model-attested work outcome,
|
|
@@ -97,6 +98,7 @@ export declare const RunOutcomeFacts: z.ZodObject<{
|
|
|
97
98
|
noChanges: boolean;
|
|
98
99
|
checks: "failed" | "not_configured" | "passed";
|
|
99
100
|
review: "approved" | "blocked" | "not_run";
|
|
101
|
+
review_requested?: boolean | undefined;
|
|
100
102
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
101
103
|
work_state?: {
|
|
102
104
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -112,6 +114,7 @@ export declare const RunOutcomeFacts: z.ZodObject<{
|
|
|
112
114
|
noChanges?: boolean | undefined;
|
|
113
115
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
114
116
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
117
|
+
review_requested?: boolean | undefined;
|
|
115
118
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
116
119
|
work_state?: {
|
|
117
120
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -124,9 +127,12 @@ export declare const RunOutcomeFacts: z.ZodObject<{
|
|
|
124
127
|
} | undefined;
|
|
125
128
|
}>;
|
|
126
129
|
export type RunOutcomeFacts = z.infer<typeof RunOutcomeFacts>;
|
|
130
|
+
/** Review permission is independent from lifecycle, checks and patch validity.
|
|
131
|
+
* Only a persisted opt-out grants unreviewed apply; legacy absence never does. */
|
|
132
|
+
export declare function reviewAllowsApply(facts: Pick<RunOutcomeFacts, "review" | "review_requested">): boolean;
|
|
127
133
|
export declare const ApplyRecommendation: z.ZodEnum<["apply", "inspect", "continue", "human_review"]>;
|
|
128
134
|
export type ApplyRecommendation = z.infer<typeof ApplyRecommendation>;
|
|
129
|
-
export declare const VerificationBasis: z.ZodEnum<["none", "cross_family_review", "both"]>;
|
|
135
|
+
export declare const VerificationBasis: z.ZodEnum<["none", "deterministic_checks", "cross_family_review", "both"]>;
|
|
130
136
|
export type VerificationBasis = z.infer<typeof VerificationBasis>;
|
|
131
137
|
/**
|
|
132
138
|
* FinalVerifier record (INV-115): the winner's patch was applied onto a
|
|
@@ -188,6 +194,7 @@ export declare const DecisionRecord: z.ZodObject<{
|
|
|
188
194
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
189
195
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
190
196
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
197
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
191
198
|
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
192
199
|
/**
|
|
193
200
|
* D-16 work_state axis (INV-116): the model-attested work outcome,
|
|
@@ -234,6 +241,7 @@ export declare const DecisionRecord: z.ZodObject<{
|
|
|
234
241
|
noChanges: boolean;
|
|
235
242
|
checks: "failed" | "not_configured" | "passed";
|
|
236
243
|
review: "approved" | "blocked" | "not_run";
|
|
244
|
+
review_requested?: boolean | undefined;
|
|
237
245
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
238
246
|
work_state?: {
|
|
239
247
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -249,6 +257,7 @@ export declare const DecisionRecord: z.ZodObject<{
|
|
|
249
257
|
noChanges?: boolean | undefined;
|
|
250
258
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
251
259
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
260
|
+
review_requested?: boolean | undefined;
|
|
252
261
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
253
262
|
work_state?: {
|
|
254
263
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -313,7 +322,7 @@ export declare const DecisionRecord: z.ZodObject<{
|
|
|
313
322
|
valuation_knowledge?: "estimated" | "exact" | "unknown" | undefined;
|
|
314
323
|
}>>;
|
|
315
324
|
apply_recommendation: z.ZodDefault<z.ZodEnum<["apply", "inspect", "continue", "human_review"]>>;
|
|
316
|
-
verification_basis: z.ZodDefault<z.ZodEnum<["none", "cross_family_review", "both"]>>;
|
|
325
|
+
verification_basis: z.ZodDefault<z.ZodEnum<["none", "deterministic_checks", "cross_family_review", "both"]>>;
|
|
317
326
|
final_verify: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
318
327
|
attempted: z.ZodBoolean;
|
|
319
328
|
/** Base the verify tree was created from (the winner envelope's base_sha). */
|
|
@@ -363,6 +372,7 @@ export declare const DecisionRecord: z.ZodObject<{
|
|
|
363
372
|
noChanges: boolean;
|
|
364
373
|
checks: "failed" | "not_configured" | "passed";
|
|
365
374
|
review: "approved" | "blocked" | "not_run";
|
|
375
|
+
review_requested?: boolean | undefined;
|
|
366
376
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
367
377
|
work_state?: {
|
|
368
378
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -399,7 +409,7 @@ export declare const DecisionRecord: z.ZodObject<{
|
|
|
399
409
|
valuation_knowledge?: "estimated" | "exact" | "unknown" | undefined;
|
|
400
410
|
};
|
|
401
411
|
apply_recommendation: "apply" | "continue" | "human_review" | "inspect";
|
|
402
|
-
verification_basis: "both" | "cross_family_review" | "none";
|
|
412
|
+
verification_basis: "both" | "cross_family_review" | "deterministic_checks" | "none";
|
|
403
413
|
final_verify: {
|
|
404
414
|
attempted: boolean;
|
|
405
415
|
base_sha: string | null;
|
|
@@ -419,6 +429,7 @@ export declare const DecisionRecord: z.ZodObject<{
|
|
|
419
429
|
noChanges?: boolean | undefined;
|
|
420
430
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
421
431
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
432
|
+
review_requested?: boolean | undefined;
|
|
422
433
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
423
434
|
work_state?: {
|
|
424
435
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -455,7 +466,7 @@ export declare const DecisionRecord: z.ZodObject<{
|
|
|
455
466
|
valuation_knowledge?: "estimated" | "exact" | "unknown" | undefined;
|
|
456
467
|
} | undefined;
|
|
457
468
|
apply_recommendation?: "apply" | "continue" | "human_review" | "inspect" | undefined;
|
|
458
|
-
verification_basis?: "both" | "cross_family_review" | "none" | undefined;
|
|
469
|
+
verification_basis?: "both" | "cross_family_review" | "deterministic_checks" | "none" | undefined;
|
|
459
470
|
final_verify?: {
|
|
460
471
|
attempted: boolean;
|
|
461
472
|
base_sha?: string | null | undefined;
|
package/dist/decision.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decision.d.ts","sourceRoot":"","sources":["../src/decision.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAciD,CAAC;AACjF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE;;uEAEuE;AACvE,eAAO,MAAM,WAAW,mDAIrB,CAAC;AACJ,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD;wEACwE;AACxE,eAAO,MAAM,WAAW,+CAIrB,CAAC;AACJ,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD;;cAEc;AACd,eAAO,MAAM,SAAS,0YA2B+D,CAAC;AACtF,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD;;;+EAG+E;AAC/E,eAAO,MAAM,eAAe;;;;;;
|
|
1
|
+
{"version":3,"file":"decision.d.ts","sourceRoot":"","sources":["../src/decision.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAciD,CAAC;AACjF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE;;uEAEuE;AACvE,eAAO,MAAM,WAAW,mDAIrB,CAAC;AACJ,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD;wEACwE;AACxE,eAAO,MAAM,WAAW,+CAIrB,CAAC;AACJ,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD;;cAEc;AACd,eAAO,MAAM,SAAS,0YA2B+D,CAAC;AACtF,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD;;;+EAG+E;AAC/E,eAAO,MAAM,eAAe;;;;;;;IAoBxB;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM4D,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D;kFACkF;AAClF,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,IAAI,CAAC,eAAe,EAAE,QAAQ,GAAG,kBAAkB,CAAC,GAC1D,OAAO,CAIT;AAED,eAAO,MAAM,mBAAmB,6DAI7B,CAAC;AACJ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAItE,eAAO,MAAM,iBAAiB,4EAI3B,CAAC;AACJ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB;;IAG1B,8EAA8E;;;;;;;;;;;;;;;IAgC9E,0FAA0F;;;;;;;;;;;;;;;;;;;;;;;;EAW3F,CAAC;AACJ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,cAAc;;IAGvB;;0DAEsD;;;;;;;;QAtGtD;;;;;;WAMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA6CH,8EAA8E;;;;;;;;;;;;;;;QAgC9E,0FAA0F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwI3F,CAAC;AACJ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC"}
|
package/dist/decision.js
CHANGED
|
@@ -70,6 +70,10 @@ export const RunOutcomeFacts = z
|
|
|
70
70
|
.describe("True when the run finished without changing any files (the ex no_op fact)."),
|
|
71
71
|
checks: ChecksState.default("not_configured"),
|
|
72
72
|
review: ReviewState.default("not_run"),
|
|
73
|
+
review_requested: z
|
|
74
|
+
.boolean()
|
|
75
|
+
.optional()
|
|
76
|
+
.describe("Frozen model-review intent. False permits an honestly unreviewed result; absent historical records retain the review requirement."),
|
|
73
77
|
reason: RunReason.nullable()
|
|
74
78
|
.default(null)
|
|
75
79
|
.describe("Typed reason qualifying a non-clean terminal; null on a clean success."),
|
|
@@ -84,19 +88,19 @@ export const RunOutcomeFacts = z
|
|
|
84
88
|
})
|
|
85
89
|
.strict()
|
|
86
90
|
.describe("Independent terminal outcome axes of a run (D8/D18).");
|
|
91
|
+
/** Review permission is independent from lifecycle, checks and patch validity.
|
|
92
|
+
* Only a persisted opt-out grants unreviewed apply; legacy absence never does. */
|
|
93
|
+
export function reviewAllowsApply(facts) {
|
|
94
|
+
return (facts.review === "approved" || (facts.review === "not_run" && facts.review_requested === false));
|
|
95
|
+
}
|
|
87
96
|
export const ApplyRecommendation = z
|
|
88
97
|
.enum(["apply", "inspect", "continue", "human_review"])
|
|
89
98
|
.describe("Recommended next action for the run's work product: apply it, inspect first, continue working, or get human review.");
|
|
90
|
-
//
|
|
91
|
-
//
|
|
92
|
-
// Surfaced honestly so a no-test run adopted on review evidence never reads as
|
|
93
|
-
// "tests passed" (CLAUDEXOR_BIBLE §5 evidence, §11 delivery). A gates-ONLY basis
|
|
94
|
-
// is intentionally absent: a `ready` run always carries a verified review (a
|
|
95
|
-
// gate-pass without cross-family verification resolves to review_not_run, not
|
|
96
|
-
// ready), so the enum ships only values the arbitrator actually produces.
|
|
99
|
+
// Verification evidence, independent from permission to apply. Deliberately
|
|
100
|
+
// unreviewed work with no configured checks has basis none, never fake approval.
|
|
97
101
|
export const VerificationBasis = z
|
|
98
|
-
.enum(["none", "cross_family_review", "both"])
|
|
99
|
-
.describe("
|
|
102
|
+
.enum(["none", "deterministic_checks", "cross_family_review", "both"])
|
|
103
|
+
.describe("Verification evidence: none, deterministic_checks, cross_family_review (clean and verified), or both. An intentionally unreviewed result can be applicable without verification evidence.");
|
|
100
104
|
/**
|
|
101
105
|
* FinalVerifier record (INV-115): the winner's patch was applied onto a
|
|
102
106
|
* FRESH worktree at the candidate's own base sha and the deterministic gates
|
package/dist/decision.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decision.js","sourceRoot":"","sources":["../src/decision.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"decision.js","sourceRoot":"","sources":["../src/decision.ts"],"names":[],"mappings":"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"}
|
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;;;;;;GAMG;AACH,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kCAAkC,CAAC;AACjD,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,wBAAwB,CAAC;AACvC,cAAc,kCAAkC,CAAC;AACjD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kCAAkC,CAAC;AACjD,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,wBAAwB,CAAC;AACvC,cAAc,kCAAkC,CAAC;AACjD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC"}
|
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kCAAkC,CAAC;AACjD,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,wBAAwB,CAAC;AACvC,cAAc,kCAAkC,CAAC;AACjD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kCAAkC,CAAC;AACjD,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,wBAAwB,CAAC;AACvC,cAAc,kCAAkC,CAAC;AACjD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC"}
|
package/dist/mcp-run-result.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
32
32
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
33
33
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
34
34
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
35
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
35
36
|
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
36
37
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
37
38
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -71,6 +72,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
71
72
|
noChanges: boolean;
|
|
72
73
|
checks: "failed" | "not_configured" | "passed";
|
|
73
74
|
review: "approved" | "blocked" | "not_run";
|
|
75
|
+
review_requested?: boolean | undefined;
|
|
74
76
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
75
77
|
work_state?: {
|
|
76
78
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -86,6 +88,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
86
88
|
noChanges?: boolean | undefined;
|
|
87
89
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
88
90
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
91
|
+
review_requested?: boolean | undefined;
|
|
89
92
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
90
93
|
work_state?: {
|
|
91
94
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -269,6 +272,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
269
272
|
noChanges: boolean;
|
|
270
273
|
checks: "failed" | "not_configured" | "passed";
|
|
271
274
|
review: "approved" | "blocked" | "not_run";
|
|
275
|
+
review_requested?: boolean | undefined;
|
|
272
276
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
273
277
|
work_state?: {
|
|
274
278
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -340,6 +344,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
340
344
|
noChanges?: boolean | undefined;
|
|
341
345
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
342
346
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
347
|
+
review_requested?: boolean | undefined;
|
|
343
348
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
344
349
|
work_state?: {
|
|
345
350
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -407,6 +412,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
407
412
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
408
413
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
409
414
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
415
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
410
416
|
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
411
417
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
412
418
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -446,6 +452,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
446
452
|
noChanges: boolean;
|
|
447
453
|
checks: "failed" | "not_configured" | "passed";
|
|
448
454
|
review: "approved" | "blocked" | "not_run";
|
|
455
|
+
review_requested?: boolean | undefined;
|
|
449
456
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
450
457
|
work_state?: {
|
|
451
458
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -461,6 +468,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
461
468
|
noChanges?: boolean | undefined;
|
|
462
469
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
463
470
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
471
|
+
review_requested?: boolean | undefined;
|
|
464
472
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
465
473
|
work_state?: {
|
|
466
474
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -650,6 +658,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
650
658
|
noChanges: boolean;
|
|
651
659
|
checks: "failed" | "not_configured" | "passed";
|
|
652
660
|
review: "approved" | "blocked" | "not_run";
|
|
661
|
+
review_requested?: boolean | undefined;
|
|
653
662
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
654
663
|
work_state?: {
|
|
655
664
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -717,6 +726,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
717
726
|
noChanges: boolean;
|
|
718
727
|
checks: "failed" | "not_configured" | "passed";
|
|
719
728
|
review: "approved" | "blocked" | "not_run";
|
|
729
|
+
review_requested?: boolean | undefined;
|
|
720
730
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
721
731
|
work_state?: {
|
|
722
732
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -794,6 +804,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
794
804
|
noChanges?: boolean | undefined;
|
|
795
805
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
796
806
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
807
|
+
review_requested?: boolean | undefined;
|
|
797
808
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
798
809
|
work_state?: {
|
|
799
810
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -861,6 +872,7 @@ export declare const McpRunToolResult: z.ZodObject<{
|
|
|
861
872
|
noChanges?: boolean | undefined;
|
|
862
873
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
863
874
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
875
|
+
review_requested?: boolean | undefined;
|
|
864
876
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
865
877
|
work_state?: {
|
|
866
878
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -947,6 +959,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
947
959
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
948
960
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
949
961
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
962
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
950
963
|
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
951
964
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
952
965
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -986,6 +999,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
986
999
|
noChanges: boolean;
|
|
987
1000
|
checks: "failed" | "not_configured" | "passed";
|
|
988
1001
|
review: "approved" | "blocked" | "not_run";
|
|
1002
|
+
review_requested?: boolean | undefined;
|
|
989
1003
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
990
1004
|
work_state?: {
|
|
991
1005
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1001,6 +1015,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1001
1015
|
noChanges?: boolean | undefined;
|
|
1002
1016
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1003
1017
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1018
|
+
review_requested?: boolean | undefined;
|
|
1004
1019
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1005
1020
|
work_state?: {
|
|
1006
1021
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1184,6 +1199,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1184
1199
|
noChanges: boolean;
|
|
1185
1200
|
checks: "failed" | "not_configured" | "passed";
|
|
1186
1201
|
review: "approved" | "blocked" | "not_run";
|
|
1202
|
+
review_requested?: boolean | undefined;
|
|
1187
1203
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1188
1204
|
work_state?: {
|
|
1189
1205
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1255,6 +1271,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1255
1271
|
noChanges?: boolean | undefined;
|
|
1256
1272
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1257
1273
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1274
|
+
review_requested?: boolean | undefined;
|
|
1258
1275
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1259
1276
|
work_state?: {
|
|
1260
1277
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1324,6 +1341,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1324
1341
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
1325
1342
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
1326
1343
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
1344
|
+
review_requested: z.ZodOptional<z.ZodBoolean>;
|
|
1327
1345
|
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
1328
1346
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
1329
1347
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
@@ -1363,6 +1381,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1363
1381
|
noChanges: boolean;
|
|
1364
1382
|
checks: "failed" | "not_configured" | "passed";
|
|
1365
1383
|
review: "approved" | "blocked" | "not_run";
|
|
1384
|
+
review_requested?: boolean | undefined;
|
|
1366
1385
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1367
1386
|
work_state?: {
|
|
1368
1387
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1378,6 +1397,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1378
1397
|
noChanges?: boolean | undefined;
|
|
1379
1398
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1380
1399
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1400
|
+
review_requested?: boolean | undefined;
|
|
1381
1401
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1382
1402
|
work_state?: {
|
|
1383
1403
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1620,6 +1640,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1620
1640
|
noChanges: boolean;
|
|
1621
1641
|
checks: "failed" | "not_configured" | "passed";
|
|
1622
1642
|
review: "approved" | "blocked" | "not_run";
|
|
1643
|
+
review_requested?: boolean | undefined;
|
|
1623
1644
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1624
1645
|
work_state?: {
|
|
1625
1646
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1689,6 +1710,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1689
1710
|
noChanges: boolean;
|
|
1690
1711
|
checks: "failed" | "not_configured" | "passed";
|
|
1691
1712
|
review: "approved" | "blocked" | "not_run";
|
|
1713
|
+
review_requested?: boolean | undefined;
|
|
1692
1714
|
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1693
1715
|
work_state?: {
|
|
1694
1716
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1781,6 +1803,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1781
1803
|
noChanges?: boolean | undefined;
|
|
1782
1804
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1783
1805
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1806
|
+
review_requested?: boolean | undefined;
|
|
1784
1807
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1785
1808
|
work_state?: {
|
|
1786
1809
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1850,6 +1873,7 @@ export declare const McpRunHandleResult: z.ZodObject<{
|
|
|
1850
1873
|
noChanges?: boolean | undefined;
|
|
1851
1874
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1852
1875
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1876
|
+
review_requested?: boolean | undefined;
|
|
1853
1877
|
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1854
1878
|
work_state?: {
|
|
1855
1879
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp-run-result.d.ts","sourceRoot":"","sources":["../src/mcp-run-result.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAS3B,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAOkE,CAAC;AAChG,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE;;;GAGG;AACH,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"mcp-run-result.d.ts","sourceRoot":"","sources":["../src/mcp-run-result.ts"],"names":[],"mappings":"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"}
|