opencode-plugin-flow 5.1.1 → 5.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +62 -0
- package/README.md +83 -30
- package/dist/application/errors.d.ts +5 -0
- package/dist/application/flow-service.d.ts +219 -247
- package/dist/application/ports/session-repository.d.ts +5 -1
- package/dist/application/replay/contract.d.ts +123 -0
- package/dist/application/schema.d.ts +376 -706
- package/dist/domain/limits.d.ts +3 -0
- package/dist/domain/session-invariants.d.ts +8 -0
- package/dist/domain/session.d.ts +88 -87
- package/dist/domain/transitions.d.ts +133 -21
- package/dist/index.js +3295 -1460
- package/dist/index.js.map +19 -18
- package/dist/infrastructure/fs/workspace-flow-service.d.ts +2 -1
- package/dist/infrastructure/fs/workspace.d.ts +32 -2
- package/dist/platform/opencode/tools.d.ts +0 -2
- package/dist/prompt-baseline-fixtures.d.ts +4 -3
- package/dist/prompt-quality.d.ts +7 -0
- package/package.json +5 -1
|
@@ -73,20 +73,28 @@ export declare const UnsignedAvailabilitySchema: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
73
73
|
}>;
|
|
74
74
|
}, z.core.$strict>], "status">;
|
|
75
75
|
export type UnsignedAvailability = z.infer<typeof UnsignedAvailabilitySchema>;
|
|
76
|
+
export declare const REVIEW_LIFECYCLE_AGGREGATE_METRICS: readonly ["review_assignment_attempt_count", "invalid_reviewer_payload_count", "completion_submission_count", "accepted_blocker_count", "schema_rejection_count", "evidence_only_rerun_count", "feature_reset_count", "abandoned_session_count"];
|
|
77
|
+
export type ReviewLifecycleAggregateMetric = (typeof REVIEW_LIFECYCLE_AGGREGATE_METRICS)[number];
|
|
76
78
|
export declare const AggregateMetricSchema: z.ZodEnum<{
|
|
79
|
+
abandoned_session_count: "abandoned_session_count";
|
|
80
|
+
accepted_blocker_count: "accepted_blocker_count";
|
|
77
81
|
cache_read_token_count: "cache_read_token_count";
|
|
78
82
|
child_flow_status_call_count: "child_flow_status_call_count";
|
|
79
83
|
child_flow_status_result_character_count: "child_flow_status_result_character_count";
|
|
80
84
|
child_session_count: "child_session_count";
|
|
81
85
|
compaction_count: "compaction_count";
|
|
82
86
|
completion_schema_failure_count: "completion_schema_failure_count";
|
|
87
|
+
completion_submission_count: "completion_submission_count";
|
|
83
88
|
declared_worker_count: "declared_worker_count";
|
|
84
89
|
duplicate_finding_count: "duplicate_finding_count";
|
|
90
|
+
evidence_only_rerun_count: "evidence_only_rerun_count";
|
|
85
91
|
failed_review_attempt_count: "failed_review_attempt_count";
|
|
92
|
+
feature_reset_count: "feature_reset_count";
|
|
86
93
|
flow_tool_call_count: "flow_tool_call_count";
|
|
87
94
|
flow_tool_result_character_count: "flow_tool_result_character_count";
|
|
88
95
|
four_invocation_character_count: "four_invocation_character_count";
|
|
89
96
|
input_token_count: "input_token_count";
|
|
97
|
+
invalid_reviewer_payload_count: "invalid_reviewer_payload_count";
|
|
90
98
|
live_prompt_character_count: "live_prompt_character_count";
|
|
91
99
|
live_prompt_estimated_token_count: "live_prompt_estimated_token_count";
|
|
92
100
|
message_error_count: "message_error_count";
|
|
@@ -94,6 +102,7 @@ export declare const AggregateMetricSchema: z.ZodEnum<{
|
|
|
94
102
|
prompt_character_count: "prompt_character_count";
|
|
95
103
|
recovery_count: "recovery_count";
|
|
96
104
|
result_character_count: "result_character_count";
|
|
105
|
+
review_assignment_attempt_count: "review_assignment_attempt_count";
|
|
97
106
|
review_attempt_count: "review_attempt_count";
|
|
98
107
|
review_packet_file_count: "review_packet_file_count";
|
|
99
108
|
review_packet_line_count: "review_packet_line_count";
|
|
@@ -104,6 +113,7 @@ export declare const AggregateMetricSchema: z.ZodEnum<{
|
|
|
104
113
|
root_flow_tool_call_count: "root_flow_tool_call_count";
|
|
105
114
|
root_flow_tool_result_character_count: "root_flow_tool_result_character_count";
|
|
106
115
|
scenario_count: "scenario_count";
|
|
116
|
+
schema_rejection_count: "schema_rejection_count";
|
|
107
117
|
session_count: "session_count";
|
|
108
118
|
terminal_decision_count: "terminal_decision_count";
|
|
109
119
|
tool_error_count: "tool_error_count";
|
|
@@ -116,19 +126,25 @@ export declare const AggregateMetricSchema: z.ZodEnum<{
|
|
|
116
126
|
export type AggregateMetric = z.infer<typeof AggregateMetricSchema>;
|
|
117
127
|
export declare const ApprovedAggregateFactSchema: z.ZodObject<{
|
|
118
128
|
metric: z.ZodEnum<{
|
|
129
|
+
abandoned_session_count: "abandoned_session_count";
|
|
130
|
+
accepted_blocker_count: "accepted_blocker_count";
|
|
119
131
|
cache_read_token_count: "cache_read_token_count";
|
|
120
132
|
child_flow_status_call_count: "child_flow_status_call_count";
|
|
121
133
|
child_flow_status_result_character_count: "child_flow_status_result_character_count";
|
|
122
134
|
child_session_count: "child_session_count";
|
|
123
135
|
compaction_count: "compaction_count";
|
|
124
136
|
completion_schema_failure_count: "completion_schema_failure_count";
|
|
137
|
+
completion_submission_count: "completion_submission_count";
|
|
125
138
|
declared_worker_count: "declared_worker_count";
|
|
126
139
|
duplicate_finding_count: "duplicate_finding_count";
|
|
140
|
+
evidence_only_rerun_count: "evidence_only_rerun_count";
|
|
127
141
|
failed_review_attempt_count: "failed_review_attempt_count";
|
|
142
|
+
feature_reset_count: "feature_reset_count";
|
|
128
143
|
flow_tool_call_count: "flow_tool_call_count";
|
|
129
144
|
flow_tool_result_character_count: "flow_tool_result_character_count";
|
|
130
145
|
four_invocation_character_count: "four_invocation_character_count";
|
|
131
146
|
input_token_count: "input_token_count";
|
|
147
|
+
invalid_reviewer_payload_count: "invalid_reviewer_payload_count";
|
|
132
148
|
live_prompt_character_count: "live_prompt_character_count";
|
|
133
149
|
live_prompt_estimated_token_count: "live_prompt_estimated_token_count";
|
|
134
150
|
message_error_count: "message_error_count";
|
|
@@ -136,6 +152,7 @@ export declare const ApprovedAggregateFactSchema: z.ZodObject<{
|
|
|
136
152
|
prompt_character_count: "prompt_character_count";
|
|
137
153
|
recovery_count: "recovery_count";
|
|
138
154
|
result_character_count: "result_character_count";
|
|
155
|
+
review_assignment_attempt_count: "review_assignment_attempt_count";
|
|
139
156
|
review_attempt_count: "review_attempt_count";
|
|
140
157
|
review_packet_file_count: "review_packet_file_count";
|
|
141
158
|
review_packet_line_count: "review_packet_line_count";
|
|
@@ -146,6 +163,7 @@ export declare const ApprovedAggregateFactSchema: z.ZodObject<{
|
|
|
146
163
|
root_flow_tool_call_count: "root_flow_tool_call_count";
|
|
147
164
|
root_flow_tool_result_character_count: "root_flow_tool_result_character_count";
|
|
148
165
|
scenario_count: "scenario_count";
|
|
166
|
+
schema_rejection_count: "schema_rejection_count";
|
|
149
167
|
session_count: "session_count";
|
|
150
168
|
terminal_decision_count: "terminal_decision_count";
|
|
151
169
|
tool_error_count: "tool_error_count";
|
|
@@ -1253,6 +1271,79 @@ export declare const ReplayScenarioSchema: z.ZodObject<{
|
|
|
1253
1271
|
}, z.core.$strict>], "kind">>;
|
|
1254
1272
|
}, z.core.$strict>;
|
|
1255
1273
|
export type ReplayScenario = z.infer<typeof ReplayScenarioSchema>;
|
|
1274
|
+
export declare const ReviewLifecycleBaselineSchema: z.ZodObject<{
|
|
1275
|
+
version: z.ZodLiteral<1>;
|
|
1276
|
+
baselineId: z.ZodLiteral<"qa_scribe_5_1_high">;
|
|
1277
|
+
capturedOn: z.ZodLiteral<"2026-07-19">;
|
|
1278
|
+
inferenceEffort: z.ZodEnum<{
|
|
1279
|
+
high: "high";
|
|
1280
|
+
max: "max";
|
|
1281
|
+
}>;
|
|
1282
|
+
facts: z.ZodArray<z.ZodObject<{
|
|
1283
|
+
metric: z.ZodEnum<{
|
|
1284
|
+
abandoned_session_count: "abandoned_session_count";
|
|
1285
|
+
accepted_blocker_count: "accepted_blocker_count";
|
|
1286
|
+
cache_read_token_count: "cache_read_token_count";
|
|
1287
|
+
child_flow_status_call_count: "child_flow_status_call_count";
|
|
1288
|
+
child_flow_status_result_character_count: "child_flow_status_result_character_count";
|
|
1289
|
+
child_session_count: "child_session_count";
|
|
1290
|
+
compaction_count: "compaction_count";
|
|
1291
|
+
completion_schema_failure_count: "completion_schema_failure_count";
|
|
1292
|
+
completion_submission_count: "completion_submission_count";
|
|
1293
|
+
declared_worker_count: "declared_worker_count";
|
|
1294
|
+
duplicate_finding_count: "duplicate_finding_count";
|
|
1295
|
+
evidence_only_rerun_count: "evidence_only_rerun_count";
|
|
1296
|
+
failed_review_attempt_count: "failed_review_attempt_count";
|
|
1297
|
+
feature_reset_count: "feature_reset_count";
|
|
1298
|
+
flow_tool_call_count: "flow_tool_call_count";
|
|
1299
|
+
flow_tool_result_character_count: "flow_tool_result_character_count";
|
|
1300
|
+
four_invocation_character_count: "four_invocation_character_count";
|
|
1301
|
+
input_token_count: "input_token_count";
|
|
1302
|
+
invalid_reviewer_payload_count: "invalid_reviewer_payload_count";
|
|
1303
|
+
live_prompt_character_count: "live_prompt_character_count";
|
|
1304
|
+
live_prompt_estimated_token_count: "live_prompt_estimated_token_count";
|
|
1305
|
+
message_error_count: "message_error_count";
|
|
1306
|
+
output_token_count: "output_token_count";
|
|
1307
|
+
prompt_character_count: "prompt_character_count";
|
|
1308
|
+
recovery_count: "recovery_count";
|
|
1309
|
+
result_character_count: "result_character_count";
|
|
1310
|
+
review_assignment_attempt_count: "review_assignment_attempt_count";
|
|
1311
|
+
review_attempt_count: "review_attempt_count";
|
|
1312
|
+
review_packet_file_count: "review_packet_file_count";
|
|
1313
|
+
review_packet_line_count: "review_packet_line_count";
|
|
1314
|
+
reviewer_child_session_count: "reviewer_child_session_count";
|
|
1315
|
+
reviewer_dispatch_count: "reviewer_dispatch_count";
|
|
1316
|
+
reviewer_execution_count: "reviewer_execution_count";
|
|
1317
|
+
reviewer_input_share_basis_points: "reviewer_input_share_basis_points";
|
|
1318
|
+
root_flow_tool_call_count: "root_flow_tool_call_count";
|
|
1319
|
+
root_flow_tool_result_character_count: "root_flow_tool_result_character_count";
|
|
1320
|
+
scenario_count: "scenario_count";
|
|
1321
|
+
schema_rejection_count: "schema_rejection_count";
|
|
1322
|
+
session_count: "session_count";
|
|
1323
|
+
terminal_decision_count: "terminal_decision_count";
|
|
1324
|
+
tool_error_count: "tool_error_count";
|
|
1325
|
+
tool_latency_p50_ms: "tool_latency_p50_ms";
|
|
1326
|
+
tool_latency_p95_ms: "tool_latency_p95_ms";
|
|
1327
|
+
tool_latency_total_ms: "tool_latency_total_ms";
|
|
1328
|
+
tool_part_count: "tool_part_count";
|
|
1329
|
+
validation_failure_count: "validation_failure_count";
|
|
1330
|
+
}>;
|
|
1331
|
+
availability: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1332
|
+
status: z.ZodLiteral<"available">;
|
|
1333
|
+
value: z.ZodNumber;
|
|
1334
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1335
|
+
status: z.ZodLiteral<"unavailable">;
|
|
1336
|
+
reason: z.ZodEnum<{
|
|
1337
|
+
not_applicable: "not_applicable";
|
|
1338
|
+
not_recorded: "not_recorded";
|
|
1339
|
+
privacy_redacted: "privacy_redacted";
|
|
1340
|
+
provider_unavailable: "provider_unavailable";
|
|
1341
|
+
unreconciled: "unreconciled";
|
|
1342
|
+
}>;
|
|
1343
|
+
}, z.core.$strict>], "status">;
|
|
1344
|
+
}, z.core.$strict>>;
|
|
1345
|
+
}, z.core.$strict>;
|
|
1346
|
+
export type ReviewLifecycleBaseline = z.infer<typeof ReviewLifecycleBaselineSchema>;
|
|
1256
1347
|
export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
1257
1348
|
version: z.ZodLiteral<1>;
|
|
1258
1349
|
fixtureId: z.ZodString;
|
|
@@ -1268,19 +1359,25 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1268
1359
|
}, z.core.$strict>>;
|
|
1269
1360
|
hostFacts: z.ZodArray<z.ZodObject<{
|
|
1270
1361
|
metric: z.ZodEnum<{
|
|
1362
|
+
abandoned_session_count: "abandoned_session_count";
|
|
1363
|
+
accepted_blocker_count: "accepted_blocker_count";
|
|
1271
1364
|
cache_read_token_count: "cache_read_token_count";
|
|
1272
1365
|
child_flow_status_call_count: "child_flow_status_call_count";
|
|
1273
1366
|
child_flow_status_result_character_count: "child_flow_status_result_character_count";
|
|
1274
1367
|
child_session_count: "child_session_count";
|
|
1275
1368
|
compaction_count: "compaction_count";
|
|
1276
1369
|
completion_schema_failure_count: "completion_schema_failure_count";
|
|
1370
|
+
completion_submission_count: "completion_submission_count";
|
|
1277
1371
|
declared_worker_count: "declared_worker_count";
|
|
1278
1372
|
duplicate_finding_count: "duplicate_finding_count";
|
|
1373
|
+
evidence_only_rerun_count: "evidence_only_rerun_count";
|
|
1279
1374
|
failed_review_attempt_count: "failed_review_attempt_count";
|
|
1375
|
+
feature_reset_count: "feature_reset_count";
|
|
1280
1376
|
flow_tool_call_count: "flow_tool_call_count";
|
|
1281
1377
|
flow_tool_result_character_count: "flow_tool_result_character_count";
|
|
1282
1378
|
four_invocation_character_count: "four_invocation_character_count";
|
|
1283
1379
|
input_token_count: "input_token_count";
|
|
1380
|
+
invalid_reviewer_payload_count: "invalid_reviewer_payload_count";
|
|
1284
1381
|
live_prompt_character_count: "live_prompt_character_count";
|
|
1285
1382
|
live_prompt_estimated_token_count: "live_prompt_estimated_token_count";
|
|
1286
1383
|
message_error_count: "message_error_count";
|
|
@@ -1288,6 +1385,7 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1288
1385
|
prompt_character_count: "prompt_character_count";
|
|
1289
1386
|
recovery_count: "recovery_count";
|
|
1290
1387
|
result_character_count: "result_character_count";
|
|
1388
|
+
review_assignment_attempt_count: "review_assignment_attempt_count";
|
|
1291
1389
|
review_attempt_count: "review_attempt_count";
|
|
1292
1390
|
review_packet_file_count: "review_packet_file_count";
|
|
1293
1391
|
review_packet_line_count: "review_packet_line_count";
|
|
@@ -1298,6 +1396,7 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1298
1396
|
root_flow_tool_call_count: "root_flow_tool_call_count";
|
|
1299
1397
|
root_flow_tool_result_character_count: "root_flow_tool_result_character_count";
|
|
1300
1398
|
scenario_count: "scenario_count";
|
|
1399
|
+
schema_rejection_count: "schema_rejection_count";
|
|
1301
1400
|
session_count: "session_count";
|
|
1302
1401
|
terminal_decision_count: "terminal_decision_count";
|
|
1303
1402
|
tool_error_count: "tool_error_count";
|
|
@@ -1323,19 +1422,25 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1323
1422
|
}, z.core.$strict>>;
|
|
1324
1423
|
flowLedgerClaims: z.ZodArray<z.ZodObject<{
|
|
1325
1424
|
metric: z.ZodEnum<{
|
|
1425
|
+
abandoned_session_count: "abandoned_session_count";
|
|
1426
|
+
accepted_blocker_count: "accepted_blocker_count";
|
|
1326
1427
|
cache_read_token_count: "cache_read_token_count";
|
|
1327
1428
|
child_flow_status_call_count: "child_flow_status_call_count";
|
|
1328
1429
|
child_flow_status_result_character_count: "child_flow_status_result_character_count";
|
|
1329
1430
|
child_session_count: "child_session_count";
|
|
1330
1431
|
compaction_count: "compaction_count";
|
|
1331
1432
|
completion_schema_failure_count: "completion_schema_failure_count";
|
|
1433
|
+
completion_submission_count: "completion_submission_count";
|
|
1332
1434
|
declared_worker_count: "declared_worker_count";
|
|
1333
1435
|
duplicate_finding_count: "duplicate_finding_count";
|
|
1436
|
+
evidence_only_rerun_count: "evidence_only_rerun_count";
|
|
1334
1437
|
failed_review_attempt_count: "failed_review_attempt_count";
|
|
1438
|
+
feature_reset_count: "feature_reset_count";
|
|
1335
1439
|
flow_tool_call_count: "flow_tool_call_count";
|
|
1336
1440
|
flow_tool_result_character_count: "flow_tool_result_character_count";
|
|
1337
1441
|
four_invocation_character_count: "four_invocation_character_count";
|
|
1338
1442
|
input_token_count: "input_token_count";
|
|
1443
|
+
invalid_reviewer_payload_count: "invalid_reviewer_payload_count";
|
|
1339
1444
|
live_prompt_character_count: "live_prompt_character_count";
|
|
1340
1445
|
live_prompt_estimated_token_count: "live_prompt_estimated_token_count";
|
|
1341
1446
|
message_error_count: "message_error_count";
|
|
@@ -1343,6 +1448,7 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1343
1448
|
prompt_character_count: "prompt_character_count";
|
|
1344
1449
|
recovery_count: "recovery_count";
|
|
1345
1450
|
result_character_count: "result_character_count";
|
|
1451
|
+
review_assignment_attempt_count: "review_assignment_attempt_count";
|
|
1346
1452
|
review_attempt_count: "review_attempt_count";
|
|
1347
1453
|
review_packet_file_count: "review_packet_file_count";
|
|
1348
1454
|
review_packet_line_count: "review_packet_line_count";
|
|
@@ -1353,6 +1459,7 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1353
1459
|
root_flow_tool_call_count: "root_flow_tool_call_count";
|
|
1354
1460
|
root_flow_tool_result_character_count: "root_flow_tool_result_character_count";
|
|
1355
1461
|
scenario_count: "scenario_count";
|
|
1462
|
+
schema_rejection_count: "schema_rejection_count";
|
|
1356
1463
|
session_count: "session_count";
|
|
1357
1464
|
terminal_decision_count: "terminal_decision_count";
|
|
1358
1465
|
tool_error_count: "tool_error_count";
|
|
@@ -1378,19 +1485,25 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1378
1485
|
}, z.core.$strict>>;
|
|
1379
1486
|
suppliedObservations: z.ZodArray<z.ZodObject<{
|
|
1380
1487
|
metric: z.ZodEnum<{
|
|
1488
|
+
abandoned_session_count: "abandoned_session_count";
|
|
1489
|
+
accepted_blocker_count: "accepted_blocker_count";
|
|
1381
1490
|
cache_read_token_count: "cache_read_token_count";
|
|
1382
1491
|
child_flow_status_call_count: "child_flow_status_call_count";
|
|
1383
1492
|
child_flow_status_result_character_count: "child_flow_status_result_character_count";
|
|
1384
1493
|
child_session_count: "child_session_count";
|
|
1385
1494
|
compaction_count: "compaction_count";
|
|
1386
1495
|
completion_schema_failure_count: "completion_schema_failure_count";
|
|
1496
|
+
completion_submission_count: "completion_submission_count";
|
|
1387
1497
|
declared_worker_count: "declared_worker_count";
|
|
1388
1498
|
duplicate_finding_count: "duplicate_finding_count";
|
|
1499
|
+
evidence_only_rerun_count: "evidence_only_rerun_count";
|
|
1389
1500
|
failed_review_attempt_count: "failed_review_attempt_count";
|
|
1501
|
+
feature_reset_count: "feature_reset_count";
|
|
1390
1502
|
flow_tool_call_count: "flow_tool_call_count";
|
|
1391
1503
|
flow_tool_result_character_count: "flow_tool_result_character_count";
|
|
1392
1504
|
four_invocation_character_count: "four_invocation_character_count";
|
|
1393
1505
|
input_token_count: "input_token_count";
|
|
1506
|
+
invalid_reviewer_payload_count: "invalid_reviewer_payload_count";
|
|
1394
1507
|
live_prompt_character_count: "live_prompt_character_count";
|
|
1395
1508
|
live_prompt_estimated_token_count: "live_prompt_estimated_token_count";
|
|
1396
1509
|
message_error_count: "message_error_count";
|
|
@@ -1398,6 +1511,7 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1398
1511
|
prompt_character_count: "prompt_character_count";
|
|
1399
1512
|
recovery_count: "recovery_count";
|
|
1400
1513
|
result_character_count: "result_character_count";
|
|
1514
|
+
review_assignment_attempt_count: "review_assignment_attempt_count";
|
|
1401
1515
|
review_attempt_count: "review_attempt_count";
|
|
1402
1516
|
review_packet_file_count: "review_packet_file_count";
|
|
1403
1517
|
review_packet_line_count: "review_packet_line_count";
|
|
@@ -1408,6 +1522,7 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1408
1522
|
root_flow_tool_call_count: "root_flow_tool_call_count";
|
|
1409
1523
|
root_flow_tool_result_character_count: "root_flow_tool_result_character_count";
|
|
1410
1524
|
scenario_count: "scenario_count";
|
|
1525
|
+
schema_rejection_count: "schema_rejection_count";
|
|
1411
1526
|
session_count: "session_count";
|
|
1412
1527
|
terminal_decision_count: "terminal_decision_count";
|
|
1413
1528
|
tool_error_count: "tool_error_count";
|
|
@@ -1433,19 +1548,25 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1433
1548
|
}, z.core.$strict>>;
|
|
1434
1549
|
replayDerivedFacts: z.ZodArray<z.ZodObject<{
|
|
1435
1550
|
metric: z.ZodEnum<{
|
|
1551
|
+
abandoned_session_count: "abandoned_session_count";
|
|
1552
|
+
accepted_blocker_count: "accepted_blocker_count";
|
|
1436
1553
|
cache_read_token_count: "cache_read_token_count";
|
|
1437
1554
|
child_flow_status_call_count: "child_flow_status_call_count";
|
|
1438
1555
|
child_flow_status_result_character_count: "child_flow_status_result_character_count";
|
|
1439
1556
|
child_session_count: "child_session_count";
|
|
1440
1557
|
compaction_count: "compaction_count";
|
|
1441
1558
|
completion_schema_failure_count: "completion_schema_failure_count";
|
|
1559
|
+
completion_submission_count: "completion_submission_count";
|
|
1442
1560
|
declared_worker_count: "declared_worker_count";
|
|
1443
1561
|
duplicate_finding_count: "duplicate_finding_count";
|
|
1562
|
+
evidence_only_rerun_count: "evidence_only_rerun_count";
|
|
1444
1563
|
failed_review_attempt_count: "failed_review_attempt_count";
|
|
1564
|
+
feature_reset_count: "feature_reset_count";
|
|
1445
1565
|
flow_tool_call_count: "flow_tool_call_count";
|
|
1446
1566
|
flow_tool_result_character_count: "flow_tool_result_character_count";
|
|
1447
1567
|
four_invocation_character_count: "four_invocation_character_count";
|
|
1448
1568
|
input_token_count: "input_token_count";
|
|
1569
|
+
invalid_reviewer_payload_count: "invalid_reviewer_payload_count";
|
|
1449
1570
|
live_prompt_character_count: "live_prompt_character_count";
|
|
1450
1571
|
live_prompt_estimated_token_count: "live_prompt_estimated_token_count";
|
|
1451
1572
|
message_error_count: "message_error_count";
|
|
@@ -1453,6 +1574,7 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1453
1574
|
prompt_character_count: "prompt_character_count";
|
|
1454
1575
|
recovery_count: "recovery_count";
|
|
1455
1576
|
result_character_count: "result_character_count";
|
|
1577
|
+
review_assignment_attempt_count: "review_assignment_attempt_count";
|
|
1456
1578
|
review_attempt_count: "review_attempt_count";
|
|
1457
1579
|
review_packet_file_count: "review_packet_file_count";
|
|
1458
1580
|
review_packet_line_count: "review_packet_line_count";
|
|
@@ -1463,6 +1585,7 @@ export declare const ReplayFixtureSchema: z.ZodObject<{
|
|
|
1463
1585
|
root_flow_tool_call_count: "root_flow_tool_call_count";
|
|
1464
1586
|
root_flow_tool_result_character_count: "root_flow_tool_result_character_count";
|
|
1465
1587
|
scenario_count: "scenario_count";
|
|
1588
|
+
schema_rejection_count: "schema_rejection_count";
|
|
1466
1589
|
session_count: "session_count";
|
|
1467
1590
|
terminal_decision_count: "terminal_decision_count";
|
|
1468
1591
|
tool_error_count: "tool_error_count";
|