-
Notifications
You must be signed in to change notification settings - Fork 0
945 lines (924 loc) · 72.5 KB
/
Copy pathbitcode-gate-quality.yml
File metadata and controls
945 lines (924 loc) · 72.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
name: Bitcode Gate Quality
on:
push:
branches:
- "v*/gate-*"
- "version/**"
pull_request:
branches:
- "version/**"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
gate-quality:
name: Gate Quality
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Validate gate pull request title
if: github.event_name == 'pull_request'
env:
PR_BASE_REF: ${{ github.base_ref }}
PR_HEAD_REF: ${{ github.head_ref }}
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
if [[ "$PR_BASE_REF" == version/* && "$PR_HEAD_REF" =~ ^v([0-9]+)/gate-([0-9]+)- ]]; then
expected_version="V${BASH_REMATCH[1]}"
expected_gate="${BASH_REMATCH[2]}"
title_re="^${expected_version}[[:space:]]+Gate[[:space:]]+${expected_gate}([[:space:]]\((specification-only|implementation-only|specification-implementation)\))?:[[:space:]].+"
if [[ ! "$PR_TITLE" =~ $title_re ]]; then
echo "Gate pull request titles must begin with: ${expected_version} Gate ${expected_gate}: or ${expected_version} Gate ${expected_gate} (specification-only|implementation-only|specification-implementation):"
echo "Observed: ${PR_TITLE}"
exit 1
fi
fi
- name: Validate draft canon posture
run: |
POINTER="$(cat .specifications/BITCODE_SPEC.txt)"
if [ "$POINTER" = "V28" ]; then
node scripts/check-bitcode-spec-family.mjs --version V28 --mode promoted --current-target V28
node scripts/check-bitcode-spec-family.mjs --version V29 --mode draft --current-target V28
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V28 --draft-target V29
node scripts/check-bitcode-canonical-inputs.mjs --current-target V28
node scripts/check-v29-gate1-objectives-and-gating.mjs --skip-branch-check
node scripts/check-v29-gate2-terminal-transaction-read-models.mjs --skip-branch-check
node scripts/check-v29-gate3-wallet-signer-btc-operations.mjs --skip-branch-check
node scripts/check-v29-gate4-reading-pipeline-observability.mjs --skip-branch-check
node scripts/check-v29-gate5-assetpack-disclosure-rights.mjs --skip-branch-check
node scripts/check-v29-gate6-settlement-reconciliation-repair.mjs --skip-branch-check
node scripts/check-v29-gate7-organization-permission-authority.mjs --skip-branch-check
node scripts/check-v29-gate8-demonstration-origin-formalization.mjs --skip-branch-check
node scripts/check-v29-gate9-terminal-ux-browser-proof.mjs --skip-branch-check
node scripts/check-v29-gate10-local-staging-promotion-readiness.mjs --skip-branch-check
elif [ "$POINTER" = "V29" ]; then
node scripts/check-bitcode-spec-family.mjs --version V29 --mode promoted --current-target V29
node scripts/check-bitcode-spec-family.mjs --version V30 --mode draft --current-target V29
node scripts/check-bitcode-canonical-inputs.mjs --current-target V29
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V29 --draft-target V30
node scripts/check-v29-gate10-local-staging-promotion-readiness.mjs --promotion-mode --skip-branch-check
node scripts/check-v30-gate1-roadmap-and-gating.mjs --skip-branch-check
node scripts/check-v30-gate2-protocol-package-api-boundaries.mjs --skip-branch-check
node scripts/check-v30-gate3-bitcoin-taproot-psbt-fee-rigor.mjs --skip-branch-check
node scripts/check-v30-gate4-btd-assetpack-mint-read-receipts.mjs --skip-branch-check
node scripts/check-v30-gate5-testnet-ledger-projection-hardening.mjs --skip-branch-check
node scripts/check-v30-gate6-source-to-shares-proof-cleanup.mjs --skip-branch-check
node scripts/check-v30-gate7-bridge-readiness-research-boundaries.mjs --skip-branch-check
node scripts/check-v30-gate8-protocol-telemetry-proof-hooks.mjs --skip-branch-check
node scripts/check-v30-gate9-interface-integration-regression-proof.mjs --skip-branch-check
node scripts/check-v30-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
elif [ "$POINTER" = "V30" ]; then
node scripts/check-bitcode-spec-family.mjs --version V30 --mode promoted --current-target V30
node scripts/check-bitcode-spec-family.mjs --version V31 --mode draft --current-target V30
node scripts/check-bitcode-canonical-inputs.mjs --current-target V30
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V30 --draft-target V31
node scripts/check-v30-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
node scripts/check-v31-gate1-spec-roadmap-opening.mjs --skip-branch-check
node scripts/check-v31-gate2-auxillaries-package-route-contracts.mjs --skip-branch-check
node scripts/check-v31-gate3-profile-account-state.mjs --skip-branch-check
node scripts/check-v31-gate4-connects-provider-readiness.mjs --skip-branch-check
node scripts/check-v31-gate5-wallet-btd-pane-readiness.mjs --skip-branch-check
node scripts/check-v31-gate6-organization-team-role-policy-authority.mjs --skip-branch-check
node scripts/check-v31-gate7-interfaces-pane-admission-cross-surface-contracts.mjs --skip-branch-check
node scripts/check-v31-gate8-auxillaries-ux-accessibility-responsive-proof.mjs --skip-branch-check
node scripts/check-v31-gate9-auxillaries-telemetry-proof-recovery-runs.mjs --skip-branch-check
node scripts/check-v31-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
elif [ "$POINTER" = "V31" ]; then
node scripts/check-bitcode-spec-family.mjs --version V31 --mode promoted --current-target V31
node scripts/check-bitcode-spec-family.mjs --version V32 --mode draft --current-target V31
node scripts/check-bitcode-canonical-inputs.mjs --current-target V31
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V31 --draft-target V32
node scripts/check-v31-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
node scripts/check-v32-gate1-provation-roadmap-opening.mjs --skip-branch-check
node scripts/check-v32-gate2-proof-matrix-inventory.mjs --skip-branch-check
node scripts/check-v32-gate3-deterministic-replay-artifact-stability.mjs --skip-branch-check
node scripts/check-v32-gate4-reading-pipeline-proof-coverage.mjs --skip-branch-check
node scripts/check-v32-gate5-ledger-btd-settlement-failure-states.mjs --skip-branch-check
node scripts/check-v32-gate6-interface-contract-regression-suites.mjs --skip-branch-check
node scripts/check-v32-gate7-browser-accessibility-responsive-visual-proof.mjs --skip-branch-check
node scripts/check-v32-gate8-testnet-mainnet-readiness-rehearsal.mjs --skip-branch-check
node scripts/check-v32-gate9-promotion-proof-generation-hardening.mjs --skip-branch-check
node scripts/check-v32-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
elif [ "$POINTER" = "V32" ]; then
node scripts/check-bitcode-spec-family.mjs --version V32 --mode promoted --current-target V32
node scripts/check-bitcode-canonical-inputs.mjs --current-target V32
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V32 --draft-target V33
if [ -f .specifications/BITCODE_SPEC_V33.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V33 --mode draft --current-target V32
fi
node scripts/check-v32-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
node scripts/check-v33-gate1-interface-roadmap-opening.mjs --skip-branch-check
node scripts/check-v33-gate2-interface-contract-catalog.mjs --skip-branch-check
node scripts/check-v33-gate3-mcp-api-tool-contracts.mjs --skip-branch-check
node scripts/check-v33-gate4-chatgpt-app-action-contracts.mjs --skip-branch-check
node scripts/check-v33-gate5-interface-authorization-policy.mjs --skip-branch-check
node scripts/check-v33-gate6-read-license-assetpack-rights-contracts.mjs --skip-branch-check
node scripts/check-v33-gate7-api-schema-compatibility-matrix.mjs --skip-branch-check
node scripts/check-v33-gate8-interface-telemetry-proof-hooks.mjs --skip-branch-check
node scripts/check-v33-gate9-interface-consumer-ux-regression-proof.mjs --skip-branch-check
node scripts/check-v33-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
elif [ "$POINTER" = "V33" ]; then
node scripts/check-bitcode-spec-family.mjs --version V33 --mode promoted --current-target V33
node scripts/check-bitcode-canonical-inputs.mjs --current-target V33
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V33 --draft-target V34
if [ -f .specifications/BITCODE_SPEC_V34.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V34 --mode draft --current-target V33
fi
node scripts/check-v33-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
node scripts/check-v34-gate1-deployment-roadmap-opening.mjs --skip-branch-check
node scripts/check-v34-gate2-host-capability-environment-lanes.mjs --skip-branch-check
node scripts/check-v34-gate3-distributed-execution-runtime-contracts.mjs --skip-branch-check
node scripts/check-v34-gate4-deployment-storage-posture.mjs --skip-branch-check
node scripts/check-v34-gate5-secret-rotation-boundary-operations.mjs --skip-branch-check
node scripts/check-v34-gate6-migration-cicd-approval-gates.mjs --skip-branch-check
node scripts/check-v34-gate7-runtime-observers-broadcasters-repair-jobs.mjs --skip-branch-check
node scripts/check-v34-gate8-rollback-upgrade-data-repair-playbooks.mjs --skip-branch-check
node scripts/check-v34-gate9-local-staging-testnet-deployment-rehearsal.mjs --skip-branch-check
node scripts/check-v34-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
elif [ "$POINTER" = "V34" ]; then
node scripts/check-bitcode-spec-family.mjs --version V34 --mode promoted --current-target V34
node scripts/check-bitcode-canonical-inputs.mjs --current-target V34
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V34 --draft-target V35
if [ -f .specifications/BITCODE_SPEC_V35.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V35 --mode draft --current-target V34
node scripts/check-v35-gate1-telemetry-docs-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v35-gate2-documentation-surface-catalog.mjs ]; then
node scripts/check-v35-gate2-documentation-surface-catalog.mjs --skip-branch-check
fi
if [ -f scripts/check-v35-gate3-telemetry-taxonomy-event-schema-redaction.mjs ]; then
node scripts/check-v35-gate3-telemetry-taxonomy-event-schema-redaction.mjs --skip-branch-check
fi
if [ -f scripts/check-v35-gate4-public-docs-usage-guides.mjs ]; then
node scripts/check-v35-gate4-public-docs-usage-guides.mjs --skip-branch-check
fi
if [ -f scripts/check-v35-gate5-dashboards-alerts-runbooks-incident-escalation.mjs ]; then
node scripts/check-v35-gate5-dashboards-alerts-runbooks-incident-escalation.mjs --skip-branch-check
fi
if [ -f scripts/check-v35-gate6-documentation-qa-alignment-proofs.mjs ]; then
node scripts/check-v35-gate6-documentation-qa-alignment-proofs.mjs --skip-branch-check
fi
if [ -f scripts/check-v35-gate7-developer-operator-testnet-rollout-guides.mjs ]; then
node scripts/check-v35-gate7-developer-operator-testnet-rollout-guides.mjs --skip-branch-check
fi
if [ -f scripts/check-v35-gate8-telemetry-documentation-interface-integration.mjs ]; then
node scripts/check-v35-gate8-telemetry-documentation-interface-integration.mjs --skip-branch-check
fi
if [ -f scripts/check-v35-gate9-local-staging-telemetry-documentation-rehearsal.mjs ]; then
node scripts/check-v35-gate9-local-staging-telemetry-documentation-rehearsal.mjs --skip-branch-check
fi
if [ -f scripts/check-v35-gate10-promotion-readiness.mjs ]; then
node scripts/check-v35-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
fi
fi
node scripts/check-v34-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
elif [ "$POINTER" = "V35" ]; then
node scripts/check-bitcode-spec-family.mjs --version V35 --mode promoted --current-target V35
node scripts/check-bitcode-canonical-inputs.mjs --current-target V35
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V35 --draft-target V36
node scripts/check-v35-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
if [ -f .specifications/BITCODE_SPEC_V36.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V36 --mode draft --current-target V35
node scripts/check-v36-gate1-exchange-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v36-gate2-exchange-activity-book-market-master-detail.mjs ]; then
node scripts/check-v36-gate2-exchange-activity-book-market-master-detail.mjs --skip-branch-check
fi
if [ -f scripts/check-v36-gate3-exchange-intent-order-contracts.mjs ]; then
node scripts/check-v36-gate3-exchange-intent-order-contracts.mjs --skip-branch-check
fi
if [ -f scripts/check-v36-gate4-exchange-rights-transfer-review.mjs ]; then
node scripts/check-v36-gate4-exchange-rights-transfer-review.mjs --skip-branch-check
fi
if [ -f scripts/check-v36-gate5-exchange-pricing-quote.mjs ]; then
node scripts/check-v36-gate5-exchange-pricing-quote.mjs --skip-branch-check
fi
if [ -f scripts/check-v36-gate6-exchange-settlement-reconciliation.mjs ]; then
node scripts/check-v36-gate6-exchange-settlement-reconciliation.mjs --skip-branch-check
fi
if [ -f scripts/check-v36-gate7-exchange-dispute-repair-revenue-route.mjs ]; then
node scripts/check-v36-gate7-exchange-dispute-repair-revenue-route.mjs --skip-branch-check
fi
if [ -f scripts/check-v36-gate8-exchange-ux-proof.mjs ]; then
node scripts/check-v36-gate8-exchange-ux-proof.mjs --skip-branch-check
fi
if [ -f scripts/check-v36-gate9-exchange-rehearsal.mjs ]; then
node scripts/check-v36-gate9-exchange-rehearsal.mjs --skip-branch-check
fi
if [ -f scripts/check-v36-gate10-promotion-readiness.mjs ]; then
node scripts/check-v36-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
fi
fi
elif [ "$POINTER" = "V36" ]; then
node scripts/check-bitcode-spec-family.mjs --version V36 --mode promoted --current-target V36
node scripts/check-bitcode-canonical-inputs.mjs --current-target V36
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V36 --draft-target V37
node scripts/check-v36-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
if [ -f .specifications/BITCODE_SPEC_V37.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V37 --mode draft --current-target V36
node scripts/check-v37-gate1-conversations-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v37-gate2-conversation-session-route-history-contracts.mjs ]; then
node scripts/check-v37-gate2-conversation-session-route-history-contracts.mjs --skip-branch-check
fi
if [ -f scripts/check-v37-gate3-conversation-stream-event-contracts.mjs ]; then
node scripts/check-v37-gate3-conversation-stream-event-contracts.mjs --skip-branch-check
fi
if [ -f scripts/check-v37-gate4-conversation-writing-workspace.mjs ]; then
node scripts/check-v37-gate4-conversation-writing-workspace.mjs --skip-branch-check
fi
if [ -f scripts/check-v37-gate5-conversation-source-selector.mjs ]; then
node scripts/check-v37-gate5-conversation-source-selector.mjs --skip-branch-check
fi
if [ -f scripts/check-v37-gate6-conversation-product-handoff.mjs ]; then
node scripts/check-v37-gate6-conversation-product-handoff.mjs --skip-branch-check
fi
if [ -f scripts/check-v37-gate7-conversation-persistence-privacy-redaction.mjs ]; then
node scripts/check-v37-gate7-conversation-persistence-privacy-redaction.mjs --skip-branch-check
fi
if [ -f scripts/check-v37-gate8-conversation-telemetry-proof-hooks.mjs ]; then
node scripts/check-v37-gate8-conversation-telemetry-proof-hooks.mjs --skip-branch-check
fi
if [ -f scripts/check-v37-gate9-conversation-rehearsal.mjs ]; then
node scripts/check-v37-gate9-conversation-rehearsal.mjs --skip-branch-check
fi
if [ -f scripts/check-v37-gate10-promotion-readiness.mjs ]; then
node scripts/check-v37-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
fi
fi
elif [ "$POINTER" = "V37" ]; then
node scripts/check-bitcode-spec-family.mjs --version V37 --mode promoted --current-target V37
node scripts/check-bitcode-canonical-inputs.mjs --current-target V37
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V37 --draft-target V38
node scripts/check-v37-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
if [ -f .specifications/BITCODE_SPEC_V38.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V38 --mode draft --current-target V37
node scripts/check-v38-gate1-inference-stack-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v38-gate2-inference-surface-inventory.mjs ]; then
node scripts/check-v38-gate2-inference-surface-inventory.mjs --skip-branch-check
fi
if [ -f scripts/check-v38-gate3-ptrr-failsafe-thricified-stack.mjs ]; then
node scripts/check-v38-gate3-ptrr-failsafe-thricified-stack.mjs --skip-branch-check
fi
if [ -f scripts/check-v38-gate4-prompt-benchmark-report.mjs ]; then
node scripts/check-v38-gate4-prompt-benchmark-report.mjs --skip-branch-check
fi
if [ -f scripts/check-v38-gate5-inference-telemetry-disclosure-report.mjs ]; then
node scripts/check-v38-gate5-inference-telemetry-disclosure-report.mjs --skip-branch-check
fi
if [ -f scripts/check-v38-gate6-read-need-comprehension-inference-hardening.mjs ]; then
node scripts/check-v38-gate6-read-need-comprehension-inference-hardening.mjs --skip-branch-check --skip-package-tests # check:v38-gate6
fi
if [ -f scripts/check-v38-gate7-read-fits-finding-search-embeddings.mjs ]; then
node scripts/check-v38-gate7-read-fits-finding-search-embeddings.mjs --skip-branch-check --skip-package-tests # check:v38-gate7
fi
if [ -f scripts/check-v38-gate8-assetpack-synthesis-economic-traceability.mjs ]; then
node scripts/check-v38-gate8-assetpack-synthesis-economic-traceability.mjs --skip-branch-check --skip-package-tests # check:v38-gate8
fi
if [ -f scripts/check-v38-gate9-conversation-tool-prompt-inference-parity.mjs ]; then
node scripts/check-v38-gate9-conversation-tool-prompt-inference-parity.mjs --skip-branch-check --skip-package-tests # check:v38-gate9
fi
if [ -f scripts/check-v38-gate10-local-staging-inference-depository-search-rehearsal.mjs ]; then
node scripts/check-v38-gate10-local-staging-inference-depository-search-rehearsal.mjs --skip-branch-check --skip-package-tests # check:v38-gate10
fi
if [ -f scripts/check-v38-gate11-promotion-readiness.mjs ]; then
node scripts/check-v38-gate11-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests # check:v38-gate11
fi
fi
elif [ "$POINTER" = "V38" ]; then
node scripts/check-bitcode-spec-family.mjs --version V38 --mode promoted --current-target V38
node scripts/check-bitcode-canonical-inputs.mjs --current-target V38
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V38 --draft-target V39
node scripts/check-v38-gate11-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V39.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V39 --mode draft --current-target V38
node scripts/check-v39-gate1-commercial-reading-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v39-gate2-depository-supply-indexing.mjs ]; then
node scripts/check-v39-gate2-depository-supply-indexing.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v39-gate3-enterprise-reading-ux-state.mjs ]; then
node scripts/check-v39-gate3-enterprise-reading-ux-state.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v39-gate4-read-need-review-resynthesis.mjs ]; then
node scripts/check-v39-gate4-read-need-review-resynthesis.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v39-gate5-read-fits-finding-runtime.mjs ]; then
node scripts/check-v39-gate5-read-fits-finding-runtime.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v39-gate6-assetpack-preview-quote-boundary.mjs ]; then
node scripts/check-v39-gate6-assetpack-preview-quote-boundary.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v39-gate7-settlement-rights-delivery.mjs ]; then
node scripts/check-v39-gate7-settlement-rights-delivery.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v39-gate8-operational-telemetry-repair-readback.mjs ]; then
node scripts/check-v39-gate8-operational-telemetry-repair-readback.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v39-gate9-interface-conversation-product-parity.mjs ]; then
node scripts/check-v39-gate9-interface-conversation-product-parity.mjs --skip-branch-check --skip-package-tests --skip-interface-tests
fi
if [ -f scripts/check-v39-gate10-local-staging-reading-rehearsal.mjs ]; then
node scripts/check-v39-gate10-local-staging-reading-rehearsal.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v39-gate11-promotion-readiness.mjs ]; then
node scripts/check-v39-gate11-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
elif [ "$POINTER" = "V39" ]; then
node scripts/check-bitcode-spec-family.mjs --version V39 --mode promoted --current-target V39
node scripts/check-bitcode-canonical-inputs.mjs --current-target V39
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V39 --draft-target V40
node scripts/check-v39-gate11-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V40.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V40 --mode draft --current-target V39
node scripts/check-v40-gate1-testing-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v40-gate2-test-inventory-coverage-matrix.mjs ]; then
node scripts/check-v40-gate2-test-inventory-coverage-matrix.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v40-gate3-unit-coverage.mjs ]; then
node scripts/check-v40-gate3-unit-coverage.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v40-gate4-api-integration-contracts.mjs ]; then
node scripts/check-v40-gate4-api-integration-contracts.mjs --skip-branch-check --skip-integration-tests
fi
if [ -f scripts/check-v40-gate5-reading-pipeline-integration.mjs ]; then
node scripts/check-v40-gate5-reading-pipeline-integration.mjs --skip-branch-check --skip-integration-tests
fi
if [ -f scripts/check-v40-gate6-conversation-terminal-integration.mjs ]; then
node scripts/check-v40-gate6-conversation-terminal-integration.mjs --skip-branch-check --skip-integration-tests
fi
if [ -f scripts/check-v40-gate7-browser-e2e-visual-proof.mjs ]; then
node scripts/check-v40-gate7-browser-e2e-visual-proof.mjs --skip-branch-check --skip-browser-tests
fi
if [ -f scripts/check-v40-gate8-ledger-storage-sync.mjs ]; then
node scripts/check-v40-gate8-ledger-storage-sync.mjs --skip-branch-check --skip-integration-tests
fi
if [ -f scripts/check-v40-gate9-local-staging-rehearsal-automation.mjs ]; then
node scripts/check-v40-gate9-local-staging-rehearsal-automation.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v40-gate10-prompt-benchmark-smoke-v41-readiness.mjs ]; then
node scripts/check-v40-gate10-prompt-benchmark-smoke-v41-readiness.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v40-gate11-promotion-readiness.mjs ]; then
node scripts/check-v40-gate11-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
elif [ "$POINTER" = "V40" ]; then
node scripts/check-bitcode-spec-family.mjs --version V40 --mode promoted --current-target V40
node scripts/check-bitcode-canonical-inputs.mjs --current-target V40
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V40 --draft-target V41
node scripts/check-v40-gate11-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V41.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V41 --mode draft --current-target V40
node scripts/check-v41-gate1-prompt-program-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v41-gate2-promptpart-prompt-inventory.mjs ]; then
node scripts/check-v41-gate2-promptpart-prompt-inventory.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v41-gate3-registry-interpolation-contracts.mjs ]; then
node scripts/check-v41-gate3-registry-interpolation-contracts.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v41-gate4-reading-prompt-benchmark-baselines.mjs ]; then
node scripts/check-v41-gate4-reading-prompt-benchmark-baselines.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v41-gate5-readneed-prompt-hardening.mjs ]; then
node scripts/check-v41-gate5-readneed-prompt-hardening.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v41-gate6-readfitsfinding-prompt-hardening.mjs ]; then
node scripts/check-v41-gate6-readfitsfinding-prompt-hardening.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v41-gate7-conversation-tool-interface-prompt-rewrite.mjs ]; then
node scripts/check-v41-gate7-conversation-tool-interface-prompt-rewrite.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v41-gate8-prompt-program-benchmark-report.mjs ]; then
node scripts/check-v41-gate8-prompt-program-benchmark-report.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v41-gate9-promotion-readiness.mjs ]; then
node scripts/check-v41-gate9-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
elif [ "$POINTER" = "V41" ]; then
node scripts/check-bitcode-spec-family.mjs --version V41 --mode promoted --current-target V41
node scripts/check-bitcode-canonical-inputs.mjs --current-target V41
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V41 --draft-target V42
node scripts/check-v41-gate9-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V42.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V42 --mode draft --current-target V41
node scripts/check-v42-gate1-mvp-experience-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v42-gate2-depositing-shortest-path.mjs ]; then
node scripts/check-v42-gate2-depositing-shortest-path.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v42-gate3-reading-shortest-path-state-machine.mjs ]; then
node scripts/check-v42-gate3-reading-shortest-path-state-machine.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v42-gate4-readneed-review-resynthesis-product-closure.mjs ]; then
node scripts/check-v42-gate4-readneed-review-resynthesis-product-closure.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v42-gate5-readfitsfinding-preview-quote.mjs ]; then
node scripts/check-v42-gate5-readfitsfinding-preview-quote.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v42-gate6-settlement-rights-delivery.mjs ]; then
node scripts/check-v42-gate6-settlement-rights-delivery.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v42-gate7-ai-reading-demonstration.mjs ]; then
node scripts/check-v42-gate7-ai-reading-demonstration.mjs --skip-branch-check --skip-package-tests --skip-demonstration-tests
fi
if [ -f scripts/check-v42-gate8-local-staging-mvp-rehearsal.mjs ]; then
node scripts/check-v42-gate8-local-staging-mvp-rehearsal.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v42-gate9-promotion-readiness.mjs ]; then
node scripts/check-v42-gate9-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
elif [ "$POINTER" = "V42" ]; then
node scripts/check-bitcode-spec-family.mjs --version V42 --mode promoted --current-target V42
node scripts/check-bitcode-canonical-inputs.mjs --current-target V42
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V42 --draft-target V43
node scripts/check-v42-gate9-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V43.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V43 --mode draft --current-target V42
node scripts/check-v43-gate1-packs-read-deposit-roadmap.mjs --skip-branch-check
if [ -f scripts/check-v43-gate2-route-vocabulary-inventory.mjs ]; then
node scripts/check-v43-gate2-route-vocabulary-inventory.mjs --skip-branch-check
fi
if [ -f scripts/check-v43-gate3-packs-activity-master-detail.mjs ]; then
node scripts/check-v43-gate3-packs-activity-master-detail.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v43-gate4-read-route-five-step-ux.mjs ]; then
node scripts/check-v43-gate4-read-route-five-step-ux.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v43-gate5-deposit-route-options.mjs ]; then
node scripts/check-v43-gate5-deposit-route-options.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v43-gate6-deposit-policy-compensation.mjs ]; then
node scripts/check-v43-gate6-deposit-policy-compensation.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v43-gate7-deposit-option-admission.mjs ]; then
node scripts/check-v43-gate7-deposit-option-admission.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v43-gate8-route-ux-product-excellence.mjs ]; then
node scripts/check-v43-gate8-route-ux-product-excellence.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v43-gate9-cross-route-rehearsal-telemetry-repair.mjs ]; then
node scripts/check-v43-gate9-cross-route-rehearsal-telemetry-repair.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v43-gate10-promotion-readiness.mjs ]; then
node scripts/check-v43-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
elif [ "$POINTER" = "V43" ]; then
node scripts/check-bitcode-spec-family.mjs --version V43 --mode promoted --current-target V43
node scripts/check-bitcode-canonical-inputs.mjs --current-target V43
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V43 --draft-target V44
node scripts/check-v43-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V44.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V44 --mode draft --current-target V43
node scripts/check-v44-gate1-scaled-economy-roadmap-opening.mjs --skip-branch-check
if [ -f scripts/check-v44-gate2-economic-domain-model.mjs ]; then
node scripts/check-v44-gate2-economic-domain-model.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v44-gate3-packs-portfolio-market-intelligence.mjs ]; then
node scripts/check-v44-gate3-packs-portfolio-market-intelligence.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v44-gate4-reading-budget-quote-policy.mjs ]; then
node scripts/check-v44-gate4-reading-budget-quote-policy.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v44-gate5-depositor-earnings-supply-opportunities.mjs ]; then
node scripts/check-v44-gate5-depositor-earnings-supply-opportunities.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v44-gate6-btd-btc-compensation-statements.mjs ]; then
node scripts/check-v44-gate6-btd-btc-compensation-statements.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v44-gate7-organization-policy-wallet-authority.mjs ]; then
node scripts/check-v44-gate7-organization-policy-wallet-authority.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v44-gate8-enterprise-product-ux.mjs ]; then
node scripts/check-v44-gate8-enterprise-product-ux.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v44-gate9-scaled-network-rehearsal.mjs ]; then
node scripts/check-v44-gate9-scaled-network-rehearsal.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v44-gate10-promotion-readiness.mjs ]; then
node scripts/check-v44-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
elif [ "$POINTER" = "V44" ]; then
node scripts/check-bitcode-spec-family.mjs --version V44 --mode promoted --current-target V44
node scripts/check-bitcode-canonical-inputs.mjs --current-target V44
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V44 --draft-target V45
node scripts/check-v44-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V45.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V45 --mode draft --current-target V44
if [ -f scripts/check-v45-gate16-proof-families-generated-artifacts.mjs ]; then
node scripts/check-v45-gate16-proof-families-generated-artifacts.mjs --skip-branch-check --skip-package-tests # check:v45-gate16
fi
if [ -f scripts/check-v45-gate17-source-safe-e2e-rehearsal.mjs ]; then
node scripts/check-v45-gate17-source-safe-e2e-rehearsal.mjs --skip-branch-check --skip-package-tests --skip-operator-dry-run # check:v45-gate17
fi
if [ -f scripts/check-v45-gate18-promotion-readiness.mjs ]; then
node scripts/check-v45-gate18-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests # check:v45-gate18
fi
fi
elif [ "$POINTER" = "V45" ]; then
node scripts/check-bitcode-spec-family.mjs --version V45 --mode promoted --current-target V45
node scripts/check-bitcode-canonical-inputs.mjs --current-target V45
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V45 --draft-target V46
node scripts/check-v45-gate18-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ ! -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v45-gate19-promotion-addendum.mjs ]; then
node scripts/check-v45-gate19-promotion-addendum.mjs --skip-branch-check --skip-package-tests
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V46 --mode draft --current-target V45
if [ -f scripts/check-v46-gate1-commercial-protocol-comprehension-roadmap.mjs ]; then
node scripts/check-v46-gate1-commercial-protocol-comprehension-roadmap.mjs --skip-branch-check
fi
if [ -f scripts/check-v46-gate2-protocol-comprehension-object-model.mjs ]; then
node scripts/check-v46-gate2-protocol-comprehension-object-model.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v46-gate3-public-operator-claim-boundaries.mjs ]; then
node scripts/check-v46-gate3-public-operator-claim-boundaries.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v46-gate4-product-route-comprehension-readback.mjs ]; then
node scripts/check-v46-gate4-product-route-comprehension-readback.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v46-gate5-interface-claim-contracts.mjs ]; then
node scripts/check-v46-gate5-interface-claim-contracts.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v46-gate6-proof-readback-operator-explanation.mjs ]; then
node scripts/check-v46-gate6-proof-readback-operator-explanation.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v46-gate7-local-interface-comprehension-rehearsal.mjs ]; then
node scripts/check-v46-gate7-local-interface-comprehension-rehearsal.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v46-gate8-promotion-readiness.mjs ]; then
node scripts/check-v46-gate8-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
elif [ "$POINTER" = "V46" ]; then
node scripts/check-bitcode-spec-family.mjs --version V46 --mode promoted --current-target V46
node scripts/check-bitcode-canonical-inputs.mjs --current-target V46
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V46 --draft-target V47
node scripts/check-v46-gate8-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V47.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V47 --mode draft --current-target V46
if [ -f scripts/check-v47-gate1-scope-measurement-launch-freeze.mjs ]; then
node scripts/check-v47-gate1-scope-measurement-launch-freeze.mjs --skip-branch-check
fi
if [ -f scripts/check-v47-gate2-feature-excess-alignment-audit.mjs ]; then
node scripts/check-v47-gate2-feature-excess-alignment-audit.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v47-gate3-seller-buyer-state-machine-law.mjs ]; then
node scripts/check-v47-gate3-seller-buyer-state-machine-law.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v47-gate4-depositor-website-completion.mjs ]; then
node scripts/check-v47-gate4-depositor-website-completion.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v47-gate5-reader-website-completion.mjs ]; then
node scripts/check-v47-gate5-reader-website-completion.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v47-gate6-packs-auxillaries-commercial-dashboard.mjs ]; then
node scripts/check-v47-gate6-packs-auxillaries-commercial-dashboard.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v47-gate7-e2e-ip-selling-buying-tests.mjs ]; then
node scripts/check-v47-gate7-e2e-ip-selling-buying-tests.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v47-gate8-landing-public-launch-messaging.mjs ]; then
node scripts/check-v47-gate8-landing-public-launch-messaging.mjs --skip-branch-check --skip-package-tests --skip-uapi-tests
fi
if [ -f scripts/check-v47-gate9-staging-testnet-deployment-rehearsal.mjs ]; then
node scripts/check-v47-gate9-staging-testnet-deployment-rehearsal.mjs --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v47-gate10-promotion-readiness.mjs ]; then
node scripts/check-v47-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
if [ -f scripts/check-v47-gate10-promotion-readiness.mjs ]; then
node scripts/check-v47-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
elif [ "$POINTER" = "V47" ]; then
node scripts/check-bitcode-spec-family.mjs --version V47 --mode promoted --current-target V47
node scripts/check-bitcode-canonical-inputs.mjs --current-target V47
node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V47 --draft-target V48
node scripts/check-v47-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ -f .specifications/BITCODE_SPEC_V48.md ]; then
node scripts/check-bitcode-spec-family.mjs --version V48 --mode draft --current-target V47
fi
else
echo "Unexpected BITCODE_SPEC.txt pointer: $POINTER" >&2
exit 1
fi
- name: Validate source casing and imports
run: |
bash scripts/find-uppercase-raw-promptparts.sh
bash scripts/check-import-casing.sh
- name: Type-check gate packages
run: |
pnpm --filter @bitcode/btd typecheck
pnpm --filter @bitcode/api build
# MCP primitives stay typecheck-gated; Exchange MCP server behavior is covered by unit tests below.
pnpm --filter @bitcode/mcp-generics typecheck
# ChatGPT App lives at apps/chatgpt (not packages/chatgptapp).
# Typecheck excludes __tests__; action contracts are proven by Jest below.
pnpm --dir apps/chatgpt exec tsc --noEmit --pretty false
pnpm --filter @bitcode/asset-packs-pipelines-domain typecheck
pnpm --filter @bitcode/pipeline-hosts typecheck
pnpm --filter @bitcode/specifying typecheck
- name: Test gate packages
run: |
POINTER="$(cat .specifications/BITCODE_SPEC.txt)"
if [ "$POINTER" = "V41" ] || [ "$POINTER" = "V42" ] || [ "$POINTER" = "V43" ] || [ "$POINTER" = "V44" ] || [ "$POINTER" = "V45" ]; then
if [ "$POINTER" = "V41" ]; then
node scripts/check-v42-gate9-promotion-readiness.mjs --skip-branch-check
elif [ "$POINTER" = "V42" ]; then
node scripts/check-v42-gate9-promotion-readiness.mjs --promotion-mode --skip-branch-check
elif [ "$POINTER" = "V43" ]; then
node scripts/check-v43-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
elif [ "$POINTER" = "V44" ]; then
node scripts/check-v44-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check
else
node scripts/check-v45-gate18-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
if [ ! -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v45-gate19-promotion-addendum.mjs ]; then
node scripts/check-v45-gate19-promotion-addendum.mjs --skip-branch-check --skip-package-tests
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v46-gate1-commercial-protocol-comprehension-roadmap.mjs ]; then
node scripts/check-v46-gate1-commercial-protocol-comprehension-roadmap.mjs --skip-branch-check
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v46-gate2-protocol-comprehension-object-model.mjs ]; then
node scripts/check-v46-gate2-protocol-comprehension-object-model.mjs --skip-branch-check --skip-package-tests
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v46-gate3-public-operator-claim-boundaries.mjs ]; then
node scripts/check-v46-gate3-public-operator-claim-boundaries.mjs --skip-branch-check --skip-package-tests
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v46-gate4-product-route-comprehension-readback.mjs ]; then
node scripts/check-v46-gate4-product-route-comprehension-readback.mjs --skip-branch-check --skip-package-tests
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v46-gate5-interface-claim-contracts.mjs ]; then
node scripts/check-v46-gate5-interface-claim-contracts.mjs --skip-branch-check --skip-package-tests
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v46-gate6-proof-readback-operator-explanation.mjs ]; then
node scripts/check-v46-gate6-proof-readback-operator-explanation.mjs --skip-branch-check --skip-package-tests
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v46-gate7-local-interface-comprehension-rehearsal.mjs ]; then
node scripts/check-v46-gate7-local-interface-comprehension-rehearsal.mjs --skip-branch-check --skip-package-tests
fi
if [ -f .specifications/BITCODE_SPEC_V46.md ] && [ -f scripts/check-v46-gate8-promotion-readiness.mjs ]; then
node scripts/check-v46-gate8-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate1-scaled-economy-roadmap-opening.mjs ]; then
node scripts/check-v44-gate1-scaled-economy-roadmap-opening.mjs --skip-branch-check
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate2-economic-domain-model.mjs ]; then
node scripts/check-v44-gate2-economic-domain-model.mjs --skip-branch-check --skip-package-tests
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate3-packs-portfolio-market-intelligence.mjs ]; then
node scripts/check-v44-gate3-packs-portfolio-market-intelligence.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate4-reading-budget-quote-policy.mjs ]; then
node scripts/check-v44-gate4-reading-budget-quote-policy.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate5-depositor-earnings-supply-opportunities.mjs ]; then
node scripts/check-v44-gate5-depositor-earnings-supply-opportunities.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate6-btd-btc-compensation-statements.mjs ]; then
node scripts/check-v44-gate6-btd-btc-compensation-statements.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate7-organization-policy-wallet-authority.mjs ]; then
node scripts/check-v44-gate7-organization-policy-wallet-authority.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate8-enterprise-product-ux.mjs ]; then
node scripts/check-v44-gate8-enterprise-product-ux.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate9-scaled-network-rehearsal.mjs ]; then
node scripts/check-v44-gate9-scaled-network-rehearsal.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ "$POINTER" = "V43" ] && [ -f scripts/check-v44-gate10-promotion-readiness.mjs ]; then
node scripts/check-v44-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
if [ "$POINTER" = "V44" ] && [ -f scripts/check-v45-gate16-proof-families-generated-artifacts.mjs ]; then
node scripts/check-v45-gate16-proof-families-generated-artifacts.mjs --skip-branch-check --skip-package-tests # check:v45-gate16
fi
if [ "$POINTER" = "V44" ] && [ -f scripts/check-v45-gate17-source-safe-e2e-rehearsal.mjs ]; then
node scripts/check-v45-gate17-source-safe-e2e-rehearsal.mjs --skip-branch-check --skip-package-tests --skip-operator-dry-run # check:v45-gate17
fi
if [ "$POINTER" = "V44" ] && [ -f scripts/check-v45-gate18-promotion-readiness.mjs ]; then
node scripts/check-v45-gate18-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests # check:v45-gate18
fi
if [ "$POINTER" = "V42" ]; then
if [ -f scripts/check-v43-gate1-packs-read-deposit-roadmap.mjs ]; then
node scripts/check-v43-gate1-packs-read-deposit-roadmap.mjs --skip-branch-check
fi
if [ -f scripts/check-v43-gate2-route-vocabulary-inventory.mjs ]; then
node scripts/check-v43-gate2-route-vocabulary-inventory.mjs --skip-branch-check
fi
if [ -f scripts/check-v43-gate3-packs-activity-master-detail.mjs ]; then
node scripts/check-v43-gate3-packs-activity-master-detail.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v43-gate4-read-route-five-step-ux.mjs ]; then
node scripts/check-v43-gate4-read-route-five-step-ux.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v43-gate5-deposit-route-options.mjs ]; then
node scripts/check-v43-gate5-deposit-route-options.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v43-gate6-deposit-policy-compensation.mjs ]; then
node scripts/check-v43-gate6-deposit-policy-compensation.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v43-gate7-deposit-option-admission.mjs ]; then
node scripts/check-v43-gate7-deposit-option-admission.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v43-gate8-route-ux-product-excellence.mjs ]; then
node scripts/check-v43-gate8-route-ux-product-excellence.mjs --skip-branch-check --skip-uapi-tests
fi
if [ -f scripts/check-v43-gate9-cross-route-rehearsal-telemetry-repair.mjs ]; then
node scripts/check-v43-gate9-cross-route-rehearsal-telemetry-repair.mjs --skip-branch-check --skip-uapi-tests --skip-package-tests
fi
if [ -f scripts/check-v43-gate10-promotion-readiness.mjs ]; then
node scripts/check-v43-gate10-promotion-readiness.mjs --promotion-mode --skip-branch-check --skip-package-tests
fi
fi
pnpm --filter @bitcode/specifying test
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runInBand --forceExit
pnpm --filter @bitcode/asset-packs-pipelines-domain exec jest --config jest.config.cjs --passWithNoTests --forceExit
pnpm --filter @bitcode/pipeline-hosts exec jest --config jest.config.cjs --passWithNoTests --forceExit
exit 0
fi
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/btc-fee-operation.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/btd.test.ts --runInBand --forceExit
if [ -f packages/btd/__tests__/asset-pack-economic-traceability.test.ts ]; then
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/asset-pack-economic-traceability.test.ts --runInBand --forceExit
fi
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/v32-ledger-btd-settlement-failure-states.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/source-to-shares.test.ts __tests__/reconciliation.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/v32-interface-contract-regression.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/interface-contract-catalog.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/mcp-tool-contract.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/chatgpt-app-action-contract.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/interface-authorization-policy.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/read-license-assetpack-rights-contract.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/api-schema-compatibility-matrix.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/interface-telemetry-proof-hook.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/interface-consumer-ux-regression-proof.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/deployment-host-capability-catalog.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/deployment-storage-posture.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/secret-rotation-plan.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/migration-approval-gate.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/runtime-observer-repair-job.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/rollback-upgrade-repair-playbook.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/deployment-readiness-rehearsal.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/deployment-promotion-readiness-report.test.ts --runInBand --forceExit
pnpm --filter @bitcode/btd exec jest --config jest.config.cjs --runTestsByPath __tests__/v32-testnet-mainnet-readiness-rehearsal.test.ts --runInBand --forceExit
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v32-promotion-proof-generation.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-documentation-surface-catalog.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-telemetry-taxonomy-catalog.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-public-docs-usage-guide-catalog.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-operator-runbook-catalog.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-docs-qa-alignment-report.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-testnet-rollout-readiness-guide.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-telemetry-documentation-interface-integration.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-local-staging-telemetry-documentation-rehearsal.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v35-promotion-readiness.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-exchange-activity-book.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-exchange-intent-order-contracts.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-exchange-rights-transfer-review.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-exchange-pricing-quote.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-exchange-settlement-reconciliation.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-exchange-dispute-repair-revenue-route.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-exchange-ux-proof.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-exchange-rehearsal.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v36-promotion-readiness.test.js
pnpm --filter @bitcode/api exec jest --config jest.config.cjs --runTestsByPath src/routes/__tests__/btd-crypto.test.ts --runInBand --forceExit
pnpm --filter @bitcode/api exec jest --config jest.config.cjs --runTestsByPath src/routes/__tests__/auxillaries-contract.test.ts --runInBand --forceExit
pnpm --filter @bitcode/generic-mcps-bitcode run test:mcp -- --runTestsByPath src/__tests__/unit/auth.test.ts --runInBand --forceExit
pnpm --filter @bitcode/generic-mcps-bitcode run test:mcp -- --runTestsByPath src/__tests__/unit/mcp-tool-contract.test.ts src/__tests__/unit/pipeline-ingress-contract.test.ts --runInBand --forceExit
pnpm --dir apps/chatgpt exec jest --runTestsByPath src/__tests__/chatgpt-action-contract.test.ts src/__tests__/tools.test.ts --runInBand --forceExit
# asset-pack-harness.test.ts removed; host plan + distributed receipt remain.
pnpm --filter @bitcode/pipeline-hosts exec jest --config jest.config.cjs --runTestsByPath src/__tests__/asset-pack-host-plan.test.ts --runInBand --forceExit
pnpm --filter @bitcode/pipeline-hosts exec jest --config jest.config.cjs --runTestsByPath src/__tests__/distributed-execution-runtime-receipt.test.ts --runInBand --forceExit
pnpm --filter @bitcode/asset-packs-pipelines-domain exec jest --config jest.config.cjs --runTestsByPath src/__tests__/reading-pipeline-integration-coverage.test.ts src/__tests__/reading-pipeline-observability.test.ts src/__tests__/reading-pipeline-contract.test.ts src/__tests__/v32-reading-pipeline-proof-coverage.test.ts --runInBand --forceExit
pnpm --filter @bitcode/asset-packs-pipelines-domain exec jest --config jest.config.cjs --runTestsByPath src/__tests__/asset-pack-disclosure.test.ts src/__tests__/postprocess.test.ts src/__tests__/read-need.test.ts src/__tests__/read-need-review-resynthesis.test.ts --runInBand --forceExit
pnpm --filter @bitcode/asset-packs-pipelines-domain exec jest --config jest.config.cjs --runTestsByPath src/__tests__/asset-pack-preview-boundary.test.ts --runInBand --forceExit
pnpm --filter @bitcode/asset-packs-pipelines-domain exec jest --config jest.config.cjs --runTestsByPath src/__tests__/asset-pack-settlement-rights-delivery.test.ts --runInBand --forceExit
pnpm --filter @bitcode/asset-packs-pipelines-domain exec jest --config jest.config.cjs --runTestsByPath src/__tests__/reading-operational-telemetry-repair-readback.test.ts --runInBand --forceExit
pnpm --filter @bitcode/asset-packs-pipelines-domain exec jest --config jest.config.cjs --runTestsByPath src/__tests__/reading-interface-product-parity.test.ts --runInBand --forceExit
pnpm --filter @bitcode/api exec jest --config jest.config.cjs --runTestsByPath src/conversations/__tests__/stream-events.test.ts src/conversations/__tests__/privacy.test.ts src/conversations/__tests__/telemetry.test.ts --runInBand --forceExit
pnpm --dir scripts/specifying exec node --test --test-force-exit test/conversation-telemetry-proof-hooks.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/conversation-rehearsal.test.js
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v37-promotion-readiness.test.js
if [ -f scripts/specifying/test/v38-inference-surface-inventory.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-inference-surface-inventory.test.js
fi
if [ -f scripts/specifying/test/v38-ptrr-failsafe-thricified-stack.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-ptrr-failsafe-thricified-stack.test.js
fi
if [ -f scripts/specifying/test/v38-prompt-benchmark-report.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-prompt-benchmark-report.test.js
fi
if [ -f scripts/specifying/test/v38-inference-telemetry-disclosure-report.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-inference-telemetry-disclosure-report.test.js
fi
if [ -f scripts/specifying/test/v38-read-need-comprehension-inference-hardening.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-read-need-comprehension-inference-hardening.test.js
fi
if [ -f scripts/specifying/test/v38-read-fits-finding-search-embeddings.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-read-fits-finding-search-embeddings.test.js
fi
if [ -f scripts/specifying/test/v38-assetpack-synthesis-economic-traceability.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-assetpack-synthesis-economic-traceability.test.js
fi
if [ -f scripts/specifying/test/v38-conversation-tool-prompt-inference-parity.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-conversation-tool-prompt-inference-parity.test.js
fi
if [ -f scripts/specifying/test/v38-local-staging-inference-depository-search-rehearsal.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-local-staging-inference-depository-search-rehearsal.test.js
fi
if [ -f scripts/specifying/test/v38-promotion-readiness.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v38-promotion-readiness.test.js
fi
if [ -f scripts/specifying/test/v39-interface-conversation-product-parity.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v39-interface-conversation-product-parity.test.js
fi
if [ -f scripts/specifying/test/v39-local-staging-reading-rehearsal.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v39-local-staging-reading-rehearsal.test.js
fi
if [ -f scripts/specifying/test/v39-promotion-readiness.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v39-promotion-readiness.test.js
fi
if [ -f scripts/specifying/test/v40-conversation-terminal-integration.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v40-conversation-terminal-integration.test.js
fi
if [ -f scripts/specifying/test/v40-ledger-storage-sync.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v40-ledger-storage-sync.test.js
fi
if [ -f scripts/specifying/test/v40-local-staging-rehearsal-automation.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v40-local-staging-rehearsal-automation.test.js
fi
if [ -f scripts/specifying/test/v40-prompt-benchmark-smoke-v41-readiness.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v40-prompt-benchmark-smoke-v41-readiness.test.js
fi
if [ -f scripts/specifying/test/v40-promotion-readiness.test.js ]; then
pnpm --dir scripts/specifying exec node --test --test-force-exit test/v40-promotion-readiness.test.js
fi
pnpm --filter @bitcode/specifying test
# Terminal product route is deleted (V48). Keep only present uapi harness
# contracts (Conversations / Auxillaries / Reads / browser-proof suites).
- name: Test staged Reading route and product harness contracts
run: |
pnpm --dir apps/uapi exec jest --runTestsByPath \
tests/userDataRoute.test.ts \
tests/auxillariesWalletPane.test.tsx \
tests/auxillariesContent.access.test.tsx \
tests/auxillariesWorkspacePanels.access.test.tsx \
tests/auxillariesWorkspacePanels.test.tsx \
tests/api/auxillariesGithubConnectionRoute.test.ts \
tests/api/vcsRoutes.test.ts \
tests/api/conversationSessionRouteHistory.test.ts \
tests/api/conversationSessionRouteHistoryContract.test.ts \
tests/api/conversationStreamEventContract.test.ts \
tests/conversationStreamPipelineLog.test.tsx \
tests/api/conversationPersistencePrivacyRedaction.test.ts \
tests/conversationPersistencePrivacyPanel.test.tsx \
tests/api/conversationTelemetryProofHooks.test.ts \
tests/conversationTelemetryProofPanel.test.tsx \
tests/api/conversationRehearsal.test.ts \
tests/api/conversationReadingInterfaceParity.test.ts \
tests/conversationRehearsalPanel.test.tsx \
tests/conversationSourceSelector.test.tsx \
tests/conversationWritingWorkspace.test.tsx \
tests/auxillariesExternalsPane.test.tsx \
tests/profileStep.test.tsx \
tests/api/readReviewRoute.test.ts \
tests/api/readReviewProtocolParity.test.ts \
tests/bitcodeLedgerStorageSync.test.ts \
tests/protocolCommercialBoundary.test.ts \
tests/bitcodeBrowserProof.test.ts \
tests/bitcodeBrowserAccessibilityResponsiveProof.test.ts \
tests/readingOperationalTelemetryPipelineLog.test.tsx \
tests/pipelineExecutionLogHeader.test.tsx \
--runInBand
- name: Install browser-proof browser
if: vars.BITCODE_ENABLE_GATE_BROWSER_PROOF == '1'
run: pnpm --dir apps/uapi exec playwright install chromium --with-deps
- name: Browser proof Deposits, Reads, and Auxillaries responsive accessibility
if: vars.BITCODE_ENABLE_GATE_BROWSER_PROOF == '1'
run: pnpm --dir apps/uapi run test:e2e:accessibility-responsive-proof
- name: Browser proof product surfaces
if: vars.BITCODE_ENABLE_GATE_BROWSER_PROOF == '1'
run: pnpm --dir apps/uapi run test:e2e:browser-proof
- name: Test pipeline readback verifier
run: pnpm test:qa:v28:pipeline-readback
- name: Test specifying package boundary
run: |
pnpm --dir scripts/specifying exec node --test --test-force-exit \
test/specifying-package-boundary.test.js
- name: Check diff hygiene
run: git diff --check