@cat-factory/contracts 0.52.0 → 0.53.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,7 +1067,87 @@ 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>;
1043
- }, 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>;
1044
1151
  }, undefined>;
1045
1152
  export type TesterStepState = v.InferOutput<typeof testerStepStateSchema>;
1046
1153
  /**
@@ -1071,6 +1178,39 @@ export declare const runEnvironmentSchema: v.ObjectSchema<{
1071
1178
  readonly lastError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1072
1179
  }, undefined>;
1073
1180
  export type RunEnvironment = v.InferOutput<typeof runEnvironmentSchema>;
1181
+ /**
1182
+ * The lifecycle status of the per-run container backing a container agent step:
1183
+ * `starting` (dispatching / cold-booting), `up` (running the agent's job),
1184
+ * `errored` (the container failed to start, was evicted, or its job faulted), and
1185
+ * `destroyed` (the run's container has been reclaimed). The SPA additionally derives
1186
+ * `destroyed` for a finished run's container steps (the container is reclaimed as a
1187
+ * unit when the run terminates), so the backend only ever persists the first three.
1188
+ */
1189
+ export declare const runContainerStatusSchema: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
1190
+ export type RunContainerStatus = v.InferOutput<typeof runContainerStatusSchema>;
1191
+ /**
1192
+ * The compact, non-secret projection of the per-run container a container agent step
1193
+ * runs in, so a run's details can show WHAT the container is doing and WHERE it lives
1194
+ * instead of a step's "spinning up container…" badge vanishing into a blank "working"
1195
+ * state once the container is up. Populated by the engine across the dispatch + poll
1196
+ * lifecycle of an async (container) step; only ever set on container-backed steps.
1197
+ */
1198
+ export declare const runContainerSchema: v.ObjectSchema<{
1199
+ /** The container lifecycle status; see {@link runContainerStatusSchema}. */
1200
+ readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
1201
+ /**
1202
+ * The coarse phase the agent's job is in while the container is `up` (`clone` →
1203
+ * `agent` → `push`, seeded `starting`), forwarded from the harness. Lets the details
1204
+ * distinguish "still preparing the checkout" from "the agent is making calls". Absent
1205
+ * until the first poll, or when the runner doesn't report a phase.
1206
+ */
1207
+ readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1208
+ /** Provider container/runner id (Cloudflare DO id, docker container id), when known. */
1209
+ readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1210
+ /** A reachable address for the running container (the local docker host URL), when one exists. */
1211
+ readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1212
+ }, undefined>;
1213
+ export type RunContainer = v.InferOutput<typeof runContainerSchema>;
1074
1214
  export declare const humanTestEnvironmentSchema: v.ObjectSchema<{
1075
1215
  /** The `environments` row id, so the window can fetch access creds / re-poll status. */
1076
1216
  readonly id: v.StringSchema<undefined>;
@@ -1464,7 +1604,7 @@ export declare const pipelineStepSchema: v.ObjectSchema<{
1464
1604
  /** Ceiling on fixer attempts, resolved from the task's merge preset at step start. */
1465
1605
  readonly maxAttempts: v.NumberSchema<undefined>;
1466
1606
  /** The most recent Tester report (what was tested, outcomes, concerns, greenlight). */
1467
- readonly lastReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1607
+ readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
1468
1608
  readonly greenlight: v.BooleanSchema<undefined>;
1469
1609
  readonly summary: v.StringSchema<undefined>;
1470
1610
  readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
@@ -1487,7 +1627,87 @@ export declare const pipelineStepSchema: v.ObjectSchema<{
1487
1627
  readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
1488
1628
  readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1489
1629
  }, undefined>, undefined>, undefined>;
1490
- }, undefined>, undefined>, undefined>;
1630
+ readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1631
+ readonly reason: v.StringSchema<undefined>;
1632
+ }, undefined>, undefined>, undefined>;
1633
+ }, undefined>, v.TransformAction<{
1634
+ greenlight: boolean;
1635
+ summary: string;
1636
+ tested: string[];
1637
+ outcomes: {
1638
+ name: string;
1639
+ status: "failed" | "passed" | "skipped";
1640
+ detail?: string | undefined;
1641
+ }[];
1642
+ concerns: {
1643
+ title: string;
1644
+ detail: string;
1645
+ severity: "critical" | "high" | "low" | "medium";
1646
+ }[];
1647
+ environment?: "ephemeral" | "local" | undefined;
1648
+ screenshots?: {
1649
+ view: string;
1650
+ artifactId: string;
1651
+ hash?: string | undefined;
1652
+ width?: number | undefined;
1653
+ height?: number | undefined;
1654
+ referenceArtifactId?: string | undefined;
1655
+ }[] | undefined;
1656
+ abort?: {
1657
+ reason: string;
1658
+ } | null | undefined;
1659
+ }, {
1660
+ greenlight: boolean;
1661
+ summary: string;
1662
+ tested: string[];
1663
+ outcomes: {
1664
+ name: string;
1665
+ status: "failed" | "passed" | "skipped";
1666
+ detail?: string | undefined;
1667
+ }[];
1668
+ concerns: {
1669
+ title: string;
1670
+ detail: string;
1671
+ severity: "critical" | "high" | "low" | "medium";
1672
+ }[];
1673
+ environment?: "ephemeral" | "local" | undefined;
1674
+ screenshots?: {
1675
+ view: string;
1676
+ artifactId: string;
1677
+ hash?: string | undefined;
1678
+ width?: number | undefined;
1679
+ height?: number | undefined;
1680
+ referenceArtifactId?: string | undefined;
1681
+ }[] | undefined;
1682
+ abort?: {
1683
+ reason: string;
1684
+ } | null | undefined;
1685
+ }>]>, undefined>, undefined>;
1686
+ /**
1687
+ * Append-only history of the `fixer` rounds this Tester step looped through, each recorded
1688
+ * when its job finished. Lets the test window surface an inspectable timeline of the fixer
1689
+ * attempts (what each addressed, how it ended) instead of only a bare `attempts` count.
1690
+ */
1691
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1692
+ /** 1-based fixer round (matches `attempts` after the fixer for this round was dispatched). */
1693
+ readonly attempt: v.NumberSchema<undefined>;
1694
+ /** Epoch ms when the fixer job finished. */
1695
+ readonly at: v.NumberSchema<undefined>;
1696
+ /** Whether the fixer container finished (`completed`) or errored/was evicted (`failed`). */
1697
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
1698
+ /** The fixer's own summary (or the failure reason), naming what it changed / what failed. */
1699
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1700
+ /**
1701
+ * The concerns the fixer was handed for this round (from the Tester report that withheld
1702
+ * its greenlight), so the window can show WHAT each round tried to address — not only that
1703
+ * a round happened.
1704
+ */
1705
+ readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
1706
+ readonly title: v.StringSchema<undefined>;
1707
+ readonly detail: v.StringSchema<undefined>;
1708
+ readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
1709
+ }, undefined>, undefined>, undefined>, undefined>;
1710
+ }, undefined>, undefined>, undefined>, undefined>;
1491
1711
  }, undefined>, undefined>, undefined>;
1492
1712
  /**
1493
1713
  * Live state of a `human-test` gate (ephemeral env + human validation loop); see
@@ -1611,15 +1831,30 @@ export declare const pipelineStepSchema: v.ObjectSchema<{
1611
1831
  }, undefined>, undefined>, undefined>;
1612
1832
  }, undefined>, undefined>;
1613
1833
  /**
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>;
1834
+ * The per-run container this async (container) step runs in its lifecycle status
1835
+ * (starting / up / errored), the agent's current phase (clone / agent / push), and
1836
+ * the container's id + reachable URL once up. Lets a run's details surface what the
1837
+ * container is doing and where it lives, so the board shows an explicit "Spinning up
1838
+ * container…" live-phase progression instead of a blank "working" state. Set the
1839
+ * moment the job is dispatched (the dispatch blocks until the container accepts the
1840
+ * job) and refined on each poll. Only ever set on async (container) steps; absent on
1841
+ * non-container steps and steps not yet dispatched. See {@link runContainerSchema}.
1842
+ */
1843
+ readonly container: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
1844
+ /** The container lifecycle status; see {@link runContainerStatusSchema}. */
1845
+ readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
1846
+ /**
1847
+ * The coarse phase the agent's job is in while the container is `up` (`clone` →
1848
+ * `agent` → `push`, seeded `starting`), forwarded from the harness. Lets the details
1849
+ * distinguish "still preparing the checkout" from "the agent is making calls". Absent
1850
+ * until the first poll, or when the runner doesn't report a phase.
1851
+ */
1852
+ readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1853
+ /** Provider container/runner id (Cloudflare DO id, docker container id), when known. */
1854
+ readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1855
+ /** A reachable address for the running container (the local docker host URL), when one exists. */
1856
+ readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
1857
+ }, undefined>, undefined>, undefined>;
1623
1858
  readonly decision: v.NullableSchema<v.ObjectSchema<{
1624
1859
  readonly id: v.StringSchema<undefined>;
1625
1860
  readonly question: v.StringSchema<undefined>;
@@ -2125,7 +2360,7 @@ export declare const executionInstanceSchema: v.ObjectSchema<{
2125
2360
  /** Ceiling on fixer attempts, resolved from the task's merge preset at step start. */
2126
2361
  readonly maxAttempts: v.NumberSchema<undefined>;
2127
2362
  /** The most recent Tester report (what was tested, outcomes, concerns, greenlight). */
2128
- readonly lastReport: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
2363
+ readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
2129
2364
  readonly greenlight: v.BooleanSchema<undefined>;
2130
2365
  readonly summary: v.StringSchema<undefined>;
2131
2366
  readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
@@ -2148,7 +2383,87 @@ export declare const executionInstanceSchema: v.ObjectSchema<{
2148
2383
  readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
2149
2384
  readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
2150
2385
  }, undefined>, undefined>, undefined>;
2151
- }, undefined>, undefined>, undefined>;
2386
+ readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
2387
+ readonly reason: v.StringSchema<undefined>;
2388
+ }, undefined>, undefined>, undefined>;
2389
+ }, undefined>, v.TransformAction<{
2390
+ greenlight: boolean;
2391
+ summary: string;
2392
+ tested: string[];
2393
+ outcomes: {
2394
+ name: string;
2395
+ status: "failed" | "passed" | "skipped";
2396
+ detail?: string | undefined;
2397
+ }[];
2398
+ concerns: {
2399
+ title: string;
2400
+ detail: string;
2401
+ severity: "critical" | "high" | "low" | "medium";
2402
+ }[];
2403
+ environment?: "ephemeral" | "local" | undefined;
2404
+ screenshots?: {
2405
+ view: string;
2406
+ artifactId: string;
2407
+ hash?: string | undefined;
2408
+ width?: number | undefined;
2409
+ height?: number | undefined;
2410
+ referenceArtifactId?: string | undefined;
2411
+ }[] | undefined;
2412
+ abort?: {
2413
+ reason: string;
2414
+ } | null | undefined;
2415
+ }, {
2416
+ greenlight: boolean;
2417
+ summary: string;
2418
+ tested: string[];
2419
+ outcomes: {
2420
+ name: string;
2421
+ status: "failed" | "passed" | "skipped";
2422
+ detail?: string | undefined;
2423
+ }[];
2424
+ concerns: {
2425
+ title: string;
2426
+ detail: string;
2427
+ severity: "critical" | "high" | "low" | "medium";
2428
+ }[];
2429
+ environment?: "ephemeral" | "local" | undefined;
2430
+ screenshots?: {
2431
+ view: string;
2432
+ artifactId: string;
2433
+ hash?: string | undefined;
2434
+ width?: number | undefined;
2435
+ height?: number | undefined;
2436
+ referenceArtifactId?: string | undefined;
2437
+ }[] | undefined;
2438
+ abort?: {
2439
+ reason: string;
2440
+ } | null | undefined;
2441
+ }>]>, undefined>, undefined>;
2442
+ /**
2443
+ * Append-only history of the `fixer` rounds this Tester step looped through, each recorded
2444
+ * when its job finished. Lets the test window surface an inspectable timeline of the fixer
2445
+ * attempts (what each addressed, how it ended) instead of only a bare `attempts` count.
2446
+ */
2447
+ readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
2448
+ /** 1-based fixer round (matches `attempts` after the fixer for this round was dispatched). */
2449
+ readonly attempt: v.NumberSchema<undefined>;
2450
+ /** Epoch ms when the fixer job finished. */
2451
+ readonly at: v.NumberSchema<undefined>;
2452
+ /** Whether the fixer container finished (`completed`) or errored/was evicted (`failed`). */
2453
+ readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
2454
+ /** The fixer's own summary (or the failure reason), naming what it changed / what failed. */
2455
+ readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2456
+ /**
2457
+ * The concerns the fixer was handed for this round (from the Tester report that withheld
2458
+ * its greenlight), so the window can show WHAT each round tried to address — not only that
2459
+ * a round happened.
2460
+ */
2461
+ readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
2462
+ readonly title: v.StringSchema<undefined>;
2463
+ readonly detail: v.StringSchema<undefined>;
2464
+ readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
2465
+ }, undefined>, undefined>, undefined>, undefined>;
2466
+ }, undefined>, undefined>, undefined>, undefined>;
2152
2467
  }, undefined>, undefined>, undefined>;
2153
2468
  /**
2154
2469
  * Live state of a `human-test` gate (ephemeral env + human validation loop); see
@@ -2272,15 +2587,30 @@ export declare const executionInstanceSchema: v.ObjectSchema<{
2272
2587
  }, undefined>, undefined>, undefined>;
2273
2588
  }, undefined>, undefined>;
2274
2589
  /**
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.
2590
+ * The per-run container this async (container) step runs in its lifecycle status
2591
+ * (starting / up / errored), the agent's current phase (clone / agent / push), and
2592
+ * the container's id + reachable URL once up. Lets a run's details surface what the
2593
+ * container is doing and where it lives, so the board shows an explicit "Spinning up
2594
+ * container…" live-phase progression instead of a blank "working" state. Set the
2595
+ * moment the job is dispatched (the dispatch blocks until the container accepts the
2596
+ * job) and refined on each poll. Only ever set on async (container) steps; absent on
2597
+ * non-container steps and steps not yet dispatched. See {@link runContainerSchema}.
2282
2598
  */
2283
- readonly startingContainer: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
2599
+ readonly container: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
2600
+ /** The container lifecycle status; see {@link runContainerStatusSchema}. */
2601
+ readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
2602
+ /**
2603
+ * The coarse phase the agent's job is in while the container is `up` (`clone` →
2604
+ * `agent` → `push`, seeded `starting`), forwarded from the harness. Lets the details
2605
+ * distinguish "still preparing the checkout" from "the agent is making calls". Absent
2606
+ * until the first poll, or when the runner doesn't report a phase.
2607
+ */
2608
+ readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2609
+ /** Provider container/runner id (Cloudflare DO id, docker container id), when known. */
2610
+ readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2611
+ /** A reachable address for the running container (the local docker host URL), when one exists. */
2612
+ readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
2613
+ }, undefined>, undefined>, undefined>;
2284
2614
  readonly decision: v.NullableSchema<v.ObjectSchema<{
2285
2615
  readonly id: v.StringSchema<undefined>;
2286
2616
  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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"}
package/dist/entities.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as v from 'valibot';
2
2
  import { subscriptionVendorSchema } from './vendor-credentials.js';
3
3
  import { agentConfigValuesSchema } from './agent-config.js';
4
- import { testReportSchema, testEnvironmentSchema } from './testing.js';
4
+ import { testConcernSchema, testReportSchema, testEnvironmentSchema } from './testing.js';
5
5
  import { consensusStepConfigSchema, stepGatingSchema, taskEstimateSchema } from './consensus.js';
6
6
  import { followUpsStepStateSchema } from './followUp.js';
7
7
  import { cloudProviderSchema, instanceSizeSchema } from './provisioning.js';
@@ -767,6 +767,28 @@ export const gateStepStateSchema = v.object({
767
767
  * - `phase: 'fixing'` — a Fixer job is in flight; on completion the step returns to
768
768
  * `testing` and a fresh Tester job is dispatched.
769
769
  */
770
+ /**
771
+ * One round of the Tester→Fixer loop, recorded when a `fixer` job finishes so the test
772
+ * window can show what each fixer attempt set out to fix and how it ended — the analogue of
773
+ * a polling gate's {@link gateAttemptSchema}, since a fixer run is otherwise an opaque
774
+ * sub-job with no surface of its own (only a bare `attempts` count).
775
+ */
776
+ export const testerAttemptSchema = v.object({
777
+ /** 1-based fixer round (matches `attempts` after the fixer for this round was dispatched). */
778
+ attempt: v.number(),
779
+ /** Epoch ms when the fixer job finished. */
780
+ at: v.number(),
781
+ /** Whether the fixer container finished (`completed`) or errored/was evicted (`failed`). */
782
+ outcome: v.picklist(['completed', 'failed']),
783
+ /** The fixer's own summary (or the failure reason), naming what it changed / what failed. */
784
+ summary: v.optional(v.nullable(v.string())),
785
+ /**
786
+ * The concerns the fixer was handed for this round (from the Tester report that withheld
787
+ * its greenlight), so the window can show WHAT each round tried to address — not only that
788
+ * a round happened.
789
+ */
790
+ concerns: v.optional(v.nullable(v.array(testConcernSchema))),
791
+ });
770
792
  export const testerStepStateSchema = v.object({
771
793
  phase: v.picklist(['testing', 'fixing']),
772
794
  /** How many `fixer` attempts have been dispatched so far. */
@@ -775,6 +797,12 @@ export const testerStepStateSchema = v.object({
775
797
  maxAttempts: v.number(),
776
798
  /** The most recent Tester report (what was tested, outcomes, concerns, greenlight). */
777
799
  lastReport: v.optional(v.nullable(testReportSchema)),
800
+ /**
801
+ * Append-only history of the `fixer` rounds this Tester step looped through, each recorded
802
+ * when its job finished. Lets the test window surface an inspectable timeline of the fixer
803
+ * attempts (what each addressed, how it ended) instead of only a bare `attempts` count.
804
+ */
805
+ attemptLog: v.optional(v.nullable(v.array(testerAttemptSchema))),
778
806
  });
779
807
  /**
780
808
  * The compact ephemeral-environment view a `human-test` gate carries on its step, so the
@@ -803,6 +831,37 @@ export const runEnvironmentSchema = v.object({
803
831
  /** The verbatim provider error when the environment failed/expired, else null. */
804
832
  lastError: v.optional(v.nullable(v.string())),
805
833
  });
834
+ /**
835
+ * The lifecycle status of the per-run container backing a container agent step:
836
+ * `starting` (dispatching / cold-booting), `up` (running the agent's job),
837
+ * `errored` (the container failed to start, was evicted, or its job faulted), and
838
+ * `destroyed` (the run's container has been reclaimed). The SPA additionally derives
839
+ * `destroyed` for a finished run's container steps (the container is reclaimed as a
840
+ * unit when the run terminates), so the backend only ever persists the first three.
841
+ */
842
+ export const runContainerStatusSchema = v.picklist(['starting', 'up', 'errored', 'destroyed']);
843
+ /**
844
+ * The compact, non-secret projection of the per-run container a container agent step
845
+ * runs in, so a run's details can show WHAT the container is doing and WHERE it lives
846
+ * instead of a step's "spinning up container…" badge vanishing into a blank "working"
847
+ * state once the container is up. Populated by the engine across the dispatch + poll
848
+ * lifecycle of an async (container) step; only ever set on container-backed steps.
849
+ */
850
+ export const runContainerSchema = v.object({
851
+ /** The container lifecycle status; see {@link runContainerStatusSchema}. */
852
+ status: runContainerStatusSchema,
853
+ /**
854
+ * The coarse phase the agent's job is in while the container is `up` (`clone` →
855
+ * `agent` → `push`, seeded `starting`), forwarded from the harness. Lets the details
856
+ * distinguish "still preparing the checkout" from "the agent is making calls". Absent
857
+ * until the first poll, or when the runner doesn't report a phase.
858
+ */
859
+ phase: v.optional(v.nullable(v.string())),
860
+ /** Provider container/runner id (Cloudflare DO id, docker container id), when known. */
861
+ id: v.optional(v.nullable(v.string())),
862
+ /** A reachable address for the running container (the local docker host URL), when one exists. */
863
+ url: v.optional(v.nullable(v.string())),
864
+ });
806
865
  export const humanTestEnvironmentSchema = v.object({
807
866
  /** The `environments` row id, so the window can fetch access creds / re-poll status. */
808
867
  id: v.string(),
@@ -1010,15 +1069,16 @@ export const pipelineStepSchema = v.object({
1010
1069
  /** Live subtask counts while an async (container) step runs; see {@link stepSubtasksSchema}. */
1011
1070
  subtasks: v.optional(stepSubtasksSchema),
1012
1071
  /**
1013
- * True while a container-backed step is being dispatched and its per-run
1014
- * container is cold-booting i.e. before the container is up and the agent has
1015
- * begun executing. Set the moment the job is dispatched (the dispatch blocks
1016
- * until the container accepts the job, so it covers the whole boot window) and
1017
- * cleared on the first successful poll, when the container is provably up. Lets
1018
- * the board show an explicit "Spinning up container…" phase instead of a blank
1019
- * "working" state. Only ever set on async (container) steps.
1072
+ * The per-run container this async (container) step runs in its lifecycle status
1073
+ * (starting / up / errored), the agent's current phase (clone / agent / push), and
1074
+ * the container's id + reachable URL once up. Lets a run's details surface what the
1075
+ * container is doing and where it lives, so the board shows an explicit "Spinning up
1076
+ * container…" live-phase progression instead of a blank "working" state. Set the
1077
+ * moment the job is dispatched (the dispatch blocks until the container accepts the
1078
+ * job) and refined on each poll. Only ever set on async (container) steps; absent on
1079
+ * non-container steps and steps not yet dispatched. See {@link runContainerSchema}.
1020
1080
  */
1021
- startingContainer: v.optional(v.boolean()),
1081
+ container: v.optional(v.nullable(runContainerSchema)),
1022
1082
  decision: v.nullable(decisionSchema),
1023
1083
  /**
1024
1084
  * Whether a human approval gate fires after this step completes. Copied from