@claudexor/schema 3.1.1 → 3.1.2
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/agent-capabilities.d.ts +89 -1
- package/dist/agent-capabilities.d.ts.map +1 -1
- package/dist/agent-capabilities.js +5 -0
- package/dist/agent-capabilities.js.map +1 -1
- package/dist/apply-eligibility.d.ts +102 -0
- package/dist/apply-eligibility.d.ts.map +1 -1
- package/dist/apply-eligibility.js +17 -0
- package/dist/apply-eligibility.js.map +1 -1
- package/dist/budget.d.ts +4 -4
- package/dist/budget.d.ts.map +1 -1
- package/dist/budget.js +2 -0
- package/dist/budget.js.map +1 -1
- package/dist/control-operation-responses.d.ts +133 -29
- package/dist/control-operation-responses.d.ts.map +1 -1
- package/dist/control-operation-responses.js +25 -0
- package/dist/control-operation-responses.js.map +1 -1
- package/dist/control-run-detail.d.ts +1405 -197
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control-run-detail.js +6 -0
- package/dist/control-run-detail.js.map +1 -1
- package/dist/control-run-retry.d.ts +2 -2
- package/dist/control.d.ts +351 -79
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +23 -28
- package/dist/control.js.map +1 -1
- package/dist/decision.d.ts +5 -0
- package/dist/decision.d.ts.map +1 -1
- package/dist/decision.js +7 -3
- package/dist/decision.js.map +1 -1
- package/dist/delegation.d.ts +73 -0
- package/dist/delegation.d.ts.map +1 -0
- package/dist/delegation.js +120 -0
- package/dist/delegation.js.map +1 -0
- package/dist/events.d.ts +4 -4
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +3 -0
- package/dist/events.js.map +1 -1
- package/dist/harness.d.ts +15 -15
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +10 -14
- package/dist/harness.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/readiness.d.ts +38 -0
- package/dist/readiness.d.ts.map +1 -1
- package/dist/readiness.js +4 -0
- package/dist/readiness.js.map +1 -1
- package/dist/request-requirements.d.ts +7 -7
- package/dist/request-requirements.d.ts.map +1 -1
- package/dist/request-requirements.js +2 -1
- package/dist/request-requirements.js.map +1 -1
- package/dist/task.d.ts +42 -0
- package/dist/task.d.ts.map +1 -1
- package/dist/task.js +11 -0
- package/dist/task.js.map +1 -1
- package/dist/telemetry.d.ts +87 -49
- package/dist/telemetry.d.ts.map +1 -1
- package/dist/telemetry.js +6 -9
- package/dist/telemetry.js.map +1 -1
- package/dist/workspace.d.ts +1 -1
- package/dist/workspace.js +7 -7
- package/dist/workspace.js.map +1 -1
- package/generated/AgentCapabilityCatalog.schema.json +39 -1
- package/generated/ControlHarnessListResponse.schema.json +48 -2
- package/generated/ControlRunAgainDraft.schema.json +6 -2
- package/generated/ControlRunControlResponse.schema.json +8 -0
- package/generated/ControlRunDetail.schema.json +116 -14
- package/generated/ControlRunListResponse.schema.json +93 -9
- package/generated/ControlRunStartRequest.schema.json +6 -2
- package/generated/ControlRunSummary.schema.json +93 -9
- package/generated/ControlThreadDetail.schema.json +64 -0
- package/generated/ControlThreadTurnRequest.schema.json +1 -1
- package/generated/DecisionRecord.schema.json +10 -1
- package/generated/HarnessManifest.schema.json +2 -2
- package/generated/HarnessStatusDto.schema.json +48 -2
- package/generated/McpRunHandleResult.schema.json +72 -1
- package/generated/McpRunToolResult.schema.json +69 -0
- package/generated/RunEvent.schema.json +1 -0
- package/generated/RunFailure.schema.json +4 -3
- package/generated/RunTelemetry.schema.json +61 -2
- package/generated/TaskContract.schema.json +43 -3
- package/generated/WorkspaceEnvelope.schema.json +6 -6
- package/package.json +2 -2
|
@@ -12,6 +12,87 @@
|
|
|
12
12
|
"type": "string",
|
|
13
13
|
"description": "Run id."
|
|
14
14
|
},
|
|
15
|
+
"parentRunId": {
|
|
16
|
+
"anyOf": [
|
|
17
|
+
{
|
|
18
|
+
"type": "string",
|
|
19
|
+
"minLength": 1,
|
|
20
|
+
"description": "Non-empty identifier string."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "null"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"description": "Parent/follow-up run id, when any.",
|
|
27
|
+
"default": null
|
|
28
|
+
},
|
|
29
|
+
"delegatedFromRunId": {
|
|
30
|
+
"anyOf": [
|
|
31
|
+
{
|
|
32
|
+
"$ref": "#/definitions/ControlRunSummary/properties/parentRunId/anyOf/0"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "null"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"description": "Claudexor Delegate parent run id; null for ordinary runs and native vendor subagents.",
|
|
39
|
+
"default": null
|
|
40
|
+
},
|
|
41
|
+
"delegation": {
|
|
42
|
+
"anyOf": [
|
|
43
|
+
{
|
|
44
|
+
"type": "object",
|
|
45
|
+
"properties": {
|
|
46
|
+
"requested": {
|
|
47
|
+
"type": "boolean",
|
|
48
|
+
"default": false
|
|
49
|
+
},
|
|
50
|
+
"effective": {
|
|
51
|
+
"type": "boolean",
|
|
52
|
+
"default": false
|
|
53
|
+
},
|
|
54
|
+
"used": {
|
|
55
|
+
"type": "boolean",
|
|
56
|
+
"default": false
|
|
57
|
+
},
|
|
58
|
+
"reason": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"enum": [
|
|
61
|
+
"pending",
|
|
62
|
+
"not_requested",
|
|
63
|
+
"injected_unused",
|
|
64
|
+
"used",
|
|
65
|
+
"runtime_unavailable",
|
|
66
|
+
"manifest_unsupported",
|
|
67
|
+
"access_profile_incompatible",
|
|
68
|
+
"partially_degraded",
|
|
69
|
+
"startup_failed"
|
|
70
|
+
],
|
|
71
|
+
"default": "not_requested"
|
|
72
|
+
},
|
|
73
|
+
"remediation": {
|
|
74
|
+
"anyOf": [
|
|
75
|
+
{
|
|
76
|
+
"type": "string",
|
|
77
|
+
"minLength": 1
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"type": "null"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"default": null
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"additionalProperties": false,
|
|
87
|
+
"description": "Engine-owned Delegate requested/effective/used receipt; surfaces project it without parsing model output."
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "null"
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"description": "Durable Delegate requested/effective/used receipt projected from engine telemetry; null when legacy telemetry has no receipt.",
|
|
94
|
+
"default": null
|
|
95
|
+
},
|
|
15
96
|
"taskId": {
|
|
16
97
|
"type": "string",
|
|
17
98
|
"description": "Task id, when allocated."
|
|
@@ -74,15 +155,16 @@
|
|
|
74
155
|
"estimate_headroom",
|
|
75
156
|
"unknown_paid_in_flight",
|
|
76
157
|
"budget_overshoot",
|
|
77
|
-
"cost_unverifiable"
|
|
158
|
+
"cost_unverifiable",
|
|
159
|
+
"delegation_child_drain_timeout"
|
|
78
160
|
],
|
|
79
|
-
"description": "Machine-readable failure sub-code within a RunFailure category (
|
|
161
|
+
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons and Delegate child-drain timeout)."
|
|
80
162
|
},
|
|
81
163
|
{
|
|
82
164
|
"type": "null"
|
|
83
165
|
}
|
|
84
166
|
],
|
|
85
|
-
"description": "Machine-readable failure sub-code within the category
|
|
167
|
+
"description": "Machine-readable failure sub-code within the category; null when the category alone is sufficient. Surfaces choose remediation from this, never by parsing safeMessage.",
|
|
86
168
|
"default": null
|
|
87
169
|
},
|
|
88
170
|
"harnessId": {
|
|
@@ -362,7 +444,7 @@
|
|
|
362
444
|
},
|
|
363
445
|
"spendEstimated": {
|
|
364
446
|
"type": "boolean",
|
|
365
|
-
"description": "True when
|
|
447
|
+
"description": "True when settled cash is estimated rather than exact."
|
|
366
448
|
},
|
|
367
449
|
"inputTokens": {
|
|
368
450
|
"anyOf": [
|
|
@@ -659,7 +741,8 @@
|
|
|
659
741
|
"type": "string",
|
|
660
742
|
"enum": [
|
|
661
743
|
"browser",
|
|
662
|
-
"path_deny"
|
|
744
|
+
"path_deny",
|
|
745
|
+
"delegation"
|
|
663
746
|
]
|
|
664
747
|
},
|
|
665
748
|
"harness_id": {
|
|
@@ -683,6 +766,7 @@
|
|
|
683
766
|
"manifest_unsupported",
|
|
684
767
|
"web_policy_off",
|
|
685
768
|
"access_profile_incompatible",
|
|
769
|
+
"runtime_unavailable",
|
|
686
770
|
"postdiff_only"
|
|
687
771
|
]
|
|
688
772
|
},
|
|
@@ -1070,9 +1154,7 @@
|
|
|
1070
1154
|
"order": {
|
|
1071
1155
|
"type": "array",
|
|
1072
1156
|
"items": {
|
|
1073
|
-
"
|
|
1074
|
-
"minLength": 1,
|
|
1075
|
-
"description": "Non-empty identifier string."
|
|
1157
|
+
"$ref": "#/definitions/ControlRunSummary/properties/parentRunId/anyOf/0"
|
|
1076
1158
|
},
|
|
1077
1159
|
"default": [],
|
|
1078
1160
|
"description": "Final ranked order, harness ids."
|
|
@@ -1080,7 +1162,7 @@
|
|
|
1080
1162
|
"dropped": {
|
|
1081
1163
|
"type": "array",
|
|
1082
1164
|
"items": {
|
|
1083
|
-
"$ref": "#/definitions/ControlRunSummary/properties/
|
|
1165
|
+
"$ref": "#/definitions/ControlRunSummary/properties/parentRunId/anyOf/0"
|
|
1084
1166
|
},
|
|
1085
1167
|
"default": [],
|
|
1086
1168
|
"description": "Ids removed by paid_fallback or cooldown before ranking."
|
|
@@ -1093,6 +1175,8 @@
|
|
|
1093
1175
|
"quality_tier",
|
|
1094
1176
|
"expiring_quota_slack",
|
|
1095
1177
|
"all_incremental_cash_unknown",
|
|
1178
|
+
"delegate_effective_first",
|
|
1179
|
+
"explicit_primary",
|
|
1096
1180
|
"declared_order"
|
|
1097
1181
|
],
|
|
1098
1182
|
"description": "Typed decisive reason the pool ranked the way it did (QA-034)."
|
|
@@ -667,6 +667,70 @@
|
|
|
667
667
|
],
|
|
668
668
|
"default": null,
|
|
669
669
|
"description": "When the run finished; null while live."
|
|
670
|
+
},
|
|
671
|
+
"delegation": {
|
|
672
|
+
"anyOf": [
|
|
673
|
+
{
|
|
674
|
+
"type": "object",
|
|
675
|
+
"properties": {
|
|
676
|
+
"requested": {
|
|
677
|
+
"type": "boolean",
|
|
678
|
+
"default": false
|
|
679
|
+
},
|
|
680
|
+
"effective": {
|
|
681
|
+
"type": "boolean",
|
|
682
|
+
"default": false
|
|
683
|
+
},
|
|
684
|
+
"used": {
|
|
685
|
+
"type": "boolean",
|
|
686
|
+
"default": false
|
|
687
|
+
},
|
|
688
|
+
"reason": {
|
|
689
|
+
"type": "string",
|
|
690
|
+
"enum": [
|
|
691
|
+
"pending",
|
|
692
|
+
"not_requested",
|
|
693
|
+
"injected_unused",
|
|
694
|
+
"used",
|
|
695
|
+
"runtime_unavailable",
|
|
696
|
+
"manifest_unsupported",
|
|
697
|
+
"access_profile_incompatible",
|
|
698
|
+
"partially_degraded",
|
|
699
|
+
"startup_failed"
|
|
700
|
+
],
|
|
701
|
+
"default": "not_requested"
|
|
702
|
+
},
|
|
703
|
+
"remediation": {
|
|
704
|
+
"anyOf": [
|
|
705
|
+
{
|
|
706
|
+
"type": "string",
|
|
707
|
+
"minLength": 1
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"type": "null"
|
|
711
|
+
}
|
|
712
|
+
],
|
|
713
|
+
"default": null
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
"additionalProperties": false,
|
|
717
|
+
"description": "Engine-owned Delegate requested/effective/used receipt; surfaces project it without parsing model output."
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"type": "null"
|
|
721
|
+
}
|
|
722
|
+
],
|
|
723
|
+
"description": "Durable Delegate outcome receipt; null for ordinary and legacy turns.",
|
|
724
|
+
"default": null
|
|
725
|
+
},
|
|
726
|
+
"delegatedChildRunIds": {
|
|
727
|
+
"type": "array",
|
|
728
|
+
"items": {
|
|
729
|
+
"$ref": "#/definitions/ControlThreadDetail/properties/thread/properties/credentialProfileId/anyOf/0"
|
|
730
|
+
},
|
|
731
|
+
"maxItems": 8,
|
|
732
|
+
"default": [],
|
|
733
|
+
"description": "At most eight server-owned direct Delegate child ids for whole-thread workspace aggregation."
|
|
670
734
|
}
|
|
671
735
|
},
|
|
672
736
|
"required": [
|
|
@@ -387,7 +387,7 @@
|
|
|
387
387
|
},
|
|
388
388
|
"delegate": {
|
|
389
389
|
"type": "boolean",
|
|
390
|
-
"description": "Agent-only: inject the Claudexor delegation belt so the harness can spawn bounded isolated sub-runs;
|
|
390
|
+
"description": "Agent-only: inject the Claudexor delegation belt so the harness can spawn bounded isolated sub-runs; non-agent modes refuse, while known belt or harness unavailability degrades before start to ordinary Agent with a durable warning."
|
|
391
391
|
},
|
|
392
392
|
"maxSeconds": {
|
|
393
393
|
"type": "integer",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"estimated": {
|
|
299
299
|
"type": "boolean",
|
|
300
300
|
"default": false,
|
|
301
|
-
"description": "True when
|
|
301
|
+
"description": "True when settled cash is estimated rather than exact."
|
|
302
302
|
},
|
|
303
303
|
"cash_usd": {
|
|
304
304
|
"type": [
|
|
@@ -315,6 +315,15 @@
|
|
|
315
315
|
],
|
|
316
316
|
"default": null,
|
|
317
317
|
"description": "Settled subscription-equivalent valuation in USD (includes the reviewer panel); null when unknown."
|
|
318
|
+
},
|
|
319
|
+
"valuation_knowledge": {
|
|
320
|
+
"type": "string",
|
|
321
|
+
"enum": [
|
|
322
|
+
"exact",
|
|
323
|
+
"estimated",
|
|
324
|
+
"unknown"
|
|
325
|
+
],
|
|
326
|
+
"description": "Certainty of valuation_usd, independent from the settled-cash estimated flag. Absent only on legacy decisions."
|
|
318
327
|
}
|
|
319
328
|
},
|
|
320
329
|
"additionalProperties": false,
|
|
@@ -231,12 +231,12 @@
|
|
|
231
231
|
"mcp_injection": {
|
|
232
232
|
"type": "boolean",
|
|
233
233
|
"default": false,
|
|
234
|
-
"description": "The adapter can inject engine-owned MCP servers into the harness sandbox (browser tool, delegation belt); false =
|
|
234
|
+
"description": "The adapter can inject engine-owned MCP servers into the harness sandbox (browser tool, delegation belt); false = browser MCP is refused and Delegate degrades to ordinary Agent with a durable typed receipt."
|
|
235
235
|
},
|
|
236
236
|
"mcp_injection_requires_full_access": {
|
|
237
237
|
"type": "boolean",
|
|
238
238
|
"default": false,
|
|
239
|
-
"description": "An injected MCP server can only reach the daemon (belt) at full access; below it the harness sandbox cancels the call. true =>
|
|
239
|
+
"description": "An injected MCP server can only reach the daemon (belt) at full access; below it the harness sandbox cancels the call. true => Delegate below full access degrades to ordinary Agent with a durable typed receipt."
|
|
240
240
|
}
|
|
241
241
|
},
|
|
242
242
|
"additionalProperties": false,
|
|
@@ -249,12 +249,12 @@
|
|
|
249
249
|
"mcp_injection": {
|
|
250
250
|
"type": "boolean",
|
|
251
251
|
"default": false,
|
|
252
|
-
"description": "The adapter can inject engine-owned MCP servers into the harness sandbox (browser tool, delegation belt); false =
|
|
252
|
+
"description": "The adapter can inject engine-owned MCP servers into the harness sandbox (browser tool, delegation belt); false = browser MCP is refused and Delegate degrades to ordinary Agent with a durable typed receipt."
|
|
253
253
|
},
|
|
254
254
|
"mcp_injection_requires_full_access": {
|
|
255
255
|
"type": "boolean",
|
|
256
256
|
"default": false,
|
|
257
|
-
"description": "An injected MCP server can only reach the daemon (belt) at full access; below it the harness sandbox cancels the call. true =>
|
|
257
|
+
"description": "An injected MCP server can only reach the daemon (belt) at full access; below it the harness sandbox cancels the call. true => Delegate below full access degrades to ordinary Agent with a durable typed receipt."
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
260
|
"additionalProperties": false,
|
|
@@ -716,6 +716,52 @@
|
|
|
716
716
|
],
|
|
717
717
|
"default": null,
|
|
718
718
|
"description": "Strict truth-source check of configuredModel; null when no model is configured."
|
|
719
|
+
},
|
|
720
|
+
"delegation": {
|
|
721
|
+
"anyOf": [
|
|
722
|
+
{
|
|
723
|
+
"type": "object",
|
|
724
|
+
"properties": {
|
|
725
|
+
"available": {
|
|
726
|
+
"type": "boolean",
|
|
727
|
+
"description": "Whether this harness can receive the packaged delegation belt."
|
|
728
|
+
},
|
|
729
|
+
"reason": {
|
|
730
|
+
"type": "string",
|
|
731
|
+
"enum": [
|
|
732
|
+
"ready",
|
|
733
|
+
"runtime_unavailable",
|
|
734
|
+
"manifest_unsupported"
|
|
735
|
+
],
|
|
736
|
+
"description": "Stable reason for the current delegation capability verdict."
|
|
737
|
+
},
|
|
738
|
+
"remediation": {
|
|
739
|
+
"type": [
|
|
740
|
+
"string",
|
|
741
|
+
"null"
|
|
742
|
+
],
|
|
743
|
+
"default": null,
|
|
744
|
+
"description": "Concrete update/repair guidance when unavailable; null when ready."
|
|
745
|
+
},
|
|
746
|
+
"requiresFullAccess": {
|
|
747
|
+
"type": "boolean",
|
|
748
|
+
"default": false,
|
|
749
|
+
"description": "Whether this harness can reach the belt only under a full-access profile."
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
"required": [
|
|
753
|
+
"available",
|
|
754
|
+
"reason"
|
|
755
|
+
],
|
|
756
|
+
"additionalProperties": false,
|
|
757
|
+
"description": "Engine-owned Delegate capability projection for one harness and installed runtime."
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"type": "null"
|
|
761
|
+
}
|
|
762
|
+
],
|
|
763
|
+
"description": "Engine-owned Delegate capability for this harness and installed runtime; null on legacy status rows.",
|
|
764
|
+
"default": null
|
|
719
765
|
}
|
|
720
766
|
},
|
|
721
767
|
"required": [
|
|
@@ -473,7 +473,7 @@
|
|
|
473
473
|
"estimated": {
|
|
474
474
|
"type": "boolean",
|
|
475
475
|
"default": false,
|
|
476
|
-
"description": "True when
|
|
476
|
+
"description": "True when settled cash is estimated rather than exact; subscription valuation confidence is reported separately."
|
|
477
477
|
},
|
|
478
478
|
"source": {
|
|
479
479
|
"type": "string",
|
|
@@ -506,6 +506,77 @@
|
|
|
506
506
|
],
|
|
507
507
|
"description": "Run budget snapshot (cash + subscription valuation, QA-023c); null when unavailable.",
|
|
508
508
|
"default": null
|
|
509
|
+
},
|
|
510
|
+
"parentRunId": {
|
|
511
|
+
"type": [
|
|
512
|
+
"string",
|
|
513
|
+
"null"
|
|
514
|
+
],
|
|
515
|
+
"default": null,
|
|
516
|
+
"description": "Server-owned ordinary parent/follow-up run id, when present."
|
|
517
|
+
},
|
|
518
|
+
"delegatedFromRunId": {
|
|
519
|
+
"type": [
|
|
520
|
+
"string",
|
|
521
|
+
"null"
|
|
522
|
+
],
|
|
523
|
+
"default": null,
|
|
524
|
+
"description": "Claudexor Delegate parent id; null for ordinary runs and native subagents."
|
|
525
|
+
},
|
|
526
|
+
"delegation": {
|
|
527
|
+
"anyOf": [
|
|
528
|
+
{
|
|
529
|
+
"type": "object",
|
|
530
|
+
"properties": {
|
|
531
|
+
"requested": {
|
|
532
|
+
"type": "boolean",
|
|
533
|
+
"default": false
|
|
534
|
+
},
|
|
535
|
+
"effective": {
|
|
536
|
+
"type": "boolean",
|
|
537
|
+
"default": false
|
|
538
|
+
},
|
|
539
|
+
"used": {
|
|
540
|
+
"type": "boolean",
|
|
541
|
+
"default": false
|
|
542
|
+
},
|
|
543
|
+
"reason": {
|
|
544
|
+
"type": "string",
|
|
545
|
+
"enum": [
|
|
546
|
+
"pending",
|
|
547
|
+
"not_requested",
|
|
548
|
+
"injected_unused",
|
|
549
|
+
"used",
|
|
550
|
+
"runtime_unavailable",
|
|
551
|
+
"manifest_unsupported",
|
|
552
|
+
"access_profile_incompatible",
|
|
553
|
+
"partially_degraded",
|
|
554
|
+
"startup_failed"
|
|
555
|
+
],
|
|
556
|
+
"default": "not_requested"
|
|
557
|
+
},
|
|
558
|
+
"remediation": {
|
|
559
|
+
"anyOf": [
|
|
560
|
+
{
|
|
561
|
+
"type": "string",
|
|
562
|
+
"minLength": 1
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"type": "null"
|
|
566
|
+
}
|
|
567
|
+
],
|
|
568
|
+
"default": null
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"additionalProperties": false,
|
|
572
|
+
"description": "Engine-owned Delegate requested/effective/used receipt; surfaces project it without parsing model output."
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"type": "null"
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
"description": "Typed Delegate receipt; null when unavailable or legacy.",
|
|
579
|
+
"default": null
|
|
509
580
|
}
|
|
510
581
|
},
|
|
511
582
|
"required": [
|
|
@@ -366,6 +366,75 @@
|
|
|
366
366
|
],
|
|
367
367
|
"description": "Council membership + merge disclosure (QA-023b); null for solo/non-plan tools or deferred handles.",
|
|
368
368
|
"default": null
|
|
369
|
+
},
|
|
370
|
+
"parentRunId": {
|
|
371
|
+
"type": [
|
|
372
|
+
"string",
|
|
373
|
+
"null"
|
|
374
|
+
],
|
|
375
|
+
"default": null
|
|
376
|
+
},
|
|
377
|
+
"delegatedFromRunId": {
|
|
378
|
+
"type": [
|
|
379
|
+
"string",
|
|
380
|
+
"null"
|
|
381
|
+
],
|
|
382
|
+
"default": null
|
|
383
|
+
},
|
|
384
|
+
"delegation": {
|
|
385
|
+
"anyOf": [
|
|
386
|
+
{
|
|
387
|
+
"type": "object",
|
|
388
|
+
"properties": {
|
|
389
|
+
"requested": {
|
|
390
|
+
"type": "boolean",
|
|
391
|
+
"default": false
|
|
392
|
+
},
|
|
393
|
+
"effective": {
|
|
394
|
+
"type": "boolean",
|
|
395
|
+
"default": false
|
|
396
|
+
},
|
|
397
|
+
"used": {
|
|
398
|
+
"type": "boolean",
|
|
399
|
+
"default": false
|
|
400
|
+
},
|
|
401
|
+
"reason": {
|
|
402
|
+
"type": "string",
|
|
403
|
+
"enum": [
|
|
404
|
+
"pending",
|
|
405
|
+
"not_requested",
|
|
406
|
+
"injected_unused",
|
|
407
|
+
"used",
|
|
408
|
+
"runtime_unavailable",
|
|
409
|
+
"manifest_unsupported",
|
|
410
|
+
"access_profile_incompatible",
|
|
411
|
+
"partially_degraded",
|
|
412
|
+
"startup_failed"
|
|
413
|
+
],
|
|
414
|
+
"default": "not_requested"
|
|
415
|
+
},
|
|
416
|
+
"remediation": {
|
|
417
|
+
"anyOf": [
|
|
418
|
+
{
|
|
419
|
+
"type": "string",
|
|
420
|
+
"minLength": 1
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"type": "null"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"default": null
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"additionalProperties": false,
|
|
430
|
+
"description": "Engine-owned Delegate requested/effective/used receipt; surfaces project it without parsing model output."
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"type": "null"
|
|
434
|
+
}
|
|
435
|
+
],
|
|
436
|
+
"description": "Engine-owned Delegate requested/effective/used receipt; surfaces project it without parsing model output.",
|
|
437
|
+
"default": null
|
|
369
438
|
}
|
|
370
439
|
},
|
|
371
440
|
"required": [
|
|
@@ -37,15 +37,16 @@
|
|
|
37
37
|
"estimate_headroom",
|
|
38
38
|
"unknown_paid_in_flight",
|
|
39
39
|
"budget_overshoot",
|
|
40
|
-
"cost_unverifiable"
|
|
40
|
+
"cost_unverifiable",
|
|
41
|
+
"delegation_child_drain_timeout"
|
|
41
42
|
],
|
|
42
|
-
"description": "Machine-readable failure sub-code within a RunFailure category (
|
|
43
|
+
"description": "Machine-readable failure sub-code within a RunFailure category (budget-denial reasons and Delegate child-drain timeout)."
|
|
43
44
|
},
|
|
44
45
|
{
|
|
45
46
|
"type": "null"
|
|
46
47
|
}
|
|
47
48
|
],
|
|
48
|
-
"description": "Machine-readable failure sub-code within the category
|
|
49
|
+
"description": "Machine-readable failure sub-code within the category; null when the category alone is sufficient. Surfaces choose remediation from this, never by parsing safeMessage.",
|
|
49
50
|
"default": null
|
|
50
51
|
},
|
|
51
52
|
"harnessId": {
|
|
@@ -260,7 +260,8 @@
|
|
|
260
260
|
"type": "string",
|
|
261
261
|
"enum": [
|
|
262
262
|
"browser",
|
|
263
|
-
"path_deny"
|
|
263
|
+
"path_deny",
|
|
264
|
+
"delegation"
|
|
264
265
|
]
|
|
265
266
|
},
|
|
266
267
|
"harness_id": {
|
|
@@ -284,6 +285,7 @@
|
|
|
284
285
|
"manifest_unsupported",
|
|
285
286
|
"web_policy_off",
|
|
286
287
|
"access_profile_incompatible",
|
|
288
|
+
"runtime_unavailable",
|
|
287
289
|
"postdiff_only"
|
|
288
290
|
]
|
|
289
291
|
},
|
|
@@ -383,7 +385,7 @@
|
|
|
383
385
|
"recovered": {
|
|
384
386
|
"type": "boolean",
|
|
385
387
|
"default": false,
|
|
386
|
-
"description": "True when a later successful result
|
|
388
|
+
"description": "True when a later successful result matches this failed invocation."
|
|
387
389
|
},
|
|
388
390
|
"tool_use_id": {
|
|
389
391
|
"type": [
|
|
@@ -780,6 +782,61 @@
|
|
|
780
782
|
"default": [],
|
|
781
783
|
"description": "All selected-lane capability receipts for this run."
|
|
782
784
|
},
|
|
785
|
+
"delegation": {
|
|
786
|
+
"anyOf": [
|
|
787
|
+
{
|
|
788
|
+
"type": "object",
|
|
789
|
+
"properties": {
|
|
790
|
+
"requested": {
|
|
791
|
+
"type": "boolean",
|
|
792
|
+
"default": false
|
|
793
|
+
},
|
|
794
|
+
"effective": {
|
|
795
|
+
"type": "boolean",
|
|
796
|
+
"default": false
|
|
797
|
+
},
|
|
798
|
+
"used": {
|
|
799
|
+
"type": "boolean",
|
|
800
|
+
"default": false
|
|
801
|
+
},
|
|
802
|
+
"reason": {
|
|
803
|
+
"type": "string",
|
|
804
|
+
"enum": [
|
|
805
|
+
"pending",
|
|
806
|
+
"not_requested",
|
|
807
|
+
"injected_unused",
|
|
808
|
+
"used",
|
|
809
|
+
"runtime_unavailable",
|
|
810
|
+
"manifest_unsupported",
|
|
811
|
+
"access_profile_incompatible",
|
|
812
|
+
"partially_degraded",
|
|
813
|
+
"startup_failed"
|
|
814
|
+
],
|
|
815
|
+
"default": "not_requested"
|
|
816
|
+
},
|
|
817
|
+
"remediation": {
|
|
818
|
+
"anyOf": [
|
|
819
|
+
{
|
|
820
|
+
"type": "string",
|
|
821
|
+
"minLength": 1
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"type": "null"
|
|
825
|
+
}
|
|
826
|
+
],
|
|
827
|
+
"default": null
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"additionalProperties": false,
|
|
831
|
+
"description": "Engine-owned Delegate requested/effective/used receipt; surfaces project it without parsing model output."
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"type": "null"
|
|
835
|
+
}
|
|
836
|
+
],
|
|
837
|
+
"description": "Run-level Delegate receipt aggregated from engine injection and typed tool evidence; null on legacy artifacts that did not record it.",
|
|
838
|
+
"default": null
|
|
839
|
+
},
|
|
783
840
|
"tool_warnings_total": {
|
|
784
841
|
"type": "integer",
|
|
785
842
|
"minimum": 0,
|
|
@@ -948,6 +1005,8 @@
|
|
|
948
1005
|
"quality_tier",
|
|
949
1006
|
"expiring_quota_slack",
|
|
950
1007
|
"all_incremental_cash_unknown",
|
|
1008
|
+
"delegate_effective_first",
|
|
1009
|
+
"explicit_primary",
|
|
951
1010
|
"declared_order"
|
|
952
1011
|
],
|
|
953
1012
|
"description": "Typed decisive reason the pool ranked the way it did (QA-034)."
|