@claudexor/schema 3.9.2 → 3.9.5
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 +8 -0
- package/dist/agent-capabilities.d.ts.map +1 -1
- package/dist/agent-capabilities.js +2 -1
- package/dist/agent-capabilities.js.map +1 -1
- package/dist/cancel-reason.d.ts +13 -0
- package/dist/cancel-reason.d.ts.map +1 -0
- package/dist/cancel-reason.js +16 -0
- package/dist/cancel-reason.js.map +1 -0
- package/dist/control-harness-list.d.ts +11 -0
- package/dist/control-harness-list.d.ts.map +1 -1
- package/dist/control-operation-responses.d.ts +7 -7
- package/dist/control-run-detail.d.ts +38 -28
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control-timeline.d.ts +54 -0
- package/dist/control-timeline.d.ts.map +1 -0
- package/dist/control-timeline.js +50 -0
- package/dist/control-timeline.js.map +1 -0
- package/dist/control.d.ts +35 -72
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +6 -37
- package/dist/control.js.map +1 -1
- package/dist/credential-profile-snapshot.d.ts +22 -0
- package/dist/credential-profile-snapshot.d.ts.map +1 -1
- package/dist/decision.d.ts +9 -9
- package/dist/decision.d.ts.map +1 -1
- package/dist/decision.js +6 -0
- package/dist/decision.js.map +1 -1
- package/dist/harness.d.ts +17 -0
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +7 -0
- 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/mcp-run-result.d.ts +24 -24
- package/dist/readiness.d.ts +9 -0
- package/dist/readiness.d.ts.map +1 -1
- package/dist/run-facts.d.ts +5 -5
- package/dist/run-facts.d.ts.map +1 -1
- package/dist/run-facts.js +6 -1
- package/dist/run-facts.js.map +1 -1
- package/dist/status-projection.d.ts +6 -3
- package/dist/status-projection.d.ts.map +1 -1
- package/dist/status-projection.js +24 -6
- package/dist/status-projection.js.map +1 -1
- package/dist/telemetry.d.ts +7 -7
- package/generated/AgentCapabilityCatalog.schema.json +10 -0
- package/generated/ControlCredentialProfilesQueryResponse.schema.json +10 -0
- package/generated/ControlCredentialProfilesSnapshotResponse.schema.json +10 -0
- package/generated/ControlHarnessListResponse.schema.json +10 -0
- package/generated/ControlRunControlRequest.schema.json +8 -0
- package/generated/ControlRunDetail.schema.json +24 -1
- package/generated/ControlRunListResponse.schema.json +2 -0
- package/generated/ControlRunSummary.schema.json +2 -0
- package/generated/ControlThreadDetail.schema.json +2 -0
- package/generated/DecisionRecord.schema.json +2 -0
- package/generated/HarnessManifest.schema.json +10 -0
- package/generated/HarnessStatusDto.schema.json +10 -0
- package/generated/McpRunHandleResult.schema.json +2 -0
- package/generated/McpRunToolResult.schema.json +2 -0
- package/generated/RunControl.schema.json +8 -0
- package/generated/RunFacts.schema.json +2 -0
- package/generated/RunTelemetry.schema.json +2 -0
- package/package.json +2 -2
|
@@ -94,6 +94,7 @@ export declare const CatalogHarness: z.ZodObject<{
|
|
|
94
94
|
effortLevels: z.ZodArray<z.ZodString, "many">;
|
|
95
95
|
accessProfilesSupported: z.ZodArray<z.ZodEnum<["readonly", "workspace_write", "full", "inherit_native"]>, "many">;
|
|
96
96
|
readonlyMechanism: z.ZodEnum<["fs_sandbox", "permission_deny", "tool_allowlist", "none"]>;
|
|
97
|
+
writeMechanism: z.ZodDefault<z.ZodEnum<["fs_sandbox", "tool_policy", "none"]>>;
|
|
97
98
|
delegation: z.ZodEffects<z.ZodObject<{
|
|
98
99
|
available: z.ZodBoolean;
|
|
99
100
|
reason: z.ZodEnum<["ready", "runtime_unavailable", "manifest_unsupported"]>;
|
|
@@ -154,6 +155,7 @@ export declare const CatalogHarness: z.ZodObject<{
|
|
|
154
155
|
effortLevels: string[];
|
|
155
156
|
accessProfilesSupported: ("full" | "inherit_native" | "readonly" | "workspace_write")[];
|
|
156
157
|
readonlyMechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
158
|
+
writeMechanism: "fs_sandbox" | "none" | "tool_policy";
|
|
157
159
|
delegation: {
|
|
158
160
|
available: boolean;
|
|
159
161
|
reason: "manifest_unsupported" | "ready" | "runtime_unavailable";
|
|
@@ -190,6 +192,7 @@ export declare const CatalogHarness: z.ZodObject<{
|
|
|
190
192
|
effortLevels: string[];
|
|
191
193
|
accessProfilesSupported: ("full" | "inherit_native" | "readonly" | "workspace_write")[];
|
|
192
194
|
readonlyMechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
195
|
+
writeMechanism?: "fs_sandbox" | "none" | "tool_policy" | undefined;
|
|
193
196
|
delegation: {
|
|
194
197
|
available: boolean;
|
|
195
198
|
reason: "manifest_unsupported" | "ready" | "runtime_unavailable";
|
|
@@ -322,6 +325,7 @@ export declare const AgentCapabilityCatalog: z.ZodObject<{
|
|
|
322
325
|
effortLevels: z.ZodArray<z.ZodString, "many">;
|
|
323
326
|
accessProfilesSupported: z.ZodArray<z.ZodEnum<["readonly", "workspace_write", "full", "inherit_native"]>, "many">;
|
|
324
327
|
readonlyMechanism: z.ZodEnum<["fs_sandbox", "permission_deny", "tool_allowlist", "none"]>;
|
|
328
|
+
writeMechanism: z.ZodDefault<z.ZodEnum<["fs_sandbox", "tool_policy", "none"]>>;
|
|
325
329
|
delegation: z.ZodEffects<z.ZodObject<{
|
|
326
330
|
available: z.ZodBoolean;
|
|
327
331
|
reason: z.ZodEnum<["ready", "runtime_unavailable", "manifest_unsupported"]>;
|
|
@@ -382,6 +386,7 @@ export declare const AgentCapabilityCatalog: z.ZodObject<{
|
|
|
382
386
|
effortLevels: string[];
|
|
383
387
|
accessProfilesSupported: ("full" | "inherit_native" | "readonly" | "workspace_write")[];
|
|
384
388
|
readonlyMechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
389
|
+
writeMechanism: "fs_sandbox" | "none" | "tool_policy";
|
|
385
390
|
delegation: {
|
|
386
391
|
available: boolean;
|
|
387
392
|
reason: "manifest_unsupported" | "ready" | "runtime_unavailable";
|
|
@@ -418,6 +423,7 @@ export declare const AgentCapabilityCatalog: z.ZodObject<{
|
|
|
418
423
|
effortLevels: string[];
|
|
419
424
|
accessProfilesSupported: ("full" | "inherit_native" | "readonly" | "workspace_write")[];
|
|
420
425
|
readonlyMechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
426
|
+
writeMechanism?: "fs_sandbox" | "none" | "tool_policy" | undefined;
|
|
421
427
|
delegation: {
|
|
422
428
|
available: boolean;
|
|
423
429
|
reason: "manifest_unsupported" | "ready" | "runtime_unavailable";
|
|
@@ -521,6 +527,7 @@ export declare const AgentCapabilityCatalog: z.ZodObject<{
|
|
|
521
527
|
effortLevels: string[];
|
|
522
528
|
accessProfilesSupported: ("full" | "inherit_native" | "readonly" | "workspace_write")[];
|
|
523
529
|
readonlyMechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
530
|
+
writeMechanism: "fs_sandbox" | "none" | "tool_policy";
|
|
524
531
|
delegation: {
|
|
525
532
|
available: boolean;
|
|
526
533
|
reason: "manifest_unsupported" | "ready" | "runtime_unavailable";
|
|
@@ -592,6 +599,7 @@ export declare const AgentCapabilityCatalog: z.ZodObject<{
|
|
|
592
599
|
effortLevels: string[];
|
|
593
600
|
accessProfilesSupported: ("full" | "inherit_native" | "readonly" | "workspace_write")[];
|
|
594
601
|
readonlyMechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
602
|
+
writeMechanism?: "fs_sandbox" | "none" | "tool_policy" | undefined;
|
|
595
603
|
delegation: {
|
|
596
604
|
available: boolean;
|
|
597
605
|
reason: "manifest_unsupported" | "ready" | "runtime_unavailable";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-capabilities.d.ts","sourceRoot":"","sources":["../src/agent-capabilities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAC3B,OAAO,EAAiB,QAAQ,EAAkB,MAAM,iBAAiB,CAAC;AAS1E;;;;;;;;GAQG;AAEH;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,8BAA8B,YACzC,UAAU,EACV,QAAQ,EACR,WAAW,EACX,SAAS,EACT,SAAS,EACT,aAAa,EACb,oBAAoB,CACZ,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAI9E,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAmBkE,CAAC;AACnG,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"agent-capabilities.d.ts","sourceRoot":"","sources":["../src/agent-capabilities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAC3B,OAAO,EAAiB,QAAQ,EAAkB,MAAM,iBAAiB,CAAC;AAS1E;;;;;;;;GAQG;AAEH;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,8BAA8B,YACzC,UAAU,EACV,QAAQ,EACR,WAAW,EACX,SAAS,EACT,SAAS,EACT,aAAa,EACb,oBAAoB,CACZ,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAI9E,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAmBkE,CAAC;AACnG,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8DsD,CAAC;AAClF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;EAe3B,CAAC;AACJ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;EAyBjC,CAAC;AACJ,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,0BAA0B;;;;;;;;;;;;EAQ4C,CAAC;AACpF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAEpF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2ChC,CAAC;AACJ,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod/v3";
|
|
2
2
|
import { AccessProfile, ModeKind, ProviderFamily } from "./primitives.js";
|
|
3
|
-
import { AdapterStatus, EffortHint, ReadonlyMechanism } from "./harness.js";
|
|
3
|
+
import { AdapterStatus, EffortHint, ReadonlyMechanism, WriteMechanism } from "./harness.js";
|
|
4
4
|
import { WorkspaceMode } from "./thread.js";
|
|
5
5
|
import { AttachmentInputClass } from "./attachment.js";
|
|
6
6
|
import { OutputSchemaDialect } from "./output-schema-dialect.js";
|
|
@@ -110,6 +110,7 @@ export const CatalogHarness = z
|
|
|
110
110
|
.array(AccessProfile)
|
|
111
111
|
.describe("Access profiles the adapter can enforce."),
|
|
112
112
|
readonlyMechanism: ReadonlyMechanism.describe("HOW read-only is enforced (fs_sandbox | permission_deny | tool_allowlist | none) — none means read-only intent is advisory for this harness."),
|
|
113
|
+
writeMechanism: WriteMechanism.default("none").describe("HOW workspace_write is confined (fs_sandbox | tool_policy | none) — tool_policy means an allowed shell is unconfined (no FS/network fence); consumers choosing lanes by confinement read THIS field, never a harness name."),
|
|
113
114
|
delegation: DelegationCapability.describe("Whether this installed runtime can offer Delegate through this harness."),
|
|
114
115
|
setupLogin: SetupLoginCapability.nullable()
|
|
115
116
|
.optional()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-capabilities.js","sourceRoot":"","sources":["../src/agent-capabilities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAC3B,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAC1E,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"agent-capabilities.js","sourceRoot":"","sources":["../src/agent-capabilities.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** The closed cancellation-class vocabulary a run control may carry.
|
|
2
|
+
*
|
|
3
|
+
* Every hop of the cancel chain types against it, and BOTH ingress boundaries
|
|
4
|
+
* validate: RunControl's zod enum at the HTTP route and
|
|
5
|
+
* `normalizeCancelReasonCode` at the raw daemon RPC — an unvalidated string
|
|
6
|
+
* reaching AbortController.abort() forged wall_clock_exceeded terminals and
|
|
7
|
+
* leaked raw text into final/summary.md. Absent code coerces downstream to
|
|
8
|
+
* user_cancelled (wire compatibility).
|
|
9
|
+
*/
|
|
10
|
+
export declare const CANCEL_REASON_CODES: readonly ["user_cancelled", "host_cancelled", "owner_task_gone"];
|
|
11
|
+
export type CancelReasonCode = (typeof CANCEL_REASON_CODES)[number];
|
|
12
|
+
export declare function normalizeCancelReasonCode(value: unknown): CancelReasonCode | undefined;
|
|
13
|
+
//# sourceMappingURL=cancel-reason.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancel-reason.d.ts","sourceRoot":"","sources":["../src/cancel-reason.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,eAAO,MAAM,mBAAmB,YAAI,gBAAgB,EAAE,gBAAgB,EAAE,iBAAiB,CAAU,CAAC;AACpG,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,CAAC,CAAC;AAEpE,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,OAAO,GAAG,gBAAgB,GAAG,SAAS,CAItF"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/** The closed cancellation-class vocabulary a run control may carry.
|
|
2
|
+
*
|
|
3
|
+
* Every hop of the cancel chain types against it, and BOTH ingress boundaries
|
|
4
|
+
* validate: RunControl's zod enum at the HTTP route and
|
|
5
|
+
* `normalizeCancelReasonCode` at the raw daemon RPC — an unvalidated string
|
|
6
|
+
* reaching AbortController.abort() forged wall_clock_exceeded terminals and
|
|
7
|
+
* leaked raw text into final/summary.md. Absent code coerces downstream to
|
|
8
|
+
* user_cancelled (wire compatibility).
|
|
9
|
+
*/
|
|
10
|
+
export const CANCEL_REASON_CODES = ["user_cancelled", "host_cancelled", "owner_task_gone"];
|
|
11
|
+
export function normalizeCancelReasonCode(value) {
|
|
12
|
+
return typeof value === "string" && CANCEL_REASON_CODES.includes(value)
|
|
13
|
+
? value
|
|
14
|
+
: undefined;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=cancel-reason.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancel-reason.js","sourceRoot":"","sources":["../src/cancel-reason.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,gBAAgB,EAAE,gBAAgB,EAAE,iBAAiB,CAAU,CAAC;AAGpG,MAAM,UAAU,yBAAyB,CAAC,KAAc;IACtD,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAK,mBAAyC,CAAC,QAAQ,CAAC,KAAK,CAAC;QAC5F,CAAC,CAAE,KAA0B;QAC7B,CAAC,CAAC,SAAS,CAAC;AAChB,CAAC"}
|
|
@@ -135,10 +135,13 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
135
135
|
}>>;
|
|
136
136
|
access_control: z.ZodDefault<z.ZodObject<{
|
|
137
137
|
readonly_mechanism: z.ZodDefault<z.ZodEnum<["fs_sandbox", "permission_deny", "tool_allowlist", "none"]>>;
|
|
138
|
+
write_mechanism: z.ZodDefault<z.ZodEnum<["fs_sandbox", "tool_policy", "none"]>>;
|
|
138
139
|
}, "strip", z.ZodTypeAny, {
|
|
139
140
|
readonly_mechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
141
|
+
write_mechanism: "fs_sandbox" | "none" | "tool_policy";
|
|
140
142
|
}, {
|
|
141
143
|
readonly_mechanism?: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist" | undefined;
|
|
144
|
+
write_mechanism?: "fs_sandbox" | "none" | "tool_policy" | undefined;
|
|
142
145
|
}>>;
|
|
143
146
|
isolation: z.ZodDefault<z.ZodObject<{
|
|
144
147
|
supported_containment: z.ZodDefault<z.ZodArray<z.ZodEnum<["env_or_file_injection", "scoped_home_keychain_bridge", "private_per_profile_keychain", "host_user_context", "process_sandbox", "container"]>, "many">>;
|
|
@@ -191,6 +194,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
191
194
|
};
|
|
192
195
|
access_control: {
|
|
193
196
|
readonly_mechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
197
|
+
write_mechanism: "fs_sandbox" | "none" | "tool_policy";
|
|
194
198
|
};
|
|
195
199
|
isolation: {
|
|
196
200
|
supported_containment: ("container" | "env_or_file_injection" | "host_user_context" | "private_per_profile_keychain" | "process_sandbox" | "scoped_home_keychain_bridge")[];
|
|
@@ -227,6 +231,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
227
231
|
} | undefined;
|
|
228
232
|
access_control?: {
|
|
229
233
|
readonly_mechanism?: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist" | undefined;
|
|
234
|
+
write_mechanism?: "fs_sandbox" | "none" | "tool_policy" | undefined;
|
|
230
235
|
} | undefined;
|
|
231
236
|
isolation?: {
|
|
232
237
|
supported_containment?: ("container" | "env_or_file_injection" | "host_user_context" | "private_per_profile_keychain" | "process_sandbox" | "scoped_home_keychain_bridge")[] | undefined;
|
|
@@ -370,6 +375,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
370
375
|
};
|
|
371
376
|
access_control: {
|
|
372
377
|
readonly_mechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
378
|
+
write_mechanism: "fs_sandbox" | "none" | "tool_policy";
|
|
373
379
|
};
|
|
374
380
|
isolation: {
|
|
375
381
|
supported_containment: ("container" | "env_or_file_injection" | "host_user_context" | "private_per_profile_keychain" | "process_sandbox" | "scoped_home_keychain_bridge")[];
|
|
@@ -445,6 +451,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
445
451
|
} | undefined;
|
|
446
452
|
access_control?: {
|
|
447
453
|
readonly_mechanism?: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist" | undefined;
|
|
454
|
+
write_mechanism?: "fs_sandbox" | "none" | "tool_policy" | undefined;
|
|
448
455
|
} | undefined;
|
|
449
456
|
isolation?: {
|
|
450
457
|
supported_containment?: ("container" | "env_or_file_injection" | "host_user_context" | "private_per_profile_keychain" | "process_sandbox" | "scoped_home_keychain_bridge")[] | undefined;
|
|
@@ -623,6 +630,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
623
630
|
};
|
|
624
631
|
access_control: {
|
|
625
632
|
readonly_mechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
633
|
+
write_mechanism: "fs_sandbox" | "none" | "tool_policy";
|
|
626
634
|
};
|
|
627
635
|
isolation: {
|
|
628
636
|
supported_containment: ("container" | "env_or_file_injection" | "host_user_context" | "private_per_profile_keychain" | "process_sandbox" | "scoped_home_keychain_bridge")[];
|
|
@@ -739,6 +747,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
739
747
|
} | undefined;
|
|
740
748
|
access_control?: {
|
|
741
749
|
readonly_mechanism?: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist" | undefined;
|
|
750
|
+
write_mechanism?: "fs_sandbox" | "none" | "tool_policy" | undefined;
|
|
742
751
|
} | undefined;
|
|
743
752
|
isolation?: {
|
|
744
753
|
supported_containment?: ("container" | "env_or_file_injection" | "host_user_context" | "private_per_profile_keychain" | "process_sandbox" | "scoped_home_keychain_bridge")[] | undefined;
|
|
@@ -873,6 +882,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
873
882
|
};
|
|
874
883
|
access_control: {
|
|
875
884
|
readonly_mechanism: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist";
|
|
885
|
+
write_mechanism: "fs_sandbox" | "none" | "tool_policy";
|
|
876
886
|
};
|
|
877
887
|
isolation: {
|
|
878
888
|
supported_containment: ("container" | "env_or_file_injection" | "host_user_context" | "private_per_profile_keychain" | "process_sandbox" | "scoped_home_keychain_bridge")[];
|
|
@@ -997,6 +1007,7 @@ export declare const ControlHarnessListResponse: z.ZodObject<{
|
|
|
997
1007
|
} | undefined;
|
|
998
1008
|
access_control?: {
|
|
999
1009
|
readonly_mechanism?: "fs_sandbox" | "none" | "permission_deny" | "tool_allowlist" | undefined;
|
|
1010
|
+
write_mechanism?: "fs_sandbox" | "none" | "tool_policy" | undefined;
|
|
1000
1011
|
} | undefined;
|
|
1001
1012
|
isolation?: {
|
|
1002
1013
|
supported_containment?: ("container" | "env_or_file_injection" | "host_user_context" | "private_per_profile_keychain" | "process_sandbox" | "scoped_home_keychain_bridge")[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-harness-list.d.ts","sourceRoot":"","sources":["../src/control-harness-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,eAAO,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"control-harness-list.d.ts","sourceRoot":"","sources":["../src/control-harness-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUI,CAAC;AAC5C,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
|
|
@@ -385,7 +385,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
385
385
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
386
386
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
387
387
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
388
|
-
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", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
388
|
+
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"]>>>;
|
|
389
389
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
390
390
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
391
391
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -424,7 +424,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
424
424
|
noChanges: boolean;
|
|
425
425
|
checks: "failed" | "not_configured" | "passed";
|
|
426
426
|
review: "approved" | "blocked" | "not_run";
|
|
427
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
427
|
+
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;
|
|
428
428
|
work_state?: {
|
|
429
429
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
430
430
|
source: "absent" | "constrained" | "validated";
|
|
@@ -439,7 +439,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
439
439
|
noChanges?: boolean | undefined;
|
|
440
440
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
441
441
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
442
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
442
|
+
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;
|
|
443
443
|
work_state?: {
|
|
444
444
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
445
445
|
source: "absent" | "constrained" | "validated";
|
|
@@ -663,7 +663,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
663
663
|
noChanges: boolean;
|
|
664
664
|
checks: "failed" | "not_configured" | "passed";
|
|
665
665
|
review: "approved" | "blocked" | "not_run";
|
|
666
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
666
|
+
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;
|
|
667
667
|
work_state?: {
|
|
668
668
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
669
669
|
source: "absent" | "constrained" | "validated";
|
|
@@ -833,7 +833,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
833
833
|
noChanges?: boolean | undefined;
|
|
834
834
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
835
835
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
836
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
836
|
+
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;
|
|
837
837
|
work_state?: {
|
|
838
838
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
839
839
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1013,7 +1013,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
1013
1013
|
noChanges: boolean;
|
|
1014
1014
|
checks: "failed" | "not_configured" | "passed";
|
|
1015
1015
|
review: "approved" | "blocked" | "not_run";
|
|
1016
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1016
|
+
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;
|
|
1017
1017
|
work_state?: {
|
|
1018
1018
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1019
1019
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1187,7 +1187,7 @@ export declare const ControlRunListResponse: z.ZodObject<{
|
|
|
1187
1187
|
noChanges?: boolean | undefined;
|
|
1188
1188
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1189
1189
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1190
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1190
|
+
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;
|
|
1191
1191
|
work_state?: {
|
|
1192
1192
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1193
1193
|
source: "absent" | "constrained" | "validated";
|