@cat-factory/contracts 0.52.0 → 0.54.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.
@@ -1010,6 +1010,33 @@ export type GateStepState = v.InferOutput<typeof gateStepStateSchema>;
1010
1010
  * - `phase: 'fixing'` — a Fixer job is in flight; on completion the step returns to
1011
1011
  * `testing` and a fresh Tester job is dispatched.
1012
1012
  */
1013
+ /**
1014
+ * One round of the Tester→Fixer loop, recorded when a `fixer` job finishes so the test
1015
+ * window can show what each fixer attempt set out to fix and how it ended — the analogue of
1016
+ * a polling gate's {@link gateAttemptSchema}, since a fixer run is otherwise an opaque
1017
+ * sub-job with no surface of its own (only a bare `attempts` count).
1018
+ */
1019
+ export declare const testerAttemptSchema: v.ObjectSchema<{
1020
+ /** 1-based fixer round (matches `attempts` after the fixer for this round was dispatched). */
1021
+ readonly attempt: v.NumberSchema<undefined>;
1022
+ /** Epoch ms when the fixer job finished. */
1023
+ readonly at: v.NumberSchema<undefined>;
1024
+ /** Whether the fixer container finished (`completed`) or errored/was evicted (`failed`). */
1025
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
1026
+ /** The fixer's own summary (or the failure reason), naming what it changed / what failed. */
1027
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1028
+ /**
1029
+ * The concerns the fixer was handed for this round (from the Tester report that withheld
1030
+ * its greenlight), so the window can show WHAT each round tried to address — not only that
1031
+ * a round happened.
1032
+ */
1033
+ readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1034
+ readonly title: v.StringSchema<undefined>;
1035
+ readonly detail: v.StringSchema<undefined>;
1036
+ readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
1037
+ }, undefined>, undefined>, undefined>, undefined>;
1038
+ }, undefined>;
1039
+ export type TesterAttempt = v.InferOutput<typeof testerAttemptSchema>;
1013
1040
  export declare const testerStepStateSchema: v.ObjectSchema<{
1014
1041
  readonly phase: v.PicklistSchema<["testing", "fixing"], undefined>;
1015
1042
  /** How many `fixer` attempts have been dispatched so far. */
@@ -1017,7 +1044,7 @@ export declare const testerStepStateSchema: v.ObjectSchema<{
1017
1044
  /** Ceiling on fixer attempts, resolved from the task's merge preset at step start. */
1018
1045
  readonly maxAttempts: v.NumberSchema<undefined>;
1019
1046
  /** The most recent Tester report (what was tested, outcomes, concerns, greenlight). */
1020
- readonly lastReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1047
+ readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
1021
1048
  readonly greenlight: v.BooleanSchema<undefined>;
1022
1049
  readonly summary: v.StringSchema<undefined>;
1023
1050
  readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
@@ -1040,6 +1067,102 @@ export declare const testerStepStateSchema: v.ObjectSchema<{
1040
1067
  readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
1041
1068
  readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1042
1069
  }, undefined>, undefined>, undefined>;
1070
+ readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1071
+ readonly reason: v.StringSchema<undefined>;
1072
+ }, undefined>, undefined>, undefined>;
1073
+ }, undefined>, v.TransformAction<{
1074
+ greenlight: boolean;
1075
+ summary: string;
1076
+ tested: string[];
1077
+ outcomes: {
1078
+ name: string;
1079
+ status: "failed" | "passed" | "skipped";
1080
+ detail?: string | undefined;
1081
+ }[];
1082
+ concerns: {
1083
+ title: string;
1084
+ detail: string;
1085
+ severity: "critical" | "high" | "low" | "medium";
1086
+ }[];
1087
+ environment?: "ephemeral" | "local" | undefined;
1088
+ screenshots?: {
1089
+ view: string;
1090
+ artifactId: string;
1091
+ hash?: string | undefined;
1092
+ width?: number | undefined;
1093
+ height?: number | undefined;
1094
+ referenceArtifactId?: string | undefined;
1095
+ }[] | undefined;
1096
+ abort?: {
1097
+ reason: string;
1098
+ } | null | undefined;
1099
+ }, {
1100
+ greenlight: boolean;
1101
+ summary: string;
1102
+ tested: string[];
1103
+ outcomes: {
1104
+ name: string;
1105
+ status: "failed" | "passed" | "skipped";
1106
+ detail?: string | undefined;
1107
+ }[];
1108
+ concerns: {
1109
+ title: string;
1110
+ detail: string;
1111
+ severity: "critical" | "high" | "low" | "medium";
1112
+ }[];
1113
+ environment?: "ephemeral" | "local" | undefined;
1114
+ screenshots?: {
1115
+ view: string;
1116
+ artifactId: string;
1117
+ hash?: string | undefined;
1118
+ width?: number | undefined;
1119
+ height?: number | undefined;
1120
+ referenceArtifactId?: string | undefined;
1121
+ }[] | undefined;
1122
+ abort?: {
1123
+ reason: string;
1124
+ } | null | undefined;
1125
+ }>]>, undefined>, undefined>;
1126
+ /**
1127
+ * Append-only history of the `fixer` rounds this Tester step looped through, each recorded
1128
+ * when its job finished. Lets the test window surface an inspectable timeline of the fixer
1129
+ * attempts (what each addressed, how it ended) instead of only a bare `attempts` count.
1130
+ */
1131
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1132
+ /** 1-based fixer round (matches `attempts` after the fixer for this round was dispatched). */
1133
+ readonly attempt: v.NumberSchema<undefined>;
1134
+ /** Epoch ms when the fixer job finished. */
1135
+ readonly at: v.NumberSchema<undefined>;
1136
+ /** Whether the fixer container finished (`completed`) or errored/was evicted (`failed`). */
1137
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
1138
+ /** The fixer's own summary (or the failure reason), naming what it changed / what failed. */
1139
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1140
+ /**
1141
+ * The concerns the fixer was handed for this round (from the Tester report that withheld
1142
+ * its greenlight), so the window can show WHAT each round tried to address — not only that
1143
+ * a round happened.
1144
+ */
1145
+ readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1146
+ readonly title: v.StringSchema<undefined>;
1147
+ readonly detail: v.StringSchema<undefined>;
1148
+ readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
1149
+ }, undefined>, undefined>, undefined>, undefined>;
1150
+ }, undefined>, undefined>, undefined>, undefined>;
1151
+ /**
1152
+ * The most recent in-container docker-compose dependency stand-up record (local-infra
1153
+ * tester): whether the dependencies came up and the captured (redacted, bounded)
1154
+ * `docker compose up` logs. Refreshed on each Tester round (it stands the infra up anew),
1155
+ * so the test window can surface WHY local infra failed to come up — the failure-class
1156
+ * artifact the orchestrator-side provisioning logs can't see. Absent for ephemeral /
1157
+ * no-infra runs. See {@link testerInfraSetupSchema}.
1158
+ */
1159
+ readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1160
+ readonly started: v.BooleanSchema<undefined>;
1161
+ readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1162
+ readonly at: v.NumberSchema<undefined>;
1163
+ readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
1164
+ readonly logs: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1165
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1043
1166
  }, undefined>, undefined>, undefined>;
1044
1167
  }, undefined>;
1045
1168
  export type TesterStepState = v.InferOutput<typeof testerStepStateSchema>;
@@ -1071,6 +1194,39 @@ export declare const runEnvironmentSchema: v.ObjectSchema<{
1071
1194
  readonly lastError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1072
1195
  }, undefined>;
1073
1196
  export type RunEnvironment = v.InferOutput<typeof runEnvironmentSchema>;
1197
+ /**
1198
+ * The lifecycle status of the per-run container backing a container agent step:
1199
+ * `starting` (dispatching / cold-booting), `up` (running the agent's job),
1200
+ * `errored` (the container failed to start, was evicted, or its job faulted), and
1201
+ * `destroyed` (the run's container has been reclaimed). The SPA additionally derives
1202
+ * `destroyed` for a finished run's container steps (the container is reclaimed as a
1203
+ * unit when the run terminates), so the backend only ever persists the first three.
1204
+ */
1205
+ export declare const runContainerStatusSchema: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
1206
+ export type RunContainerStatus = v.InferOutput<typeof runContainerStatusSchema>;
1207
+ /**
1208
+ * The compact, non-secret projection of the per-run container a container agent step
1209
+ * runs in, so a run's details can show WHAT the container is doing and WHERE it lives
1210
+ * instead of a step's "spinning up container…" badge vanishing into a blank "working"
1211
+ * state once the container is up. Populated by the engine across the dispatch + poll
1212
+ * lifecycle of an async (container) step; only ever set on container-backed steps.
1213
+ */
1214
+ export declare const runContainerSchema: v.ObjectSchema<{
1215
+ /** The container lifecycle status; see {@link runContainerStatusSchema}. */
1216
+ readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
1217
+ /**
1218
+ * The coarse phase the agent's job is in while the container is `up` (`clone` →
1219
+ * `agent` → `push`, seeded `starting`), forwarded from the harness. Lets the details
1220
+ * distinguish "still preparing the checkout" from "the agent is making calls". Absent
1221
+ * until the first poll, or when the runner doesn't report a phase.
1222
+ */
1223
+ readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1224
+ /** Provider container/runner id (Cloudflare DO id, docker container id), when known. */
1225
+ readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1226
+ /** A reachable address for the running container (the local docker host URL), when one exists. */
1227
+ readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1228
+ }, undefined>;
1229
+ export type RunContainer = v.InferOutput<typeof runContainerSchema>;
1074
1230
  export declare const humanTestEnvironmentSchema: v.ObjectSchema<{
1075
1231
  /** The `environments` row id, so the window can fetch access creds / re-poll status. */
1076
1232
  readonly id: v.StringSchema<undefined>;
@@ -1464,7 +1620,7 @@ export declare const pipelineStepSchema: v.ObjectSchema<{
1464
1620
  /** Ceiling on fixer attempts, resolved from the task's merge preset at step start. */
1465
1621
  readonly maxAttempts: v.NumberSchema<undefined>;
1466
1622
  /** The most recent Tester report (what was tested, outcomes, concerns, greenlight). */
1467
- readonly lastReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1623
+ readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
1468
1624
  readonly greenlight: v.BooleanSchema<undefined>;
1469
1625
  readonly summary: v.StringSchema<undefined>;
1470
1626
  readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
@@ -1487,6 +1643,102 @@ export declare const pipelineStepSchema: v.ObjectSchema<{
1487
1643
  readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
1488
1644
  readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1489
1645
  }, undefined>, undefined>, undefined>;
1646
+ readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1647
+ readonly reason: v.StringSchema<undefined>;
1648
+ }, undefined>, undefined>, undefined>;
1649
+ }, undefined>, v.TransformAction<{
1650
+ greenlight: boolean;
1651
+ summary: string;
1652
+ tested: string[];
1653
+ outcomes: {
1654
+ name: string;
1655
+ status: "failed" | "passed" | "skipped";
1656
+ detail?: string | undefined;
1657
+ }[];
1658
+ concerns: {
1659
+ title: string;
1660
+ detail: string;
1661
+ severity: "critical" | "high" | "low" | "medium";
1662
+ }[];
1663
+ environment?: "ephemeral" | "local" | undefined;
1664
+ screenshots?: {
1665
+ view: string;
1666
+ artifactId: string;
1667
+ hash?: string | undefined;
1668
+ width?: number | undefined;
1669
+ height?: number | undefined;
1670
+ referenceArtifactId?: string | undefined;
1671
+ }[] | undefined;
1672
+ abort?: {
1673
+ reason: string;
1674
+ } | null | undefined;
1675
+ }, {
1676
+ greenlight: boolean;
1677
+ summary: string;
1678
+ tested: string[];
1679
+ outcomes: {
1680
+ name: string;
1681
+ status: "failed" | "passed" | "skipped";
1682
+ detail?: string | undefined;
1683
+ }[];
1684
+ concerns: {
1685
+ title: string;
1686
+ detail: string;
1687
+ severity: "critical" | "high" | "low" | "medium";
1688
+ }[];
1689
+ environment?: "ephemeral" | "local" | undefined;
1690
+ screenshots?: {
1691
+ view: string;
1692
+ artifactId: string;
1693
+ hash?: string | undefined;
1694
+ width?: number | undefined;
1695
+ height?: number | undefined;
1696
+ referenceArtifactId?: string | undefined;
1697
+ }[] | undefined;
1698
+ abort?: {
1699
+ reason: string;
1700
+ } | null | undefined;
1701
+ }>]>, undefined>, undefined>;
1702
+ /**
1703
+ * Append-only history of the `fixer` rounds this Tester step looped through, each recorded
1704
+ * when its job finished. Lets the test window surface an inspectable timeline of the fixer
1705
+ * attempts (what each addressed, how it ended) instead of only a bare `attempts` count.
1706
+ */
1707
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1708
+ /** 1-based fixer round (matches `attempts` after the fixer for this round was dispatched). */
1709
+ readonly attempt: v.NumberSchema<undefined>;
1710
+ /** Epoch ms when the fixer job finished. */
1711
+ readonly at: v.NumberSchema<undefined>;
1712
+ /** Whether the fixer container finished (`completed`) or errored/was evicted (`failed`). */
1713
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
1714
+ /** The fixer's own summary (or the failure reason), naming what it changed / what failed. */
1715
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1716
+ /**
1717
+ * The concerns the fixer was handed for this round (from the Tester report that withheld
1718
+ * its greenlight), so the window can show WHAT each round tried to address — not only that
1719
+ * a round happened.
1720
+ */
1721
+ readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1722
+ readonly title: v.StringSchema<undefined>;
1723
+ readonly detail: v.StringSchema<undefined>;
1724
+ readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
1725
+ }, undefined>, undefined>, undefined>, undefined>;
1726
+ }, undefined>, undefined>, undefined>, undefined>;
1727
+ /**
1728
+ * The most recent in-container docker-compose dependency stand-up record (local-infra
1729
+ * tester): whether the dependencies came up and the captured (redacted, bounded)
1730
+ * `docker compose up` logs. Refreshed on each Tester round (it stands the infra up anew),
1731
+ * so the test window can surface WHY local infra failed to come up — the failure-class
1732
+ * artifact the orchestrator-side provisioning logs can't see. Absent for ephemeral /
1733
+ * no-infra runs. See {@link testerInfraSetupSchema}.
1734
+ */
1735
+ readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1736
+ readonly started: v.BooleanSchema<undefined>;
1737
+ readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1738
+ readonly at: v.NumberSchema<undefined>;
1739
+ readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
1740
+ readonly logs: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1741
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1490
1742
  }, undefined>, undefined>, undefined>;
1491
1743
  }, undefined>, undefined>, undefined>;
1492
1744
  /**
@@ -1611,15 +1863,30 @@ export declare const pipelineStepSchema: v.ObjectSchema<{
1611
1863
  }, undefined>, undefined>, undefined>;
1612
1864
  }, undefined>, undefined>;
1613
1865
  /**
1614
- * True while a container-backed step is being dispatched and its per-run
1615
- * container is cold-booting i.e. before the container is up and the agent has
1616
- * begun executing. Set the moment the job is dispatched (the dispatch blocks
1617
- * until the container accepts the job, so it covers the whole boot window) and
1618
- * cleared on the first successful poll, when the container is provably up. Lets
1619
- * the board show an explicit "Spinning up container…" phase instead of a blank
1620
- * "working" state. Only ever set on async (container) steps.
1621
- */
1622
- readonly startingContainer: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1866
+ * The per-run container this async (container) step runs in its lifecycle status
1867
+ * (starting / up / errored), the agent's current phase (clone / agent / push), and
1868
+ * the container's id + reachable URL once up. Lets a run's details surface what the
1869
+ * container is doing and where it lives, so the board shows an explicit "Spinning up
1870
+ * container…" live-phase progression instead of a blank "working" state. Set the
1871
+ * moment the job is dispatched (the dispatch blocks until the container accepts the
1872
+ * job) and refined on each poll. Only ever set on async (container) steps; absent on
1873
+ * non-container steps and steps not yet dispatched. See {@link runContainerSchema}.
1874
+ */
1875
+ readonly container: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1876
+ /** The container lifecycle status; see {@link runContainerStatusSchema}. */
1877
+ readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
1878
+ /**
1879
+ * The coarse phase the agent's job is in while the container is `up` (`clone` →
1880
+ * `agent` → `push`, seeded `starting`), forwarded from the harness. Lets the details
1881
+ * distinguish "still preparing the checkout" from "the agent is making calls". Absent
1882
+ * until the first poll, or when the runner doesn't report a phase.
1883
+ */
1884
+ readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1885
+ /** Provider container/runner id (Cloudflare DO id, docker container id), when known. */
1886
+ readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1887
+ /** A reachable address for the running container (the local docker host URL), when one exists. */
1888
+ readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1889
+ }, undefined>, undefined>, undefined>;
1623
1890
  readonly decision: v.NullableSchema<v.ObjectSchema<{
1624
1891
  readonly id: v.StringSchema<undefined>;
1625
1892
  readonly question: v.StringSchema<undefined>;
@@ -2125,7 +2392,7 @@ export declare const executionInstanceSchema: v.ObjectSchema<{
2125
2392
  /** Ceiling on fixer attempts, resolved from the task's merge preset at step start. */
2126
2393
  readonly maxAttempts: v.NumberSchema<undefined>;
2127
2394
  /** The most recent Tester report (what was tested, outcomes, concerns, greenlight). */
2128
- readonly lastReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
2395
+ readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
2129
2396
  readonly greenlight: v.BooleanSchema<undefined>;
2130
2397
  readonly summary: v.StringSchema<undefined>;
2131
2398
  readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
@@ -2148,6 +2415,102 @@ export declare const executionInstanceSchema: v.ObjectSchema<{
2148
2415
  readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
2149
2416
  readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2150
2417
  }, undefined>, undefined>, undefined>;
2418
+ readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
2419
+ readonly reason: v.StringSchema<undefined>;
2420
+ }, undefined>, undefined>, undefined>;
2421
+ }, undefined>, v.TransformAction<{
2422
+ greenlight: boolean;
2423
+ summary: string;
2424
+ tested: string[];
2425
+ outcomes: {
2426
+ name: string;
2427
+ status: "failed" | "passed" | "skipped";
2428
+ detail?: string | undefined;
2429
+ }[];
2430
+ concerns: {
2431
+ title: string;
2432
+ detail: string;
2433
+ severity: "critical" | "high" | "low" | "medium";
2434
+ }[];
2435
+ environment?: "ephemeral" | "local" | undefined;
2436
+ screenshots?: {
2437
+ view: string;
2438
+ artifactId: string;
2439
+ hash?: string | undefined;
2440
+ width?: number | undefined;
2441
+ height?: number | undefined;
2442
+ referenceArtifactId?: string | undefined;
2443
+ }[] | undefined;
2444
+ abort?: {
2445
+ reason: string;
2446
+ } | null | undefined;
2447
+ }, {
2448
+ greenlight: boolean;
2449
+ summary: string;
2450
+ tested: string[];
2451
+ outcomes: {
2452
+ name: string;
2453
+ status: "failed" | "passed" | "skipped";
2454
+ detail?: string | undefined;
2455
+ }[];
2456
+ concerns: {
2457
+ title: string;
2458
+ detail: string;
2459
+ severity: "critical" | "high" | "low" | "medium";
2460
+ }[];
2461
+ environment?: "ephemeral" | "local" | undefined;
2462
+ screenshots?: {
2463
+ view: string;
2464
+ artifactId: string;
2465
+ hash?: string | undefined;
2466
+ width?: number | undefined;
2467
+ height?: number | undefined;
2468
+ referenceArtifactId?: string | undefined;
2469
+ }[] | undefined;
2470
+ abort?: {
2471
+ reason: string;
2472
+ } | null | undefined;
2473
+ }>]>, undefined>, undefined>;
2474
+ /**
2475
+ * Append-only history of the `fixer` rounds this Tester step looped through, each recorded
2476
+ * when its job finished. Lets the test window surface an inspectable timeline of the fixer
2477
+ * attempts (what each addressed, how it ended) instead of only a bare `attempts` count.
2478
+ */
2479
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
2480
+ /** 1-based fixer round (matches `attempts` after the fixer for this round was dispatched). */
2481
+ readonly attempt: v.NumberSchema<undefined>;
2482
+ /** Epoch ms when the fixer job finished. */
2483
+ readonly at: v.NumberSchema<undefined>;
2484
+ /** Whether the fixer container finished (`completed`) or errored/was evicted (`failed`). */
2485
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
2486
+ /** The fixer's own summary (or the failure reason), naming what it changed / what failed. */
2487
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2488
+ /**
2489
+ * The concerns the fixer was handed for this round (from the Tester report that withheld
2490
+ * its greenlight), so the window can show WHAT each round tried to address — not only that
2491
+ * a round happened.
2492
+ */
2493
+ readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
2494
+ readonly title: v.StringSchema<undefined>;
2495
+ readonly detail: v.StringSchema<undefined>;
2496
+ readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
2497
+ }, undefined>, undefined>, undefined>, undefined>;
2498
+ }, undefined>, undefined>, undefined>, undefined>;
2499
+ /**
2500
+ * The most recent in-container docker-compose dependency stand-up record (local-infra
2501
+ * tester): whether the dependencies came up and the captured (redacted, bounded)
2502
+ * `docker compose up` logs. Refreshed on each Tester round (it stands the infra up anew),
2503
+ * so the test window can surface WHY local infra failed to come up — the failure-class
2504
+ * artifact the orchestrator-side provisioning logs can't see. Absent for ephemeral /
2505
+ * no-infra runs. See {@link testerInfraSetupSchema}.
2506
+ */
2507
+ readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
2508
+ readonly started: v.BooleanSchema<undefined>;
2509
+ readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2510
+ readonly at: v.NumberSchema<undefined>;
2511
+ readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
2512
+ readonly logs: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2513
+ readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2151
2514
  }, undefined>, undefined>, undefined>;
2152
2515
  }, undefined>, undefined>, undefined>;
2153
2516
  /**
@@ -2272,15 +2635,30 @@ export declare const executionInstanceSchema: v.ObjectSchema<{
2272
2635
  }, undefined>, undefined>, undefined>;
2273
2636
  }, undefined>, undefined>;
2274
2637
  /**
2275
- * True while a container-backed step is being dispatched and its per-run
2276
- * container is cold-booting i.e. before the container is up and the agent has
2277
- * begun executing. Set the moment the job is dispatched (the dispatch blocks
2278
- * until the container accepts the job, so it covers the whole boot window) and
2279
- * cleared on the first successful poll, when the container is provably up. Lets
2280
- * the board show an explicit "Spinning up container…" phase instead of a blank
2281
- * "working" state. Only ever set on async (container) steps.
2638
+ * The per-run container this async (container) step runs in its lifecycle status
2639
+ * (starting / up / errored), the agent's current phase (clone / agent / push), and
2640
+ * the container's id + reachable URL once up. Lets a run's details surface what the
2641
+ * container is doing and where it lives, so the board shows an explicit "Spinning up
2642
+ * container…" live-phase progression instead of a blank "working" state. Set the
2643
+ * moment the job is dispatched (the dispatch blocks until the container accepts the
2644
+ * job) and refined on each poll. Only ever set on async (container) steps; absent on
2645
+ * non-container steps and steps not yet dispatched. See {@link runContainerSchema}.
2282
2646
  */
2283
- readonly startingContainer: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2647
+ readonly container: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
2648
+ /** The container lifecycle status; see {@link runContainerStatusSchema}. */
2649
+ readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
2650
+ /**
2651
+ * The coarse phase the agent's job is in while the container is `up` (`clone` →
2652
+ * `agent` → `push`, seeded `starting`), forwarded from the harness. Lets the details
2653
+ * distinguish "still preparing the checkout" from "the agent is making calls". Absent
2654
+ * until the first poll, or when the runner doesn't report a phase.
2655
+ */
2656
+ readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2657
+ /** Provider container/runner id (Cloudflare DO id, docker container id), when known. */
2658
+ readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2659
+ /** A reachable address for the running container (the local docker host URL), when one exists. */
2660
+ readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2661
+ }, undefined>, undefined>, undefined>;
2284
2662
  readonly decision: v.NullableSchema<v.ObjectSchema<{
2285
2663
  readonly id: v.StringSchema<undefined>;
2286
2664
  readonly question: v.StringSchema<undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../src/entities.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../src/entities.ts"],"names":[],"mappings":"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"}