@getpaseo/server 0.1.68 → 0.1.69

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.
Files changed (101) hide show
  1. package/dist/scripts/dev-runner.js +4 -1
  2. package/dist/scripts/dev-runner.js.map +1 -1
  3. package/dist/scripts/supervisor-entrypoint.js +32 -10
  4. package/dist/scripts/supervisor-entrypoint.js.map +1 -1
  5. package/dist/scripts/supervisor.js +71 -6
  6. package/dist/scripts/supervisor.js.map +1 -1
  7. package/dist/server/server/agent/agent-storage.d.ts +2 -2
  8. package/dist/server/server/agent/mcp-server.js +1 -1
  9. package/dist/server/server/agent/mcp-server.js.map +1 -1
  10. package/dist/server/server/agent/mcp-shared.d.ts +2 -2
  11. package/dist/server/server/agent/providers/claude-agent.d.ts +2 -1
  12. package/dist/server/server/agent/providers/claude-agent.d.ts.map +1 -1
  13. package/dist/server/server/agent/providers/claude-agent.js +46 -1
  14. package/dist/server/server/agent/providers/claude-agent.js.map +1 -1
  15. package/dist/server/server/bootstrap.d.ts +2 -0
  16. package/dist/server/server/bootstrap.d.ts.map +1 -1
  17. package/dist/server/server/bootstrap.js +0 -8
  18. package/dist/server/server/bootstrap.js.map +1 -1
  19. package/dist/server/server/chat/chat-rpc-schemas.d.ts +42 -42
  20. package/dist/server/server/chat/chat-types.d.ts +6 -6
  21. package/dist/server/server/config.d.ts.map +1 -1
  22. package/dist/server/server/config.js +20 -1
  23. package/dist/server/server/config.js.map +1 -1
  24. package/dist/server/server/daemon-worker.d.ts +2 -0
  25. package/dist/server/server/daemon-worker.d.ts.map +1 -0
  26. package/dist/server/server/{index.js → daemon-worker.js} +10 -41
  27. package/dist/server/server/daemon-worker.js.map +1 -0
  28. package/dist/server/server/logger.d.ts +2 -6
  29. package/dist/server/server/logger.d.ts.map +1 -1
  30. package/dist/server/server/logger.js +28 -118
  31. package/dist/server/server/logger.js.map +1 -1
  32. package/dist/server/server/loop/rpc-schemas.d.ts +272 -272
  33. package/dist/server/server/loop-service.d.ts +50 -50
  34. package/dist/server/server/persisted-config.d.ts +18 -16
  35. package/dist/server/server/persisted-config.d.ts.map +1 -1
  36. package/dist/server/server/persisted-config.js +2 -2
  37. package/dist/server/server/persisted-config.js.map +1 -1
  38. package/dist/server/server/schedule/rpc-schemas.d.ts +52 -52
  39. package/dist/server/server/schedule/types.d.ts +12 -12
  40. package/dist/server/shared/messages.d.ts +3073 -3073
  41. package/dist/server/terminal/terminal-capture.d.ts +12 -0
  42. package/dist/server/terminal/terminal-capture.d.ts.map +1 -0
  43. package/dist/server/terminal/terminal-capture.js +43 -0
  44. package/dist/server/terminal/terminal-capture.js.map +1 -0
  45. package/dist/server/terminal/terminal-manager-factory.d.ts +2 -6
  46. package/dist/server/terminal/terminal-manager-factory.d.ts.map +1 -1
  47. package/dist/server/terminal/terminal-manager-factory.js +2 -10
  48. package/dist/server/terminal/terminal-manager-factory.js.map +1 -1
  49. package/dist/server/terminal/terminal-worker-process.js +1 -1
  50. package/dist/server/terminal/terminal-worker-process.js.map +1 -1
  51. package/dist/server/terminal/terminal-worker-protocol.d.ts +1 -1
  52. package/dist/server/terminal/terminal-worker-protocol.d.ts.map +1 -1
  53. package/dist/server/terminal/terminal.d.ts +1 -11
  54. package/dist/server/terminal/terminal.d.ts.map +1 -1
  55. package/dist/server/terminal/terminal.js +1 -42
  56. package/dist/server/terminal/terminal.js.map +1 -1
  57. package/dist/server/utils/worktree.d.ts.map +1 -1
  58. package/dist/server/utils/worktree.js +18 -43
  59. package/dist/server/utils/worktree.js.map +1 -1
  60. package/dist/src/server/agent/agent-sdk-types.js +12 -0
  61. package/dist/src/server/agent/agent-sdk-types.js.map +1 -0
  62. package/dist/src/server/agent/agent-title-limits.js +3 -0
  63. package/dist/src/server/agent/agent-title-limits.js.map +1 -0
  64. package/dist/src/server/agent/provider-launch-config.js +189 -0
  65. package/dist/src/server/agent/provider-launch-config.js.map +1 -0
  66. package/dist/src/server/agent/provider-manifest.js +186 -0
  67. package/dist/src/server/agent/provider-manifest.js.map +1 -0
  68. package/dist/src/server/chat/chat-rpc-schemas.js +103 -0
  69. package/dist/src/server/chat/chat-rpc-schemas.js.map +1 -0
  70. package/dist/src/server/chat/chat-types.js +22 -0
  71. package/dist/src/server/chat/chat-types.js.map +1 -0
  72. package/dist/src/server/loop/rpc-schemas.js +159 -0
  73. package/dist/src/server/loop/rpc-schemas.js.map +1 -0
  74. package/dist/src/server/paseo-env.js +70 -0
  75. package/dist/src/server/paseo-env.js.map +1 -0
  76. package/dist/src/server/persisted-config.js +362 -0
  77. package/dist/src/server/persisted-config.js.map +1 -0
  78. package/dist/src/server/schedule/rpc-schemas.js +112 -0
  79. package/dist/src/server/schedule/rpc-schemas.js.map +1 -0
  80. package/dist/src/server/schedule/types.js +73 -0
  81. package/dist/src/server/schedule/types.js.map +1 -0
  82. package/dist/src/shared/agent-lifecycle.js +8 -0
  83. package/dist/src/shared/agent-lifecycle.js.map +1 -0
  84. package/dist/src/shared/client-capabilities.js +4 -0
  85. package/dist/src/shared/client-capabilities.js.map +1 -0
  86. package/dist/src/shared/literal-union.js +2 -0
  87. package/dist/src/shared/literal-union.js.map +1 -0
  88. package/dist/src/shared/messages.js +3022 -0
  89. package/dist/src/shared/messages.js.map +1 -0
  90. package/dist/src/utils/executable.js +114 -0
  91. package/dist/src/utils/executable.js.map +1 -0
  92. package/dist/src/utils/paseo-config-schema.js +60 -0
  93. package/dist/src/utils/paseo-config-schema.js.map +1 -0
  94. package/dist/src/utils/spawn.js +70 -0
  95. package/dist/src/utils/spawn.js.map +1 -0
  96. package/dist/src/utils/windows-command.js +41 -0
  97. package/dist/src/utils/windows-command.js.map +1 -0
  98. package/package.json +5 -5
  99. package/dist/server/server/index.d.ts +0 -2
  100. package/dist/server/server/index.d.ts.map +0 -1
  101. package/dist/server/server/index.js.map +0 -1
@@ -7,18 +7,18 @@ export declare const LoopLogEntrySchema: z.ZodObject<{
7
7
  level: z.ZodEnum<["info", "error"]>;
8
8
  text: z.ZodString;
9
9
  }, "strip", z.ZodTypeAny, {
10
+ source: "loop" | "worker" | "verifier" | "verify-check";
10
11
  text: string;
11
12
  seq: number;
12
13
  timestamp: string;
13
14
  iteration: number | null;
14
- source: "loop" | "worker" | "verifier" | "verify-check";
15
15
  level: "error" | "info";
16
16
  }, {
17
+ source: "loop" | "worker" | "verifier" | "verify-check";
17
18
  text: string;
18
19
  seq: number;
19
20
  timestamp: string;
20
21
  iteration: number | null;
21
- source: "loop" | "worker" | "verifier" | "verify-check";
22
22
  level: "error" | "info";
23
23
  }>;
24
24
  export declare const LoopVerifyCheckResultSchema: z.ZodObject<{
@@ -31,19 +31,19 @@ export declare const LoopVerifyCheckResultSchema: z.ZodObject<{
31
31
  completedAt: z.ZodString;
32
32
  }, "strip", z.ZodTypeAny, {
33
33
  command: string;
34
- startedAt: string;
35
- exitCode: number;
36
- passed: boolean;
37
34
  stdout: string;
38
35
  stderr: string;
36
+ exitCode: number;
37
+ startedAt: string;
38
+ passed: boolean;
39
39
  completedAt: string;
40
40
  }, {
41
41
  command: string;
42
- startedAt: string;
43
- exitCode: number;
44
- passed: boolean;
45
42
  stdout: string;
46
43
  stderr: string;
44
+ exitCode: number;
45
+ startedAt: string;
46
+ passed: boolean;
47
47
  completedAt: string;
48
48
  }>;
49
49
  export declare const LoopVerifyPromptResultSchema: z.ZodObject<{
@@ -84,19 +84,19 @@ export declare const LoopIterationRecordSchema: z.ZodObject<{
84
84
  completedAt: z.ZodString;
85
85
  }, "strip", z.ZodTypeAny, {
86
86
  command: string;
87
- startedAt: string;
88
- exitCode: number;
89
- passed: boolean;
90
87
  stdout: string;
91
88
  stderr: string;
89
+ exitCode: number;
90
+ startedAt: string;
91
+ passed: boolean;
92
92
  completedAt: string;
93
93
  }, {
94
94
  command: string;
95
- startedAt: string;
96
- exitCode: number;
97
- passed: boolean;
98
95
  stdout: string;
99
96
  stderr: string;
97
+ exitCode: number;
98
+ startedAt: string;
99
+ passed: boolean;
100
100
  completedAt: string;
101
101
  }>, "many">;
102
102
  verifyPrompt: z.ZodNullable<z.ZodObject<{
@@ -120,8 +120,8 @@ export declare const LoopIterationRecordSchema: z.ZodObject<{
120
120
  }>>;
121
121
  }, "strip", z.ZodTypeAny, {
122
122
  status: "running" | "failed" | "succeeded" | "stopped";
123
- verifierAgentId: string | null;
124
123
  index: number;
124
+ verifierAgentId: string | null;
125
125
  workerAgentId: string | null;
126
126
  workerStartedAt: string;
127
127
  workerCompletedAt: string | null;
@@ -129,11 +129,11 @@ export declare const LoopIterationRecordSchema: z.ZodObject<{
129
129
  failureReason: string | null;
130
130
  verifyChecks: {
131
131
  command: string;
132
- startedAt: string;
133
- exitCode: number;
134
- passed: boolean;
135
132
  stdout: string;
136
133
  stderr: string;
134
+ exitCode: number;
135
+ startedAt: string;
136
+ passed: boolean;
137
137
  completedAt: string;
138
138
  }[];
139
139
  verifyPrompt: {
@@ -145,8 +145,8 @@ export declare const LoopIterationRecordSchema: z.ZodObject<{
145
145
  } | null;
146
146
  }, {
147
147
  status: "running" | "failed" | "succeeded" | "stopped";
148
- verifierAgentId: string | null;
149
148
  index: number;
149
+ verifierAgentId: string | null;
150
150
  workerAgentId: string | null;
151
151
  workerStartedAt: string;
152
152
  workerCompletedAt: string | null;
@@ -154,11 +154,11 @@ export declare const LoopIterationRecordSchema: z.ZodObject<{
154
154
  failureReason: string | null;
155
155
  verifyChecks: {
156
156
  command: string;
157
- startedAt: string;
158
- exitCode: number;
159
- passed: boolean;
160
157
  stdout: string;
161
158
  stderr: string;
159
+ exitCode: number;
160
+ startedAt: string;
161
+ passed: boolean;
162
162
  completedAt: string;
163
163
  }[];
164
164
  verifyPrompt: {
@@ -211,19 +211,19 @@ export declare const LoopRecordSchema: z.ZodObject<{
211
211
  completedAt: z.ZodString;
212
212
  }, "strip", z.ZodTypeAny, {
213
213
  command: string;
214
- startedAt: string;
215
- exitCode: number;
216
- passed: boolean;
217
214
  stdout: string;
218
215
  stderr: string;
216
+ exitCode: number;
217
+ startedAt: string;
218
+ passed: boolean;
219
219
  completedAt: string;
220
220
  }, {
221
221
  command: string;
222
- startedAt: string;
223
- exitCode: number;
224
- passed: boolean;
225
222
  stdout: string;
226
223
  stderr: string;
224
+ exitCode: number;
225
+ startedAt: string;
226
+ passed: boolean;
227
227
  completedAt: string;
228
228
  }>, "many">;
229
229
  verifyPrompt: z.ZodNullable<z.ZodObject<{
@@ -247,8 +247,8 @@ export declare const LoopRecordSchema: z.ZodObject<{
247
247
  }>>;
248
248
  }, "strip", z.ZodTypeAny, {
249
249
  status: "running" | "failed" | "succeeded" | "stopped";
250
- verifierAgentId: string | null;
251
250
  index: number;
251
+ verifierAgentId: string | null;
252
252
  workerAgentId: string | null;
253
253
  workerStartedAt: string;
254
254
  workerCompletedAt: string | null;
@@ -256,11 +256,11 @@ export declare const LoopRecordSchema: z.ZodObject<{
256
256
  failureReason: string | null;
257
257
  verifyChecks: {
258
258
  command: string;
259
- startedAt: string;
260
- exitCode: number;
261
- passed: boolean;
262
259
  stdout: string;
263
260
  stderr: string;
261
+ exitCode: number;
262
+ startedAt: string;
263
+ passed: boolean;
264
264
  completedAt: string;
265
265
  }[];
266
266
  verifyPrompt: {
@@ -272,8 +272,8 @@ export declare const LoopRecordSchema: z.ZodObject<{
272
272
  } | null;
273
273
  }, {
274
274
  status: "running" | "failed" | "succeeded" | "stopped";
275
- verifierAgentId: string | null;
276
275
  index: number;
276
+ verifierAgentId: string | null;
277
277
  workerAgentId: string | null;
278
278
  workerStartedAt: string;
279
279
  workerCompletedAt: string | null;
@@ -281,11 +281,11 @@ export declare const LoopRecordSchema: z.ZodObject<{
281
281
  failureReason: string | null;
282
282
  verifyChecks: {
283
283
  command: string;
284
- startedAt: string;
285
- exitCode: number;
286
- passed: boolean;
287
284
  stdout: string;
288
285
  stderr: string;
286
+ exitCode: number;
287
+ startedAt: string;
288
+ passed: boolean;
289
289
  completedAt: string;
290
290
  }[];
291
291
  verifyPrompt: {
@@ -304,18 +304,18 @@ export declare const LoopRecordSchema: z.ZodObject<{
304
304
  level: z.ZodEnum<["info", "error"]>;
305
305
  text: z.ZodString;
306
306
  }, "strip", z.ZodTypeAny, {
307
+ source: "loop" | "worker" | "verifier" | "verify-check";
307
308
  text: string;
308
309
  seq: number;
309
310
  timestamp: string;
310
311
  iteration: number | null;
311
- source: "loop" | "worker" | "verifier" | "verify-check";
312
312
  level: "error" | "info";
313
313
  }, {
314
+ source: "loop" | "worker" | "verifier" | "verify-check";
314
315
  text: string;
315
316
  seq: number;
316
317
  timestamp: string;
317
318
  iteration: number | null;
318
- source: "loop" | "worker" | "verifier" | "verify-check";
319
319
  level: "error" | "info";
320
320
  }>, "many">;
321
321
  nextLogSeq: z.ZodNumber;
@@ -326,8 +326,8 @@ export declare const LoopRecordSchema: z.ZodObject<{
326
326
  name: string | null;
327
327
  status: "running" | "failed" | "succeeded" | "stopped";
328
328
  cwd: string;
329
- id: string;
330
329
  createdAt: string;
330
+ id: string;
331
331
  updatedAt: string;
332
332
  provider: string;
333
333
  model: string | null;
@@ -347,8 +347,8 @@ export declare const LoopRecordSchema: z.ZodObject<{
347
347
  stopRequestedAt: string | null;
348
348
  iterations: {
349
349
  status: "running" | "failed" | "succeeded" | "stopped";
350
- verifierAgentId: string | null;
351
350
  index: number;
351
+ verifierAgentId: string | null;
352
352
  workerAgentId: string | null;
353
353
  workerStartedAt: string;
354
354
  workerCompletedAt: string | null;
@@ -356,11 +356,11 @@ export declare const LoopRecordSchema: z.ZodObject<{
356
356
  failureReason: string | null;
357
357
  verifyChecks: {
358
358
  command: string;
359
- startedAt: string;
360
- exitCode: number;
361
- passed: boolean;
362
359
  stdout: string;
363
360
  stderr: string;
361
+ exitCode: number;
362
+ startedAt: string;
363
+ passed: boolean;
364
364
  completedAt: string;
365
365
  }[];
366
366
  verifyPrompt: {
@@ -372,11 +372,11 @@ export declare const LoopRecordSchema: z.ZodObject<{
372
372
  } | null;
373
373
  }[];
374
374
  logs: {
375
+ source: "loop" | "worker" | "verifier" | "verify-check";
375
376
  text: string;
376
377
  seq: number;
377
378
  timestamp: string;
378
379
  iteration: number | null;
379
- source: "loop" | "worker" | "verifier" | "verify-check";
380
380
  level: "error" | "info";
381
381
  }[];
382
382
  nextLogSeq: number;
@@ -387,8 +387,8 @@ export declare const LoopRecordSchema: z.ZodObject<{
387
387
  name: string | null;
388
388
  status: "running" | "failed" | "succeeded" | "stopped";
389
389
  cwd: string;
390
- id: string;
391
390
  createdAt: string;
391
+ id: string;
392
392
  updatedAt: string;
393
393
  provider: string;
394
394
  model: string | null;
@@ -408,8 +408,8 @@ export declare const LoopRecordSchema: z.ZodObject<{
408
408
  stopRequestedAt: string | null;
409
409
  iterations: {
410
410
  status: "running" | "failed" | "succeeded" | "stopped";
411
- verifierAgentId: string | null;
412
411
  index: number;
412
+ verifierAgentId: string | null;
413
413
  workerAgentId: string | null;
414
414
  workerStartedAt: string;
415
415
  workerCompletedAt: string | null;
@@ -417,11 +417,11 @@ export declare const LoopRecordSchema: z.ZodObject<{
417
417
  failureReason: string | null;
418
418
  verifyChecks: {
419
419
  command: string;
420
- startedAt: string;
421
- exitCode: number;
422
- passed: boolean;
423
420
  stdout: string;
424
421
  stderr: string;
422
+ exitCode: number;
423
+ startedAt: string;
424
+ passed: boolean;
425
425
  completedAt: string;
426
426
  }[];
427
427
  verifyPrompt: {
@@ -433,11 +433,11 @@ export declare const LoopRecordSchema: z.ZodObject<{
433
433
  } | null;
434
434
  }[];
435
435
  logs: {
436
+ source: "loop" | "worker" | "verifier" | "verify-check";
436
437
  text: string;
437
438
  seq: number;
438
439
  timestamp: string;
439
440
  iteration: number | null;
440
- source: "loop" | "worker" | "verifier" | "verify-check";
441
441
  level: "error" | "info";
442
442
  }[];
443
443
  nextLogSeq: number;
@@ -457,16 +457,16 @@ export declare const LoopListItemSchema: z.ZodObject<{
457
457
  name: string | null;
458
458
  status: "running" | "failed" | "succeeded" | "stopped";
459
459
  cwd: string;
460
- id: string;
461
460
  createdAt: string;
461
+ id: string;
462
462
  updatedAt: string;
463
463
  activeIteration: number | null;
464
464
  }, {
465
465
  name: string | null;
466
466
  status: "running" | "failed" | "succeeded" | "stopped";
467
467
  cwd: string;
468
- id: string;
469
468
  createdAt: string;
469
+ id: string;
470
470
  updatedAt: string;
471
471
  activeIteration: number | null;
472
472
  }>;
@@ -623,19 +623,19 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
623
623
  completedAt: z.ZodString;
624
624
  }, "strip", z.ZodTypeAny, {
625
625
  command: string;
626
- startedAt: string;
627
- exitCode: number;
628
- passed: boolean;
629
626
  stdout: string;
630
627
  stderr: string;
628
+ exitCode: number;
629
+ startedAt: string;
630
+ passed: boolean;
631
631
  completedAt: string;
632
632
  }, {
633
633
  command: string;
634
- startedAt: string;
635
- exitCode: number;
636
- passed: boolean;
637
634
  stdout: string;
638
635
  stderr: string;
636
+ exitCode: number;
637
+ startedAt: string;
638
+ passed: boolean;
639
639
  completedAt: string;
640
640
  }>, "many">;
641
641
  verifyPrompt: z.ZodNullable<z.ZodObject<{
@@ -659,8 +659,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
659
659
  }>>;
660
660
  }, "strip", z.ZodTypeAny, {
661
661
  status: "running" | "failed" | "succeeded" | "stopped";
662
- verifierAgentId: string | null;
663
662
  index: number;
663
+ verifierAgentId: string | null;
664
664
  workerAgentId: string | null;
665
665
  workerStartedAt: string;
666
666
  workerCompletedAt: string | null;
@@ -668,11 +668,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
668
668
  failureReason: string | null;
669
669
  verifyChecks: {
670
670
  command: string;
671
- startedAt: string;
672
- exitCode: number;
673
- passed: boolean;
674
671
  stdout: string;
675
672
  stderr: string;
673
+ exitCode: number;
674
+ startedAt: string;
675
+ passed: boolean;
676
676
  completedAt: string;
677
677
  }[];
678
678
  verifyPrompt: {
@@ -684,8 +684,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
684
684
  } | null;
685
685
  }, {
686
686
  status: "running" | "failed" | "succeeded" | "stopped";
687
- verifierAgentId: string | null;
688
687
  index: number;
688
+ verifierAgentId: string | null;
689
689
  workerAgentId: string | null;
690
690
  workerStartedAt: string;
691
691
  workerCompletedAt: string | null;
@@ -693,11 +693,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
693
693
  failureReason: string | null;
694
694
  verifyChecks: {
695
695
  command: string;
696
- startedAt: string;
697
- exitCode: number;
698
- passed: boolean;
699
696
  stdout: string;
700
697
  stderr: string;
698
+ exitCode: number;
699
+ startedAt: string;
700
+ passed: boolean;
701
701
  completedAt: string;
702
702
  }[];
703
703
  verifyPrompt: {
@@ -716,18 +716,18 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
716
716
  level: z.ZodEnum<["info", "error"]>;
717
717
  text: z.ZodString;
718
718
  }, "strip", z.ZodTypeAny, {
719
+ source: "loop" | "worker" | "verifier" | "verify-check";
719
720
  text: string;
720
721
  seq: number;
721
722
  timestamp: string;
722
723
  iteration: number | null;
723
- source: "loop" | "worker" | "verifier" | "verify-check";
724
724
  level: "error" | "info";
725
725
  }, {
726
+ source: "loop" | "worker" | "verifier" | "verify-check";
726
727
  text: string;
727
728
  seq: number;
728
729
  timestamp: string;
729
730
  iteration: number | null;
730
- source: "loop" | "worker" | "verifier" | "verify-check";
731
731
  level: "error" | "info";
732
732
  }>, "many">;
733
733
  nextLogSeq: z.ZodNumber;
@@ -738,8 +738,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
738
738
  name: string | null;
739
739
  status: "running" | "failed" | "succeeded" | "stopped";
740
740
  cwd: string;
741
- id: string;
742
741
  createdAt: string;
742
+ id: string;
743
743
  updatedAt: string;
744
744
  provider: string;
745
745
  model: string | null;
@@ -759,8 +759,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
759
759
  stopRequestedAt: string | null;
760
760
  iterations: {
761
761
  status: "running" | "failed" | "succeeded" | "stopped";
762
- verifierAgentId: string | null;
763
762
  index: number;
763
+ verifierAgentId: string | null;
764
764
  workerAgentId: string | null;
765
765
  workerStartedAt: string;
766
766
  workerCompletedAt: string | null;
@@ -768,11 +768,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
768
768
  failureReason: string | null;
769
769
  verifyChecks: {
770
770
  command: string;
771
- startedAt: string;
772
- exitCode: number;
773
- passed: boolean;
774
771
  stdout: string;
775
772
  stderr: string;
773
+ exitCode: number;
774
+ startedAt: string;
775
+ passed: boolean;
776
776
  completedAt: string;
777
777
  }[];
778
778
  verifyPrompt: {
@@ -784,11 +784,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
784
784
  } | null;
785
785
  }[];
786
786
  logs: {
787
+ source: "loop" | "worker" | "verifier" | "verify-check";
787
788
  text: string;
788
789
  seq: number;
789
790
  timestamp: string;
790
791
  iteration: number | null;
791
- source: "loop" | "worker" | "verifier" | "verify-check";
792
792
  level: "error" | "info";
793
793
  }[];
794
794
  nextLogSeq: number;
@@ -799,8 +799,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
799
799
  name: string | null;
800
800
  status: "running" | "failed" | "succeeded" | "stopped";
801
801
  cwd: string;
802
- id: string;
803
802
  createdAt: string;
803
+ id: string;
804
804
  updatedAt: string;
805
805
  provider: string;
806
806
  model: string | null;
@@ -820,8 +820,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
820
820
  stopRequestedAt: string | null;
821
821
  iterations: {
822
822
  status: "running" | "failed" | "succeeded" | "stopped";
823
- verifierAgentId: string | null;
824
823
  index: number;
824
+ verifierAgentId: string | null;
825
825
  workerAgentId: string | null;
826
826
  workerStartedAt: string;
827
827
  workerCompletedAt: string | null;
@@ -829,11 +829,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
829
829
  failureReason: string | null;
830
830
  verifyChecks: {
831
831
  command: string;
832
- startedAt: string;
833
- exitCode: number;
834
- passed: boolean;
835
832
  stdout: string;
836
833
  stderr: string;
834
+ exitCode: number;
835
+ startedAt: string;
836
+ passed: boolean;
837
837
  completedAt: string;
838
838
  }[];
839
839
  verifyPrompt: {
@@ -845,11 +845,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
845
845
  } | null;
846
846
  }[];
847
847
  logs: {
848
+ source: "loop" | "worker" | "verifier" | "verify-check";
848
849
  text: string;
849
850
  seq: number;
850
851
  timestamp: string;
851
852
  iteration: number | null;
852
- source: "loop" | "worker" | "verifier" | "verify-check";
853
853
  level: "error" | "info";
854
854
  }[];
855
855
  nextLogSeq: number;
@@ -865,8 +865,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
865
865
  name: string | null;
866
866
  status: "running" | "failed" | "succeeded" | "stopped";
867
867
  cwd: string;
868
- id: string;
869
868
  createdAt: string;
869
+ id: string;
870
870
  updatedAt: string;
871
871
  provider: string;
872
872
  model: string | null;
@@ -886,8 +886,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
886
886
  stopRequestedAt: string | null;
887
887
  iterations: {
888
888
  status: "running" | "failed" | "succeeded" | "stopped";
889
- verifierAgentId: string | null;
890
889
  index: number;
890
+ verifierAgentId: string | null;
891
891
  workerAgentId: string | null;
892
892
  workerStartedAt: string;
893
893
  workerCompletedAt: string | null;
@@ -895,11 +895,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
895
895
  failureReason: string | null;
896
896
  verifyChecks: {
897
897
  command: string;
898
- startedAt: string;
899
- exitCode: number;
900
- passed: boolean;
901
898
  stdout: string;
902
899
  stderr: string;
900
+ exitCode: number;
901
+ startedAt: string;
902
+ passed: boolean;
903
903
  completedAt: string;
904
904
  }[];
905
905
  verifyPrompt: {
@@ -911,11 +911,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
911
911
  } | null;
912
912
  }[];
913
913
  logs: {
914
+ source: "loop" | "worker" | "verifier" | "verify-check";
914
915
  text: string;
915
916
  seq: number;
916
917
  timestamp: string;
917
918
  iteration: number | null;
918
- source: "loop" | "worker" | "verifier" | "verify-check";
919
919
  level: "error" | "info";
920
920
  }[];
921
921
  nextLogSeq: number;
@@ -930,8 +930,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
930
930
  name: string | null;
931
931
  status: "running" | "failed" | "succeeded" | "stopped";
932
932
  cwd: string;
933
- id: string;
934
933
  createdAt: string;
934
+ id: string;
935
935
  updatedAt: string;
936
936
  provider: string;
937
937
  model: string | null;
@@ -951,8 +951,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
951
951
  stopRequestedAt: string | null;
952
952
  iterations: {
953
953
  status: "running" | "failed" | "succeeded" | "stopped";
954
- verifierAgentId: string | null;
955
954
  index: number;
955
+ verifierAgentId: string | null;
956
956
  workerAgentId: string | null;
957
957
  workerStartedAt: string;
958
958
  workerCompletedAt: string | null;
@@ -960,11 +960,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
960
960
  failureReason: string | null;
961
961
  verifyChecks: {
962
962
  command: string;
963
- startedAt: string;
964
- exitCode: number;
965
- passed: boolean;
966
963
  stdout: string;
967
964
  stderr: string;
965
+ exitCode: number;
966
+ startedAt: string;
967
+ passed: boolean;
968
968
  completedAt: string;
969
969
  }[];
970
970
  verifyPrompt: {
@@ -976,11 +976,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
976
976
  } | null;
977
977
  }[];
978
978
  logs: {
979
+ source: "loop" | "worker" | "verifier" | "verify-check";
979
980
  text: string;
980
981
  seq: number;
981
982
  timestamp: string;
982
983
  iteration: number | null;
983
- source: "loop" | "worker" | "verifier" | "verify-check";
984
984
  level: "error" | "info";
985
985
  }[];
986
986
  nextLogSeq: number;
@@ -998,8 +998,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
998
998
  name: string | null;
999
999
  status: "running" | "failed" | "succeeded" | "stopped";
1000
1000
  cwd: string;
1001
- id: string;
1002
1001
  createdAt: string;
1002
+ id: string;
1003
1003
  updatedAt: string;
1004
1004
  provider: string;
1005
1005
  model: string | null;
@@ -1019,8 +1019,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
1019
1019
  stopRequestedAt: string | null;
1020
1020
  iterations: {
1021
1021
  status: "running" | "failed" | "succeeded" | "stopped";
1022
- verifierAgentId: string | null;
1023
1022
  index: number;
1023
+ verifierAgentId: string | null;
1024
1024
  workerAgentId: string | null;
1025
1025
  workerStartedAt: string;
1026
1026
  workerCompletedAt: string | null;
@@ -1028,11 +1028,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
1028
1028
  failureReason: string | null;
1029
1029
  verifyChecks: {
1030
1030
  command: string;
1031
- startedAt: string;
1032
- exitCode: number;
1033
- passed: boolean;
1034
1031
  stdout: string;
1035
1032
  stderr: string;
1033
+ exitCode: number;
1034
+ startedAt: string;
1035
+ passed: boolean;
1036
1036
  completedAt: string;
1037
1037
  }[];
1038
1038
  verifyPrompt: {
@@ -1044,11 +1044,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
1044
1044
  } | null;
1045
1045
  }[];
1046
1046
  logs: {
1047
+ source: "loop" | "worker" | "verifier" | "verify-check";
1047
1048
  text: string;
1048
1049
  seq: number;
1049
1050
  timestamp: string;
1050
1051
  iteration: number | null;
1051
- source: "loop" | "worker" | "verifier" | "verify-check";
1052
1052
  level: "error" | "info";
1053
1053
  }[];
1054
1054
  nextLogSeq: number;
@@ -1066,8 +1066,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
1066
1066
  name: string | null;
1067
1067
  status: "running" | "failed" | "succeeded" | "stopped";
1068
1068
  cwd: string;
1069
- id: string;
1070
1069
  createdAt: string;
1070
+ id: string;
1071
1071
  updatedAt: string;
1072
1072
  provider: string;
1073
1073
  model: string | null;
@@ -1087,8 +1087,8 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
1087
1087
  stopRequestedAt: string | null;
1088
1088
  iterations: {
1089
1089
  status: "running" | "failed" | "succeeded" | "stopped";
1090
- verifierAgentId: string | null;
1091
1090
  index: number;
1091
+ verifierAgentId: string | null;
1092
1092
  workerAgentId: string | null;
1093
1093
  workerStartedAt: string;
1094
1094
  workerCompletedAt: string | null;
@@ -1096,11 +1096,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
1096
1096
  failureReason: string | null;
1097
1097
  verifyChecks: {
1098
1098
  command: string;
1099
- startedAt: string;
1100
- exitCode: number;
1101
- passed: boolean;
1102
1099
  stdout: string;
1103
1100
  stderr: string;
1101
+ exitCode: number;
1102
+ startedAt: string;
1103
+ passed: boolean;
1104
1104
  completedAt: string;
1105
1105
  }[];
1106
1106
  verifyPrompt: {
@@ -1112,11 +1112,11 @@ export declare const LoopRunResponseSchema: z.ZodObject<{
1112
1112
  } | null;
1113
1113
  }[];
1114
1114
  logs: {
1115
+ source: "loop" | "worker" | "verifier" | "verify-check";
1115
1116
  text: string;
1116
1117
  seq: number;
1117
1118
  timestamp: string;
1118
1119
  iteration: number | null;
1119
- source: "loop" | "worker" | "verifier" | "verify-check";
1120
1120
  level: "error" | "info";
1121
1121
  }[];
1122
1122
  nextLogSeq: number;
@@ -1142,16 +1142,16 @@ export declare const LoopListResponseSchema: z.ZodObject<{
1142
1142
  name: string | null;
1143
1143
  status: "running" | "failed" | "succeeded" | "stopped";
1144
1144
  cwd: string;
1145
- id: string;
1146
1145
  createdAt: string;
1146
+ id: string;
1147
1147
  updatedAt: string;
1148
1148
  activeIteration: number | null;
1149
1149
  }, {
1150
1150
  name: string | null;
1151
1151
  status: "running" | "failed" | "succeeded" | "stopped";
1152
1152
  cwd: string;
1153
- id: string;
1154
1153
  createdAt: string;
1154
+ id: string;
1155
1155
  updatedAt: string;
1156
1156
  activeIteration: number | null;
1157
1157
  }>, "many">;
@@ -1163,8 +1163,8 @@ export declare const LoopListResponseSchema: z.ZodObject<{
1163
1163
  name: string | null;
1164
1164
  status: "running" | "failed" | "succeeded" | "stopped";
1165
1165
  cwd: string;
1166
- id: string;
1167
1166
  createdAt: string;
1167
+ id: string;
1168
1168
  updatedAt: string;
1169
1169
  activeIteration: number | null;
1170
1170
  }[];
@@ -1175,8 +1175,8 @@ export declare const LoopListResponseSchema: z.ZodObject<{
1175
1175
  name: string | null;
1176
1176
  status: "running" | "failed" | "succeeded" | "stopped";
1177
1177
  cwd: string;
1178
- id: string;
1179
1178
  createdAt: string;
1179
+ id: string;
1180
1180
  updatedAt: string;
1181
1181
  activeIteration: number | null;
1182
1182
  }[];
@@ -1190,8 +1190,8 @@ export declare const LoopListResponseSchema: z.ZodObject<{
1190
1190
  name: string | null;
1191
1191
  status: "running" | "failed" | "succeeded" | "stopped";
1192
1192
  cwd: string;
1193
- id: string;
1194
1193
  createdAt: string;
1194
+ id: string;
1195
1195
  updatedAt: string;
1196
1196
  activeIteration: number | null;
1197
1197
  }[];
@@ -1205,8 +1205,8 @@ export declare const LoopListResponseSchema: z.ZodObject<{
1205
1205
  name: string | null;
1206
1206
  status: "running" | "failed" | "succeeded" | "stopped";
1207
1207
  cwd: string;
1208
- id: string;
1209
1208
  createdAt: string;
1209
+ id: string;
1210
1210
  updatedAt: string;
1211
1211
  activeIteration: number | null;
1212
1212
  }[];
@@ -1258,19 +1258,19 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1258
1258
  completedAt: z.ZodString;
1259
1259
  }, "strip", z.ZodTypeAny, {
1260
1260
  command: string;
1261
- startedAt: string;
1262
- exitCode: number;
1263
- passed: boolean;
1264
1261
  stdout: string;
1265
1262
  stderr: string;
1263
+ exitCode: number;
1264
+ startedAt: string;
1265
+ passed: boolean;
1266
1266
  completedAt: string;
1267
1267
  }, {
1268
1268
  command: string;
1269
- startedAt: string;
1270
- exitCode: number;
1271
- passed: boolean;
1272
1269
  stdout: string;
1273
1270
  stderr: string;
1271
+ exitCode: number;
1272
+ startedAt: string;
1273
+ passed: boolean;
1274
1274
  completedAt: string;
1275
1275
  }>, "many">;
1276
1276
  verifyPrompt: z.ZodNullable<z.ZodObject<{
@@ -1294,8 +1294,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1294
1294
  }>>;
1295
1295
  }, "strip", z.ZodTypeAny, {
1296
1296
  status: "running" | "failed" | "succeeded" | "stopped";
1297
- verifierAgentId: string | null;
1298
1297
  index: number;
1298
+ verifierAgentId: string | null;
1299
1299
  workerAgentId: string | null;
1300
1300
  workerStartedAt: string;
1301
1301
  workerCompletedAt: string | null;
@@ -1303,11 +1303,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1303
1303
  failureReason: string | null;
1304
1304
  verifyChecks: {
1305
1305
  command: string;
1306
- startedAt: string;
1307
- exitCode: number;
1308
- passed: boolean;
1309
1306
  stdout: string;
1310
1307
  stderr: string;
1308
+ exitCode: number;
1309
+ startedAt: string;
1310
+ passed: boolean;
1311
1311
  completedAt: string;
1312
1312
  }[];
1313
1313
  verifyPrompt: {
@@ -1319,8 +1319,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1319
1319
  } | null;
1320
1320
  }, {
1321
1321
  status: "running" | "failed" | "succeeded" | "stopped";
1322
- verifierAgentId: string | null;
1323
1322
  index: number;
1323
+ verifierAgentId: string | null;
1324
1324
  workerAgentId: string | null;
1325
1325
  workerStartedAt: string;
1326
1326
  workerCompletedAt: string | null;
@@ -1328,11 +1328,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1328
1328
  failureReason: string | null;
1329
1329
  verifyChecks: {
1330
1330
  command: string;
1331
- startedAt: string;
1332
- exitCode: number;
1333
- passed: boolean;
1334
1331
  stdout: string;
1335
1332
  stderr: string;
1333
+ exitCode: number;
1334
+ startedAt: string;
1335
+ passed: boolean;
1336
1336
  completedAt: string;
1337
1337
  }[];
1338
1338
  verifyPrompt: {
@@ -1351,18 +1351,18 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1351
1351
  level: z.ZodEnum<["info", "error"]>;
1352
1352
  text: z.ZodString;
1353
1353
  }, "strip", z.ZodTypeAny, {
1354
+ source: "loop" | "worker" | "verifier" | "verify-check";
1354
1355
  text: string;
1355
1356
  seq: number;
1356
1357
  timestamp: string;
1357
1358
  iteration: number | null;
1358
- source: "loop" | "worker" | "verifier" | "verify-check";
1359
1359
  level: "error" | "info";
1360
1360
  }, {
1361
+ source: "loop" | "worker" | "verifier" | "verify-check";
1361
1362
  text: string;
1362
1363
  seq: number;
1363
1364
  timestamp: string;
1364
1365
  iteration: number | null;
1365
- source: "loop" | "worker" | "verifier" | "verify-check";
1366
1366
  level: "error" | "info";
1367
1367
  }>, "many">;
1368
1368
  nextLogSeq: z.ZodNumber;
@@ -1373,8 +1373,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1373
1373
  name: string | null;
1374
1374
  status: "running" | "failed" | "succeeded" | "stopped";
1375
1375
  cwd: string;
1376
- id: string;
1377
1376
  createdAt: string;
1377
+ id: string;
1378
1378
  updatedAt: string;
1379
1379
  provider: string;
1380
1380
  model: string | null;
@@ -1394,8 +1394,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1394
1394
  stopRequestedAt: string | null;
1395
1395
  iterations: {
1396
1396
  status: "running" | "failed" | "succeeded" | "stopped";
1397
- verifierAgentId: string | null;
1398
1397
  index: number;
1398
+ verifierAgentId: string | null;
1399
1399
  workerAgentId: string | null;
1400
1400
  workerStartedAt: string;
1401
1401
  workerCompletedAt: string | null;
@@ -1403,11 +1403,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1403
1403
  failureReason: string | null;
1404
1404
  verifyChecks: {
1405
1405
  command: string;
1406
- startedAt: string;
1407
- exitCode: number;
1408
- passed: boolean;
1409
1406
  stdout: string;
1410
1407
  stderr: string;
1408
+ exitCode: number;
1409
+ startedAt: string;
1410
+ passed: boolean;
1411
1411
  completedAt: string;
1412
1412
  }[];
1413
1413
  verifyPrompt: {
@@ -1419,11 +1419,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1419
1419
  } | null;
1420
1420
  }[];
1421
1421
  logs: {
1422
+ source: "loop" | "worker" | "verifier" | "verify-check";
1422
1423
  text: string;
1423
1424
  seq: number;
1424
1425
  timestamp: string;
1425
1426
  iteration: number | null;
1426
- source: "loop" | "worker" | "verifier" | "verify-check";
1427
1427
  level: "error" | "info";
1428
1428
  }[];
1429
1429
  nextLogSeq: number;
@@ -1434,8 +1434,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1434
1434
  name: string | null;
1435
1435
  status: "running" | "failed" | "succeeded" | "stopped";
1436
1436
  cwd: string;
1437
- id: string;
1438
1437
  createdAt: string;
1438
+ id: string;
1439
1439
  updatedAt: string;
1440
1440
  provider: string;
1441
1441
  model: string | null;
@@ -1455,8 +1455,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1455
1455
  stopRequestedAt: string | null;
1456
1456
  iterations: {
1457
1457
  status: "running" | "failed" | "succeeded" | "stopped";
1458
- verifierAgentId: string | null;
1459
1458
  index: number;
1459
+ verifierAgentId: string | null;
1460
1460
  workerAgentId: string | null;
1461
1461
  workerStartedAt: string;
1462
1462
  workerCompletedAt: string | null;
@@ -1464,11 +1464,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1464
1464
  failureReason: string | null;
1465
1465
  verifyChecks: {
1466
1466
  command: string;
1467
- startedAt: string;
1468
- exitCode: number;
1469
- passed: boolean;
1470
1467
  stdout: string;
1471
1468
  stderr: string;
1469
+ exitCode: number;
1470
+ startedAt: string;
1471
+ passed: boolean;
1472
1472
  completedAt: string;
1473
1473
  }[];
1474
1474
  verifyPrompt: {
@@ -1480,11 +1480,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1480
1480
  } | null;
1481
1481
  }[];
1482
1482
  logs: {
1483
+ source: "loop" | "worker" | "verifier" | "verify-check";
1483
1484
  text: string;
1484
1485
  seq: number;
1485
1486
  timestamp: string;
1486
1487
  iteration: number | null;
1487
- source: "loop" | "worker" | "verifier" | "verify-check";
1488
1488
  level: "error" | "info";
1489
1489
  }[];
1490
1490
  nextLogSeq: number;
@@ -1500,8 +1500,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1500
1500
  name: string | null;
1501
1501
  status: "running" | "failed" | "succeeded" | "stopped";
1502
1502
  cwd: string;
1503
- id: string;
1504
1503
  createdAt: string;
1504
+ id: string;
1505
1505
  updatedAt: string;
1506
1506
  provider: string;
1507
1507
  model: string | null;
@@ -1521,8 +1521,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1521
1521
  stopRequestedAt: string | null;
1522
1522
  iterations: {
1523
1523
  status: "running" | "failed" | "succeeded" | "stopped";
1524
- verifierAgentId: string | null;
1525
1524
  index: number;
1525
+ verifierAgentId: string | null;
1526
1526
  workerAgentId: string | null;
1527
1527
  workerStartedAt: string;
1528
1528
  workerCompletedAt: string | null;
@@ -1530,11 +1530,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1530
1530
  failureReason: string | null;
1531
1531
  verifyChecks: {
1532
1532
  command: string;
1533
- startedAt: string;
1534
- exitCode: number;
1535
- passed: boolean;
1536
1533
  stdout: string;
1537
1534
  stderr: string;
1535
+ exitCode: number;
1536
+ startedAt: string;
1537
+ passed: boolean;
1538
1538
  completedAt: string;
1539
1539
  }[];
1540
1540
  verifyPrompt: {
@@ -1546,11 +1546,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1546
1546
  } | null;
1547
1547
  }[];
1548
1548
  logs: {
1549
+ source: "loop" | "worker" | "verifier" | "verify-check";
1549
1550
  text: string;
1550
1551
  seq: number;
1551
1552
  timestamp: string;
1552
1553
  iteration: number | null;
1553
- source: "loop" | "worker" | "verifier" | "verify-check";
1554
1554
  level: "error" | "info";
1555
1555
  }[];
1556
1556
  nextLogSeq: number;
@@ -1565,8 +1565,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1565
1565
  name: string | null;
1566
1566
  status: "running" | "failed" | "succeeded" | "stopped";
1567
1567
  cwd: string;
1568
- id: string;
1569
1568
  createdAt: string;
1569
+ id: string;
1570
1570
  updatedAt: string;
1571
1571
  provider: string;
1572
1572
  model: string | null;
@@ -1586,8 +1586,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1586
1586
  stopRequestedAt: string | null;
1587
1587
  iterations: {
1588
1588
  status: "running" | "failed" | "succeeded" | "stopped";
1589
- verifierAgentId: string | null;
1590
1589
  index: number;
1590
+ verifierAgentId: string | null;
1591
1591
  workerAgentId: string | null;
1592
1592
  workerStartedAt: string;
1593
1593
  workerCompletedAt: string | null;
@@ -1595,11 +1595,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1595
1595
  failureReason: string | null;
1596
1596
  verifyChecks: {
1597
1597
  command: string;
1598
- startedAt: string;
1599
- exitCode: number;
1600
- passed: boolean;
1601
1598
  stdout: string;
1602
1599
  stderr: string;
1600
+ exitCode: number;
1601
+ startedAt: string;
1602
+ passed: boolean;
1603
1603
  completedAt: string;
1604
1604
  }[];
1605
1605
  verifyPrompt: {
@@ -1611,11 +1611,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1611
1611
  } | null;
1612
1612
  }[];
1613
1613
  logs: {
1614
+ source: "loop" | "worker" | "verifier" | "verify-check";
1614
1615
  text: string;
1615
1616
  seq: number;
1616
1617
  timestamp: string;
1617
1618
  iteration: number | null;
1618
- source: "loop" | "worker" | "verifier" | "verify-check";
1619
1619
  level: "error" | "info";
1620
1620
  }[];
1621
1621
  nextLogSeq: number;
@@ -1633,8 +1633,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1633
1633
  name: string | null;
1634
1634
  status: "running" | "failed" | "succeeded" | "stopped";
1635
1635
  cwd: string;
1636
- id: string;
1637
1636
  createdAt: string;
1637
+ id: string;
1638
1638
  updatedAt: string;
1639
1639
  provider: string;
1640
1640
  model: string | null;
@@ -1654,8 +1654,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1654
1654
  stopRequestedAt: string | null;
1655
1655
  iterations: {
1656
1656
  status: "running" | "failed" | "succeeded" | "stopped";
1657
- verifierAgentId: string | null;
1658
1657
  index: number;
1658
+ verifierAgentId: string | null;
1659
1659
  workerAgentId: string | null;
1660
1660
  workerStartedAt: string;
1661
1661
  workerCompletedAt: string | null;
@@ -1663,11 +1663,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1663
1663
  failureReason: string | null;
1664
1664
  verifyChecks: {
1665
1665
  command: string;
1666
- startedAt: string;
1667
- exitCode: number;
1668
- passed: boolean;
1669
1666
  stdout: string;
1670
1667
  stderr: string;
1668
+ exitCode: number;
1669
+ startedAt: string;
1670
+ passed: boolean;
1671
1671
  completedAt: string;
1672
1672
  }[];
1673
1673
  verifyPrompt: {
@@ -1679,11 +1679,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1679
1679
  } | null;
1680
1680
  }[];
1681
1681
  logs: {
1682
+ source: "loop" | "worker" | "verifier" | "verify-check";
1682
1683
  text: string;
1683
1684
  seq: number;
1684
1685
  timestamp: string;
1685
1686
  iteration: number | null;
1686
- source: "loop" | "worker" | "verifier" | "verify-check";
1687
1687
  level: "error" | "info";
1688
1688
  }[];
1689
1689
  nextLogSeq: number;
@@ -1701,8 +1701,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1701
1701
  name: string | null;
1702
1702
  status: "running" | "failed" | "succeeded" | "stopped";
1703
1703
  cwd: string;
1704
- id: string;
1705
1704
  createdAt: string;
1705
+ id: string;
1706
1706
  updatedAt: string;
1707
1707
  provider: string;
1708
1708
  model: string | null;
@@ -1722,8 +1722,8 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1722
1722
  stopRequestedAt: string | null;
1723
1723
  iterations: {
1724
1724
  status: "running" | "failed" | "succeeded" | "stopped";
1725
- verifierAgentId: string | null;
1726
1725
  index: number;
1726
+ verifierAgentId: string | null;
1727
1727
  workerAgentId: string | null;
1728
1728
  workerStartedAt: string;
1729
1729
  workerCompletedAt: string | null;
@@ -1731,11 +1731,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1731
1731
  failureReason: string | null;
1732
1732
  verifyChecks: {
1733
1733
  command: string;
1734
- startedAt: string;
1735
- exitCode: number;
1736
- passed: boolean;
1737
1734
  stdout: string;
1738
1735
  stderr: string;
1736
+ exitCode: number;
1737
+ startedAt: string;
1738
+ passed: boolean;
1739
1739
  completedAt: string;
1740
1740
  }[];
1741
1741
  verifyPrompt: {
@@ -1747,11 +1747,11 @@ export declare const LoopInspectResponseSchema: z.ZodObject<{
1747
1747
  } | null;
1748
1748
  }[];
1749
1749
  logs: {
1750
+ source: "loop" | "worker" | "verifier" | "verify-check";
1750
1751
  text: string;
1751
1752
  seq: number;
1752
1753
  timestamp: string;
1753
1754
  iteration: number | null;
1754
- source: "loop" | "worker" | "verifier" | "verify-check";
1755
1755
  level: "error" | "info";
1756
1756
  }[];
1757
1757
  nextLogSeq: number;
@@ -1807,19 +1807,19 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1807
1807
  completedAt: z.ZodString;
1808
1808
  }, "strip", z.ZodTypeAny, {
1809
1809
  command: string;
1810
- startedAt: string;
1811
- exitCode: number;
1812
- passed: boolean;
1813
1810
  stdout: string;
1814
1811
  stderr: string;
1812
+ exitCode: number;
1813
+ startedAt: string;
1814
+ passed: boolean;
1815
1815
  completedAt: string;
1816
1816
  }, {
1817
1817
  command: string;
1818
- startedAt: string;
1819
- exitCode: number;
1820
- passed: boolean;
1821
1818
  stdout: string;
1822
1819
  stderr: string;
1820
+ exitCode: number;
1821
+ startedAt: string;
1822
+ passed: boolean;
1823
1823
  completedAt: string;
1824
1824
  }>, "many">;
1825
1825
  verifyPrompt: z.ZodNullable<z.ZodObject<{
@@ -1843,8 +1843,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1843
1843
  }>>;
1844
1844
  }, "strip", z.ZodTypeAny, {
1845
1845
  status: "running" | "failed" | "succeeded" | "stopped";
1846
- verifierAgentId: string | null;
1847
1846
  index: number;
1847
+ verifierAgentId: string | null;
1848
1848
  workerAgentId: string | null;
1849
1849
  workerStartedAt: string;
1850
1850
  workerCompletedAt: string | null;
@@ -1852,11 +1852,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1852
1852
  failureReason: string | null;
1853
1853
  verifyChecks: {
1854
1854
  command: string;
1855
- startedAt: string;
1856
- exitCode: number;
1857
- passed: boolean;
1858
1855
  stdout: string;
1859
1856
  stderr: string;
1857
+ exitCode: number;
1858
+ startedAt: string;
1859
+ passed: boolean;
1860
1860
  completedAt: string;
1861
1861
  }[];
1862
1862
  verifyPrompt: {
@@ -1868,8 +1868,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1868
1868
  } | null;
1869
1869
  }, {
1870
1870
  status: "running" | "failed" | "succeeded" | "stopped";
1871
- verifierAgentId: string | null;
1872
1871
  index: number;
1872
+ verifierAgentId: string | null;
1873
1873
  workerAgentId: string | null;
1874
1874
  workerStartedAt: string;
1875
1875
  workerCompletedAt: string | null;
@@ -1877,11 +1877,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1877
1877
  failureReason: string | null;
1878
1878
  verifyChecks: {
1879
1879
  command: string;
1880
- startedAt: string;
1881
- exitCode: number;
1882
- passed: boolean;
1883
1880
  stdout: string;
1884
1881
  stderr: string;
1882
+ exitCode: number;
1883
+ startedAt: string;
1884
+ passed: boolean;
1885
1885
  completedAt: string;
1886
1886
  }[];
1887
1887
  verifyPrompt: {
@@ -1900,18 +1900,18 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1900
1900
  level: z.ZodEnum<["info", "error"]>;
1901
1901
  text: z.ZodString;
1902
1902
  }, "strip", z.ZodTypeAny, {
1903
+ source: "loop" | "worker" | "verifier" | "verify-check";
1903
1904
  text: string;
1904
1905
  seq: number;
1905
1906
  timestamp: string;
1906
1907
  iteration: number | null;
1907
- source: "loop" | "worker" | "verifier" | "verify-check";
1908
1908
  level: "error" | "info";
1909
1909
  }, {
1910
+ source: "loop" | "worker" | "verifier" | "verify-check";
1910
1911
  text: string;
1911
1912
  seq: number;
1912
1913
  timestamp: string;
1913
1914
  iteration: number | null;
1914
- source: "loop" | "worker" | "verifier" | "verify-check";
1915
1915
  level: "error" | "info";
1916
1916
  }>, "many">;
1917
1917
  nextLogSeq: z.ZodNumber;
@@ -1922,8 +1922,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1922
1922
  name: string | null;
1923
1923
  status: "running" | "failed" | "succeeded" | "stopped";
1924
1924
  cwd: string;
1925
- id: string;
1926
1925
  createdAt: string;
1926
+ id: string;
1927
1927
  updatedAt: string;
1928
1928
  provider: string;
1929
1929
  model: string | null;
@@ -1943,8 +1943,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1943
1943
  stopRequestedAt: string | null;
1944
1944
  iterations: {
1945
1945
  status: "running" | "failed" | "succeeded" | "stopped";
1946
- verifierAgentId: string | null;
1947
1946
  index: number;
1947
+ verifierAgentId: string | null;
1948
1948
  workerAgentId: string | null;
1949
1949
  workerStartedAt: string;
1950
1950
  workerCompletedAt: string | null;
@@ -1952,11 +1952,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1952
1952
  failureReason: string | null;
1953
1953
  verifyChecks: {
1954
1954
  command: string;
1955
- startedAt: string;
1956
- exitCode: number;
1957
- passed: boolean;
1958
1955
  stdout: string;
1959
1956
  stderr: string;
1957
+ exitCode: number;
1958
+ startedAt: string;
1959
+ passed: boolean;
1960
1960
  completedAt: string;
1961
1961
  }[];
1962
1962
  verifyPrompt: {
@@ -1968,11 +1968,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1968
1968
  } | null;
1969
1969
  }[];
1970
1970
  logs: {
1971
+ source: "loop" | "worker" | "verifier" | "verify-check";
1971
1972
  text: string;
1972
1973
  seq: number;
1973
1974
  timestamp: string;
1974
1975
  iteration: number | null;
1975
- source: "loop" | "worker" | "verifier" | "verify-check";
1976
1976
  level: "error" | "info";
1977
1977
  }[];
1978
1978
  nextLogSeq: number;
@@ -1983,8 +1983,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
1983
1983
  name: string | null;
1984
1984
  status: "running" | "failed" | "succeeded" | "stopped";
1985
1985
  cwd: string;
1986
- id: string;
1987
1986
  createdAt: string;
1987
+ id: string;
1988
1988
  updatedAt: string;
1989
1989
  provider: string;
1990
1990
  model: string | null;
@@ -2004,8 +2004,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2004
2004
  stopRequestedAt: string | null;
2005
2005
  iterations: {
2006
2006
  status: "running" | "failed" | "succeeded" | "stopped";
2007
- verifierAgentId: string | null;
2008
2007
  index: number;
2008
+ verifierAgentId: string | null;
2009
2009
  workerAgentId: string | null;
2010
2010
  workerStartedAt: string;
2011
2011
  workerCompletedAt: string | null;
@@ -2013,11 +2013,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2013
2013
  failureReason: string | null;
2014
2014
  verifyChecks: {
2015
2015
  command: string;
2016
- startedAt: string;
2017
- exitCode: number;
2018
- passed: boolean;
2019
2016
  stdout: string;
2020
2017
  stderr: string;
2018
+ exitCode: number;
2019
+ startedAt: string;
2020
+ passed: boolean;
2021
2021
  completedAt: string;
2022
2022
  }[];
2023
2023
  verifyPrompt: {
@@ -2029,11 +2029,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2029
2029
  } | null;
2030
2030
  }[];
2031
2031
  logs: {
2032
+ source: "loop" | "worker" | "verifier" | "verify-check";
2032
2033
  text: string;
2033
2034
  seq: number;
2034
2035
  timestamp: string;
2035
2036
  iteration: number | null;
2036
- source: "loop" | "worker" | "verifier" | "verify-check";
2037
2037
  level: "error" | "info";
2038
2038
  }[];
2039
2039
  nextLogSeq: number;
@@ -2049,18 +2049,18 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2049
2049
  level: z.ZodEnum<["info", "error"]>;
2050
2050
  text: z.ZodString;
2051
2051
  }, "strip", z.ZodTypeAny, {
2052
+ source: "loop" | "worker" | "verifier" | "verify-check";
2052
2053
  text: string;
2053
2054
  seq: number;
2054
2055
  timestamp: string;
2055
2056
  iteration: number | null;
2056
- source: "loop" | "worker" | "verifier" | "verify-check";
2057
2057
  level: "error" | "info";
2058
2058
  }, {
2059
+ source: "loop" | "worker" | "verifier" | "verify-check";
2059
2060
  text: string;
2060
2061
  seq: number;
2061
2062
  timestamp: string;
2062
2063
  iteration: number | null;
2063
- source: "loop" | "worker" | "verifier" | "verify-check";
2064
2064
  level: "error" | "info";
2065
2065
  }>, "many">;
2066
2066
  nextCursor: z.ZodNumber;
@@ -2068,11 +2068,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2068
2068
  }, "strip", z.ZodTypeAny, {
2069
2069
  error: string | null;
2070
2070
  entries: {
2071
+ source: "loop" | "worker" | "verifier" | "verify-check";
2071
2072
  text: string;
2072
2073
  seq: number;
2073
2074
  timestamp: string;
2074
2075
  iteration: number | null;
2075
- source: "loop" | "worker" | "verifier" | "verify-check";
2076
2076
  level: "error" | "info";
2077
2077
  }[];
2078
2078
  requestId: string;
@@ -2080,8 +2080,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2080
2080
  name: string | null;
2081
2081
  status: "running" | "failed" | "succeeded" | "stopped";
2082
2082
  cwd: string;
2083
- id: string;
2084
2083
  createdAt: string;
2084
+ id: string;
2085
2085
  updatedAt: string;
2086
2086
  provider: string;
2087
2087
  model: string | null;
@@ -2101,8 +2101,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2101
2101
  stopRequestedAt: string | null;
2102
2102
  iterations: {
2103
2103
  status: "running" | "failed" | "succeeded" | "stopped";
2104
- verifierAgentId: string | null;
2105
2104
  index: number;
2105
+ verifierAgentId: string | null;
2106
2106
  workerAgentId: string | null;
2107
2107
  workerStartedAt: string;
2108
2108
  workerCompletedAt: string | null;
@@ -2110,11 +2110,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2110
2110
  failureReason: string | null;
2111
2111
  verifyChecks: {
2112
2112
  command: string;
2113
- startedAt: string;
2114
- exitCode: number;
2115
- passed: boolean;
2116
2113
  stdout: string;
2117
2114
  stderr: string;
2115
+ exitCode: number;
2116
+ startedAt: string;
2117
+ passed: boolean;
2118
2118
  completedAt: string;
2119
2119
  }[];
2120
2120
  verifyPrompt: {
@@ -2126,11 +2126,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2126
2126
  } | null;
2127
2127
  }[];
2128
2128
  logs: {
2129
+ source: "loop" | "worker" | "verifier" | "verify-check";
2129
2130
  text: string;
2130
2131
  seq: number;
2131
2132
  timestamp: string;
2132
2133
  iteration: number | null;
2133
- source: "loop" | "worker" | "verifier" | "verify-check";
2134
2134
  level: "error" | "info";
2135
2135
  }[];
2136
2136
  nextLogSeq: number;
@@ -2142,11 +2142,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2142
2142
  }, {
2143
2143
  error: string | null;
2144
2144
  entries: {
2145
+ source: "loop" | "worker" | "verifier" | "verify-check";
2145
2146
  text: string;
2146
2147
  seq: number;
2147
2148
  timestamp: string;
2148
2149
  iteration: number | null;
2149
- source: "loop" | "worker" | "verifier" | "verify-check";
2150
2150
  level: "error" | "info";
2151
2151
  }[];
2152
2152
  requestId: string;
@@ -2154,8 +2154,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2154
2154
  name: string | null;
2155
2155
  status: "running" | "failed" | "succeeded" | "stopped";
2156
2156
  cwd: string;
2157
- id: string;
2158
2157
  createdAt: string;
2158
+ id: string;
2159
2159
  updatedAt: string;
2160
2160
  provider: string;
2161
2161
  model: string | null;
@@ -2175,8 +2175,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2175
2175
  stopRequestedAt: string | null;
2176
2176
  iterations: {
2177
2177
  status: "running" | "failed" | "succeeded" | "stopped";
2178
- verifierAgentId: string | null;
2179
2178
  index: number;
2179
+ verifierAgentId: string | null;
2180
2180
  workerAgentId: string | null;
2181
2181
  workerStartedAt: string;
2182
2182
  workerCompletedAt: string | null;
@@ -2184,11 +2184,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2184
2184
  failureReason: string | null;
2185
2185
  verifyChecks: {
2186
2186
  command: string;
2187
- startedAt: string;
2188
- exitCode: number;
2189
- passed: boolean;
2190
2187
  stdout: string;
2191
2188
  stderr: string;
2189
+ exitCode: number;
2190
+ startedAt: string;
2191
+ passed: boolean;
2192
2192
  completedAt: string;
2193
2193
  }[];
2194
2194
  verifyPrompt: {
@@ -2200,11 +2200,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2200
2200
  } | null;
2201
2201
  }[];
2202
2202
  logs: {
2203
+ source: "loop" | "worker" | "verifier" | "verify-check";
2203
2204
  text: string;
2204
2205
  seq: number;
2205
2206
  timestamp: string;
2206
2207
  iteration: number | null;
2207
- source: "loop" | "worker" | "verifier" | "verify-check";
2208
2208
  level: "error" | "info";
2209
2209
  }[];
2210
2210
  nextLogSeq: number;
@@ -2219,11 +2219,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2219
2219
  payload: {
2220
2220
  error: string | null;
2221
2221
  entries: {
2222
+ source: "loop" | "worker" | "verifier" | "verify-check";
2222
2223
  text: string;
2223
2224
  seq: number;
2224
2225
  timestamp: string;
2225
2226
  iteration: number | null;
2226
- source: "loop" | "worker" | "verifier" | "verify-check";
2227
2227
  level: "error" | "info";
2228
2228
  }[];
2229
2229
  requestId: string;
@@ -2231,8 +2231,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2231
2231
  name: string | null;
2232
2232
  status: "running" | "failed" | "succeeded" | "stopped";
2233
2233
  cwd: string;
2234
- id: string;
2235
2234
  createdAt: string;
2235
+ id: string;
2236
2236
  updatedAt: string;
2237
2237
  provider: string;
2238
2238
  model: string | null;
@@ -2252,8 +2252,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2252
2252
  stopRequestedAt: string | null;
2253
2253
  iterations: {
2254
2254
  status: "running" | "failed" | "succeeded" | "stopped";
2255
- verifierAgentId: string | null;
2256
2255
  index: number;
2256
+ verifierAgentId: string | null;
2257
2257
  workerAgentId: string | null;
2258
2258
  workerStartedAt: string;
2259
2259
  workerCompletedAt: string | null;
@@ -2261,11 +2261,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2261
2261
  failureReason: string | null;
2262
2262
  verifyChecks: {
2263
2263
  command: string;
2264
- startedAt: string;
2265
- exitCode: number;
2266
- passed: boolean;
2267
2264
  stdout: string;
2268
2265
  stderr: string;
2266
+ exitCode: number;
2267
+ startedAt: string;
2268
+ passed: boolean;
2269
2269
  completedAt: string;
2270
2270
  }[];
2271
2271
  verifyPrompt: {
@@ -2277,11 +2277,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2277
2277
  } | null;
2278
2278
  }[];
2279
2279
  logs: {
2280
+ source: "loop" | "worker" | "verifier" | "verify-check";
2280
2281
  text: string;
2281
2282
  seq: number;
2282
2283
  timestamp: string;
2283
2284
  iteration: number | null;
2284
- source: "loop" | "worker" | "verifier" | "verify-check";
2285
2285
  level: "error" | "info";
2286
2286
  }[];
2287
2287
  nextLogSeq: number;
@@ -2296,11 +2296,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2296
2296
  payload: {
2297
2297
  error: string | null;
2298
2298
  entries: {
2299
+ source: "loop" | "worker" | "verifier" | "verify-check";
2299
2300
  text: string;
2300
2301
  seq: number;
2301
2302
  timestamp: string;
2302
2303
  iteration: number | null;
2303
- source: "loop" | "worker" | "verifier" | "verify-check";
2304
2304
  level: "error" | "info";
2305
2305
  }[];
2306
2306
  requestId: string;
@@ -2308,8 +2308,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2308
2308
  name: string | null;
2309
2309
  status: "running" | "failed" | "succeeded" | "stopped";
2310
2310
  cwd: string;
2311
- id: string;
2312
2311
  createdAt: string;
2312
+ id: string;
2313
2313
  updatedAt: string;
2314
2314
  provider: string;
2315
2315
  model: string | null;
@@ -2329,8 +2329,8 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2329
2329
  stopRequestedAt: string | null;
2330
2330
  iterations: {
2331
2331
  status: "running" | "failed" | "succeeded" | "stopped";
2332
- verifierAgentId: string | null;
2333
2332
  index: number;
2333
+ verifierAgentId: string | null;
2334
2334
  workerAgentId: string | null;
2335
2335
  workerStartedAt: string;
2336
2336
  workerCompletedAt: string | null;
@@ -2338,11 +2338,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2338
2338
  failureReason: string | null;
2339
2339
  verifyChecks: {
2340
2340
  command: string;
2341
- startedAt: string;
2342
- exitCode: number;
2343
- passed: boolean;
2344
2341
  stdout: string;
2345
2342
  stderr: string;
2343
+ exitCode: number;
2344
+ startedAt: string;
2345
+ passed: boolean;
2346
2346
  completedAt: string;
2347
2347
  }[];
2348
2348
  verifyPrompt: {
@@ -2354,11 +2354,11 @@ export declare const LoopLogsResponseSchema: z.ZodObject<{
2354
2354
  } | null;
2355
2355
  }[];
2356
2356
  logs: {
2357
+ source: "loop" | "worker" | "verifier" | "verify-check";
2357
2358
  text: string;
2358
2359
  seq: number;
2359
2360
  timestamp: string;
2360
2361
  iteration: number | null;
2361
- source: "loop" | "worker" | "verifier" | "verify-check";
2362
2362
  level: "error" | "info";
2363
2363
  }[];
2364
2364
  nextLogSeq: number;
@@ -2415,19 +2415,19 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2415
2415
  completedAt: z.ZodString;
2416
2416
  }, "strip", z.ZodTypeAny, {
2417
2417
  command: string;
2418
- startedAt: string;
2419
- exitCode: number;
2420
- passed: boolean;
2421
2418
  stdout: string;
2422
2419
  stderr: string;
2420
+ exitCode: number;
2421
+ startedAt: string;
2422
+ passed: boolean;
2423
2423
  completedAt: string;
2424
2424
  }, {
2425
2425
  command: string;
2426
- startedAt: string;
2427
- exitCode: number;
2428
- passed: boolean;
2429
2426
  stdout: string;
2430
2427
  stderr: string;
2428
+ exitCode: number;
2429
+ startedAt: string;
2430
+ passed: boolean;
2431
2431
  completedAt: string;
2432
2432
  }>, "many">;
2433
2433
  verifyPrompt: z.ZodNullable<z.ZodObject<{
@@ -2451,8 +2451,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2451
2451
  }>>;
2452
2452
  }, "strip", z.ZodTypeAny, {
2453
2453
  status: "running" | "failed" | "succeeded" | "stopped";
2454
- verifierAgentId: string | null;
2455
2454
  index: number;
2455
+ verifierAgentId: string | null;
2456
2456
  workerAgentId: string | null;
2457
2457
  workerStartedAt: string;
2458
2458
  workerCompletedAt: string | null;
@@ -2460,11 +2460,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2460
2460
  failureReason: string | null;
2461
2461
  verifyChecks: {
2462
2462
  command: string;
2463
- startedAt: string;
2464
- exitCode: number;
2465
- passed: boolean;
2466
2463
  stdout: string;
2467
2464
  stderr: string;
2465
+ exitCode: number;
2466
+ startedAt: string;
2467
+ passed: boolean;
2468
2468
  completedAt: string;
2469
2469
  }[];
2470
2470
  verifyPrompt: {
@@ -2476,8 +2476,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2476
2476
  } | null;
2477
2477
  }, {
2478
2478
  status: "running" | "failed" | "succeeded" | "stopped";
2479
- verifierAgentId: string | null;
2480
2479
  index: number;
2480
+ verifierAgentId: string | null;
2481
2481
  workerAgentId: string | null;
2482
2482
  workerStartedAt: string;
2483
2483
  workerCompletedAt: string | null;
@@ -2485,11 +2485,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2485
2485
  failureReason: string | null;
2486
2486
  verifyChecks: {
2487
2487
  command: string;
2488
- startedAt: string;
2489
- exitCode: number;
2490
- passed: boolean;
2491
2488
  stdout: string;
2492
2489
  stderr: string;
2490
+ exitCode: number;
2491
+ startedAt: string;
2492
+ passed: boolean;
2493
2493
  completedAt: string;
2494
2494
  }[];
2495
2495
  verifyPrompt: {
@@ -2508,18 +2508,18 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2508
2508
  level: z.ZodEnum<["info", "error"]>;
2509
2509
  text: z.ZodString;
2510
2510
  }, "strip", z.ZodTypeAny, {
2511
+ source: "loop" | "worker" | "verifier" | "verify-check";
2511
2512
  text: string;
2512
2513
  seq: number;
2513
2514
  timestamp: string;
2514
2515
  iteration: number | null;
2515
- source: "loop" | "worker" | "verifier" | "verify-check";
2516
2516
  level: "error" | "info";
2517
2517
  }, {
2518
+ source: "loop" | "worker" | "verifier" | "verify-check";
2518
2519
  text: string;
2519
2520
  seq: number;
2520
2521
  timestamp: string;
2521
2522
  iteration: number | null;
2522
- source: "loop" | "worker" | "verifier" | "verify-check";
2523
2523
  level: "error" | "info";
2524
2524
  }>, "many">;
2525
2525
  nextLogSeq: z.ZodNumber;
@@ -2530,8 +2530,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2530
2530
  name: string | null;
2531
2531
  status: "running" | "failed" | "succeeded" | "stopped";
2532
2532
  cwd: string;
2533
- id: string;
2534
2533
  createdAt: string;
2534
+ id: string;
2535
2535
  updatedAt: string;
2536
2536
  provider: string;
2537
2537
  model: string | null;
@@ -2551,8 +2551,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2551
2551
  stopRequestedAt: string | null;
2552
2552
  iterations: {
2553
2553
  status: "running" | "failed" | "succeeded" | "stopped";
2554
- verifierAgentId: string | null;
2555
2554
  index: number;
2555
+ verifierAgentId: string | null;
2556
2556
  workerAgentId: string | null;
2557
2557
  workerStartedAt: string;
2558
2558
  workerCompletedAt: string | null;
@@ -2560,11 +2560,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2560
2560
  failureReason: string | null;
2561
2561
  verifyChecks: {
2562
2562
  command: string;
2563
- startedAt: string;
2564
- exitCode: number;
2565
- passed: boolean;
2566
2563
  stdout: string;
2567
2564
  stderr: string;
2565
+ exitCode: number;
2566
+ startedAt: string;
2567
+ passed: boolean;
2568
2568
  completedAt: string;
2569
2569
  }[];
2570
2570
  verifyPrompt: {
@@ -2576,11 +2576,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2576
2576
  } | null;
2577
2577
  }[];
2578
2578
  logs: {
2579
+ source: "loop" | "worker" | "verifier" | "verify-check";
2579
2580
  text: string;
2580
2581
  seq: number;
2581
2582
  timestamp: string;
2582
2583
  iteration: number | null;
2583
- source: "loop" | "worker" | "verifier" | "verify-check";
2584
2584
  level: "error" | "info";
2585
2585
  }[];
2586
2586
  nextLogSeq: number;
@@ -2591,8 +2591,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2591
2591
  name: string | null;
2592
2592
  status: "running" | "failed" | "succeeded" | "stopped";
2593
2593
  cwd: string;
2594
- id: string;
2595
2594
  createdAt: string;
2595
+ id: string;
2596
2596
  updatedAt: string;
2597
2597
  provider: string;
2598
2598
  model: string | null;
@@ -2612,8 +2612,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2612
2612
  stopRequestedAt: string | null;
2613
2613
  iterations: {
2614
2614
  status: "running" | "failed" | "succeeded" | "stopped";
2615
- verifierAgentId: string | null;
2616
2615
  index: number;
2616
+ verifierAgentId: string | null;
2617
2617
  workerAgentId: string | null;
2618
2618
  workerStartedAt: string;
2619
2619
  workerCompletedAt: string | null;
@@ -2621,11 +2621,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2621
2621
  failureReason: string | null;
2622
2622
  verifyChecks: {
2623
2623
  command: string;
2624
- startedAt: string;
2625
- exitCode: number;
2626
- passed: boolean;
2627
2624
  stdout: string;
2628
2625
  stderr: string;
2626
+ exitCode: number;
2627
+ startedAt: string;
2628
+ passed: boolean;
2629
2629
  completedAt: string;
2630
2630
  }[];
2631
2631
  verifyPrompt: {
@@ -2637,11 +2637,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2637
2637
  } | null;
2638
2638
  }[];
2639
2639
  logs: {
2640
+ source: "loop" | "worker" | "verifier" | "verify-check";
2640
2641
  text: string;
2641
2642
  seq: number;
2642
2643
  timestamp: string;
2643
2644
  iteration: number | null;
2644
- source: "loop" | "worker" | "verifier" | "verify-check";
2645
2645
  level: "error" | "info";
2646
2646
  }[];
2647
2647
  nextLogSeq: number;
@@ -2657,8 +2657,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2657
2657
  name: string | null;
2658
2658
  status: "running" | "failed" | "succeeded" | "stopped";
2659
2659
  cwd: string;
2660
- id: string;
2661
2660
  createdAt: string;
2661
+ id: string;
2662
2662
  updatedAt: string;
2663
2663
  provider: string;
2664
2664
  model: string | null;
@@ -2678,8 +2678,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2678
2678
  stopRequestedAt: string | null;
2679
2679
  iterations: {
2680
2680
  status: "running" | "failed" | "succeeded" | "stopped";
2681
- verifierAgentId: string | null;
2682
2681
  index: number;
2682
+ verifierAgentId: string | null;
2683
2683
  workerAgentId: string | null;
2684
2684
  workerStartedAt: string;
2685
2685
  workerCompletedAt: string | null;
@@ -2687,11 +2687,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2687
2687
  failureReason: string | null;
2688
2688
  verifyChecks: {
2689
2689
  command: string;
2690
- startedAt: string;
2691
- exitCode: number;
2692
- passed: boolean;
2693
2690
  stdout: string;
2694
2691
  stderr: string;
2692
+ exitCode: number;
2693
+ startedAt: string;
2694
+ passed: boolean;
2695
2695
  completedAt: string;
2696
2696
  }[];
2697
2697
  verifyPrompt: {
@@ -2703,11 +2703,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2703
2703
  } | null;
2704
2704
  }[];
2705
2705
  logs: {
2706
+ source: "loop" | "worker" | "verifier" | "verify-check";
2706
2707
  text: string;
2707
2708
  seq: number;
2708
2709
  timestamp: string;
2709
2710
  iteration: number | null;
2710
- source: "loop" | "worker" | "verifier" | "verify-check";
2711
2711
  level: "error" | "info";
2712
2712
  }[];
2713
2713
  nextLogSeq: number;
@@ -2722,8 +2722,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2722
2722
  name: string | null;
2723
2723
  status: "running" | "failed" | "succeeded" | "stopped";
2724
2724
  cwd: string;
2725
- id: string;
2726
2725
  createdAt: string;
2726
+ id: string;
2727
2727
  updatedAt: string;
2728
2728
  provider: string;
2729
2729
  model: string | null;
@@ -2743,8 +2743,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2743
2743
  stopRequestedAt: string | null;
2744
2744
  iterations: {
2745
2745
  status: "running" | "failed" | "succeeded" | "stopped";
2746
- verifierAgentId: string | null;
2747
2746
  index: number;
2747
+ verifierAgentId: string | null;
2748
2748
  workerAgentId: string | null;
2749
2749
  workerStartedAt: string;
2750
2750
  workerCompletedAt: string | null;
@@ -2752,11 +2752,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2752
2752
  failureReason: string | null;
2753
2753
  verifyChecks: {
2754
2754
  command: string;
2755
- startedAt: string;
2756
- exitCode: number;
2757
- passed: boolean;
2758
2755
  stdout: string;
2759
2756
  stderr: string;
2757
+ exitCode: number;
2758
+ startedAt: string;
2759
+ passed: boolean;
2760
2760
  completedAt: string;
2761
2761
  }[];
2762
2762
  verifyPrompt: {
@@ -2768,11 +2768,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2768
2768
  } | null;
2769
2769
  }[];
2770
2770
  logs: {
2771
+ source: "loop" | "worker" | "verifier" | "verify-check";
2771
2772
  text: string;
2772
2773
  seq: number;
2773
2774
  timestamp: string;
2774
2775
  iteration: number | null;
2775
- source: "loop" | "worker" | "verifier" | "verify-check";
2776
2776
  level: "error" | "info";
2777
2777
  }[];
2778
2778
  nextLogSeq: number;
@@ -2790,8 +2790,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2790
2790
  name: string | null;
2791
2791
  status: "running" | "failed" | "succeeded" | "stopped";
2792
2792
  cwd: string;
2793
- id: string;
2794
2793
  createdAt: string;
2794
+ id: string;
2795
2795
  updatedAt: string;
2796
2796
  provider: string;
2797
2797
  model: string | null;
@@ -2811,8 +2811,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2811
2811
  stopRequestedAt: string | null;
2812
2812
  iterations: {
2813
2813
  status: "running" | "failed" | "succeeded" | "stopped";
2814
- verifierAgentId: string | null;
2815
2814
  index: number;
2815
+ verifierAgentId: string | null;
2816
2816
  workerAgentId: string | null;
2817
2817
  workerStartedAt: string;
2818
2818
  workerCompletedAt: string | null;
@@ -2820,11 +2820,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2820
2820
  failureReason: string | null;
2821
2821
  verifyChecks: {
2822
2822
  command: string;
2823
- startedAt: string;
2824
- exitCode: number;
2825
- passed: boolean;
2826
2823
  stdout: string;
2827
2824
  stderr: string;
2825
+ exitCode: number;
2826
+ startedAt: string;
2827
+ passed: boolean;
2828
2828
  completedAt: string;
2829
2829
  }[];
2830
2830
  verifyPrompt: {
@@ -2836,11 +2836,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2836
2836
  } | null;
2837
2837
  }[];
2838
2838
  logs: {
2839
+ source: "loop" | "worker" | "verifier" | "verify-check";
2839
2840
  text: string;
2840
2841
  seq: number;
2841
2842
  timestamp: string;
2842
2843
  iteration: number | null;
2843
- source: "loop" | "worker" | "verifier" | "verify-check";
2844
2844
  level: "error" | "info";
2845
2845
  }[];
2846
2846
  nextLogSeq: number;
@@ -2858,8 +2858,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2858
2858
  name: string | null;
2859
2859
  status: "running" | "failed" | "succeeded" | "stopped";
2860
2860
  cwd: string;
2861
- id: string;
2862
2861
  createdAt: string;
2862
+ id: string;
2863
2863
  updatedAt: string;
2864
2864
  provider: string;
2865
2865
  model: string | null;
@@ -2879,8 +2879,8 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2879
2879
  stopRequestedAt: string | null;
2880
2880
  iterations: {
2881
2881
  status: "running" | "failed" | "succeeded" | "stopped";
2882
- verifierAgentId: string | null;
2883
2882
  index: number;
2883
+ verifierAgentId: string | null;
2884
2884
  workerAgentId: string | null;
2885
2885
  workerStartedAt: string;
2886
2886
  workerCompletedAt: string | null;
@@ -2888,11 +2888,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2888
2888
  failureReason: string | null;
2889
2889
  verifyChecks: {
2890
2890
  command: string;
2891
- startedAt: string;
2892
- exitCode: number;
2893
- passed: boolean;
2894
2891
  stdout: string;
2895
2892
  stderr: string;
2893
+ exitCode: number;
2894
+ startedAt: string;
2895
+ passed: boolean;
2896
2896
  completedAt: string;
2897
2897
  }[];
2898
2898
  verifyPrompt: {
@@ -2904,11 +2904,11 @@ export declare const LoopStopResponseSchema: z.ZodObject<{
2904
2904
  } | null;
2905
2905
  }[];
2906
2906
  logs: {
2907
+ source: "loop" | "worker" | "verifier" | "verify-check";
2907
2908
  text: string;
2908
2909
  seq: number;
2909
2910
  timestamp: string;
2910
2911
  iteration: number | null;
2911
- source: "loop" | "worker" | "verifier" | "verify-check";
2912
2912
  level: "error" | "info";
2913
2913
  }[];
2914
2914
  nextLogSeq: number;