-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsole-capability-registry.json
More file actions
7417 lines (7417 loc) · 321 KB
/
Copy pathconsole-capability-registry.json
File metadata and controls
7417 lines (7417 loc) · 321 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
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": "console-capability-registry-v2",
"last_refreshed": "2026-08-03",
"authority": "docs/program/console-enterprise-roadmap.md",
"source_revision": "origin/main@435e251edfab12750850d5b1d411528b10a3ed8a",
"dispatch_rule": "Dispatch is disabled after the 2026-08-03 continuity reset. No row may enter in_progress until current authority deliberately replaces the HOLD reset and admits new exact candidate-bound assignments; historical_* fields never authorize work.",
"hold_rule": "No worktree, branch, or lane survives as a continuation dependency. While the continuity reset is HOLD, every current worktree, branch, and lane_assignments field is null and every current state field is HOLD.",
"review_authority": {
"reviewers": [
{
"id": "jasonlee-ssh-reviewer",
"author_name": "Jason Lee",
"author_email": "jason19931225@gmail.com",
"committer_name": "Jason Lee",
"committer_email": "jason19931225@gmail.com",
"signing": {
"format": "ssh",
"principal": "jason19931225@gmail.com",
"fingerprint": "SHA256:5grGNUtX9Zgmy1SWne6wF9DR8W1ElUQaF/Z8SYRz8E8"
}
}
]
},
"fanout_epoch": {
"current_epoch": 2,
"normalized_lane_ids": [],
"status": "P0/G0 truth-ledger upgrade: no lane is normalized until exact worktree, roots, target sets, candidate evidence, jurisdiction traceability, and independent receipt are admitted."
},
"priority_formula": {
"user_workflow_value": 0.25,
"dependency_unlock": 0.2,
"correctness_and_risk_reduction": 0.2,
"visual_or_functional_parity_gap": 0.15,
"business_coverage_gain": 0.1,
"verification_readiness": 0.1,
"collision_probability": -0.15,
"unpriced_dependency_cost": -0.1
},
"shared_collision_roots": {
"owner": "console-consolidation",
"generated_face_registry": "tools/buck/generated_face_registry.json",
"paths": [
"backend/openapi/openapi.yaml",
"backend/crates/platform/db/migrations/**",
"docs/program/console-enterprise-roadmap.md",
"docs/program/console-capability-registry.json"
]
},
"capabilities": [
{
"id": "CAP-CONSOLE-SHELL",
"label": "Responsive left-main-right console shell",
"evidence_basis": [
"design_reference",
"repository_contract",
"dated_audit"
],
"frontier": 0,
"priority": {
"as_of": "2026-07-23",
"inputs": {
"user_workflow_value": 0.9,
"dependency_unlock": 1,
"correctness_and_risk_reduction": 0.85,
"visual_or_functional_parity_gap": 1,
"business_coverage_gain": 0.3,
"verification_readiness": 0.8,
"collision_probability": 0.7,
"unpriced_dependency_cost": 0.2
},
"score": 0.73
},
"dependencies": [],
"owner": "console-shell",
"worktree": null,
"branch": null,
"commits": [
"38a53bdd"
],
"integration_commits": [
"397e1e59"
],
"ownership": {
"frontend_roots": [],
"backend_roots": [],
"api_schema_roots": [],
"migration_owner": "not_applicable",
"integration_owner": "console-consolidation",
"private_roots": [],
"serial_roots": []
},
"routes": [
"/console/*"
],
"signature_story": {
"id": "STORY-SHELL-001",
"outcome": "An authenticated operator preserves route, selected work, and communication context while moving between persistent, compact, and mutually exclusive drawer layouts using keyboard or touch."
},
"evidence_path": "docs/evidence/console/CAP-CONSOLE-SHELL",
"tests": {
"files": [],
"leaf_commands": [
"npm --prefix web run test -- src/console/shell/ConsoleShell.test.tsx",
"node web/scripts/check-ui-strings.mjs",
"npm run web:lint",
"npm run web:build",
"git diff --check"
],
"buck2_targets": []
},
"state": {
"design_contract": "HOLD",
"backend": "HOLD",
"frontend": "HOLD",
"e2e": "HOLD",
"runtime": "HOLD",
"independent_review": "HOLD",
"production_exposure": "HOLD"
},
"resource_requirements": {
"writer": 1,
"postgres": 0,
"browser": 0,
"ios": 0,
"graph": 1,
"cas": 1
},
"historical_state": {
"design_contract": "pinned",
"backend": "not_applicable",
"frontend": "integrated_on_local_train",
"e2e": "component_matrix_passed",
"runtime": "dev_auth_live_at_localhost_5173",
"independent_review": "i1_non_independent_approved",
"production_exposure": "dark"
},
"historical_commits": [
"38a53bdd"
],
"historical_integration_commits": [
"397e1e59"
],
"truth": {
"declared": "DECLARED",
"implementation": "HOLD",
"verification": "HOLD",
"exposure": "HOLD"
},
"delivery_unit": {
"id": "DU-CONSOLE-SHELL",
"kind": "module_capability",
"buck2_targets": [],
"reason": "Exact candidate-bound Buck2 target set has not been independently established; this registry preserves HOLD rather than inventing a target.",
"rust_status": "NOT_APPLICABLE"
},
"dependency_edges": [],
"route_presentation": {
"route_keys": [],
"source_mounted": false,
"production_exposed": false,
"registry_body_present": false,
"nav_declared": false,
"evidence_receipt_status": "HOLD",
"source": "exact candidate source inventory"
},
"candidate_evidence": {
"status": "HOLD",
"reason": "No exact candidate-bound module completion receipt has been admitted; legacy implementation and local-train claims remain historical only.",
"paths": [
"docs/evidence/console/CAP-CONSOLE-SHELL"
],
"contract": {
"backend_binary_digest_or_build_sha": "HOLD: P1D found the healthy dev-auth backend was built before exact candidate and embeds/exposes no build SHA or binary digest.",
"database": "HOLD: no exact candidate database receipt admitted.",
"api": "HOLD: no exact candidate API receipt admitted.",
"browser": "HOLD: local dev-auth stack is healthy but no exact candidate browser receipt admitted.",
"trace_logs": "HOLD: persona matrix is declarative structural coverage (393 checks), not executed maturity evidence."
}
},
"benchmark": {
"category": "enterprise workspace shell and operator navigation",
"comparator_sources": [
{
"source": "docs/program/benchmark-matrix/overview.md",
"observation_as_of": "2026-07-24",
"observation": "SOURCE_BOUNDED_STARTING_DOSSIER; module-specific corpus contains dated official URLs and source observations.",
"official_urls_referenced_in": "docs/program/benchmark-matrix/overview.md"
}
],
"required_outcomes": "A real enterprise workspace shell and operator navigation workflow is authorized, backend-wired, audited, and demonstrably useful end-to-end.",
"differentiated_outcomes": "Interoperates through shared object, action, workflow, search, and lineage contracts without weakening module-native workflow quality.",
"non_goals": "Prototype checklists, mock rows, visual resemblance alone, or historical local-train status are not delivery evidence.",
"verdict": "HOLD",
"evidence_binding": "candidate:88c57a1d519b43bc4c0e7b721c62bc248b938b38; no exact module comparison or user-story evidence admitted",
"native_outcomes": [
{
"id": "CAP-CONSOLE-SHELL-N1",
"persona_scenario": "Authorized Responsive left-main-right console shell operator",
"action_workflow": "mounted authorized navigation preserves selected work context",
"measurable_assertion": "CAP-CONSOLE-SHELL: mounted authorized navigation preserves selected work context",
"required_receipts": "docs/evidence/console/CAP-CONSOLE-SHELL/native-1.json",
"status": "HOLD"
},
{
"id": "CAP-CONSOLE-SHELL-N2",
"persona_scenario": "Authorized Responsive left-main-right console shell operator",
"action_workflow": "scope changes invalidate stale drawer and panel context",
"measurable_assertion": "CAP-CONSOLE-SHELL: scope changes invalidate stale drawer and panel context",
"required_receipts": "docs/evidence/console/CAP-CONSOLE-SHELL/native-2.json",
"status": "HOLD"
},
{
"id": "CAP-CONSOLE-SHELL-N3",
"persona_scenario": "Authorized Responsive left-main-right console shell operator",
"action_workflow": "keyboard navigation reaches permitted module without hidden-nav leakage",
"measurable_assertion": "CAP-CONSOLE-SHELL: keyboard navigation reaches permitted module without hidden-nav leakage",
"required_receipts": "docs/evidence/console/CAP-CONSOLE-SHELL/native-3.json",
"status": "HOLD"
}
],
"omni_outcomes": [
{
"id": "CAP-CONSOLE-SHELL-O1",
"persona_scenario": "Cross-module Responsive left-main-right console shell operator",
"action_workflow": "CAP-CONSOLE-SHELL omni interaction 1",
"measurable_assertion": "CAP-CONSOLE-SHELL omni measurable assertion 1: scope-safe typed object/action linkage",
"required_receipts": "docs/evidence/console/CAP-CONSOLE-SHELL/omni-1.json",
"status": "HOLD"
},
{
"id": "CAP-CONSOLE-SHELL-O2",
"persona_scenario": "Cross-module Responsive left-main-right console shell operator",
"action_workflow": "CAP-CONSOLE-SHELL omni interaction 2",
"measurable_assertion": "CAP-CONSOLE-SHELL omni measurable assertion 2: auditable lineage across the module boundary",
"required_receipts": "docs/evidence/console/CAP-CONSOLE-SHELL/omni-2.json",
"status": "HOLD"
}
],
"independent_outcome_review": {
"status": "HOLD",
"reason": "No independent candidate-bound outcome review receipt is admitted."
},
"dossier_status": "SOURCE_BOUNDED_STARTING_DOSSIER",
"missing_dossier_reason": null
},
"jurisdiction_bindings": [
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-PRIVACY-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-WORKFORCE-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-SAFETY-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-FINANCE-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-LOCATION-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-RECORDS-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
}
],
"lane_assignments": null,
"historical_worktree": "/Users/jasonlee/Developer/maintenance-worktrees/console-shell-parity-20260723",
"historical_branch": "codex/console-shell-parity-20260723",
"historical_lane_assignments": {
"consolidation": {
"phase0_notes": "Wave-4 Phase-0 landed 2026-07-25: WindowManagerProvider mounted in ConsoleShell (it existed only in the legacy AppShell/tests/a nested provider, so every console window-model consumer was green in jsdom and dead in production — the single cause behind the fidelity audit reporting \"window model missing\" across 13 modules); shared ObjectCard a11y; code-grammar converged on objectCodeBodySource; ontology catalog additive upgrade (0211)."
}
},
"historical_reset_state": {
"design_contract": "pinned",
"backend": "not_applicable",
"frontend": "frontend_surface_deleted_by_2026_07_28_clean_slate_pivot",
"e2e": "component_matrix_passed",
"runtime": "dev_auth_live_at_localhost_5173",
"independent_review": "i1_non_independent_approved",
"production_exposure": "dark"
}
},
{
"id": "CAP-OVERVIEW-WORKSPACE",
"label": "Overview action queue, agenda, and keyboard workflow",
"evidence_basis": [
"repository_contract",
"design_reference",
"dated_audit"
],
"frontier": 0,
"priority": {
"as_of": "2026-07-23",
"inputs": {
"user_workflow_value": 0.85,
"dependency_unlock": 0.65,
"correctness_and_risk_reduction": 0.7,
"visual_or_functional_parity_gap": 0.7,
"business_coverage_gain": 0.45,
"verification_readiness": 0.85,
"collision_probability": 0.3,
"unpriced_dependency_cost": 0.2
},
"score": 0.65
},
"dependencies": [
"CAP-CONSOLE-SHELL"
],
"owner": "console-overview",
"worktree": null,
"branch": null,
"commits": [
"3a04a2b4"
],
"integration_commits": [
"6381a1d2"
],
"ownership": {
"frontend_roots": [],
"backend_roots": [
"backend/crates/action-inbox/**"
],
"api_schema_roots": [],
"migration_owner": "not_applicable",
"integration_owner": "console-consolidation",
"private_roots": [
"backend/crates/action-inbox/**"
],
"serial_roots": []
},
"routes": [
"/console/overview",
"/api/v1/me/action-inbox"
],
"signature_story": {
"id": "STORY-OVERVIEW-001",
"outcome": "An authenticated operator scans the real action queue and agenda, moves through authorized work with J/K or arrows, opens the selected item with Enter, and retains usable layout at narrow widths."
},
"evidence_path": "docs/evidence/console/CAP-OVERVIEW-WORKSPACE",
"tests": {
"files": [],
"leaf_commands": [
"npm --prefix web run test -- src/console/screens/overview/OverviewBody.test.tsx",
"node web/scripts/check-ui-strings.mjs",
"npm run web:lint",
"npm run web:build",
"git diff --check"
],
"buck2_targets": []
},
"state": {
"design_contract": "HOLD",
"backend": "HOLD",
"frontend": "HOLD",
"e2e": "HOLD",
"runtime": "HOLD",
"independent_review": "HOLD",
"production_exposure": "HOLD"
},
"resource_requirements": {
"writer": 1,
"postgres": 0,
"browser": 0,
"ios": 0,
"graph": 1,
"cas": 1
},
"historical_state": {
"design_contract": "bounded_improvement_not_full_parity",
"backend": "existing_real_action_inbox",
"frontend": "integrated_on_local_train",
"e2e": "component_passed",
"runtime": "live_preview_hmr_available",
"independent_review": "i1_non_independent_approved",
"production_exposure": "dark"
},
"historical_commits": [
"3a04a2b4"
],
"historical_integration_commits": [
"6381a1d2"
],
"truth": {
"declared": "DECLARED",
"implementation": "HOLD",
"verification": "HOLD",
"exposure": "HOLD"
},
"delivery_unit": {
"id": "DU-OVERVIEW-WORKSPACE",
"kind": "module_capability",
"buck2_targets": [],
"reason": "Exact candidate-bound Buck2 target set has not been independently established; this registry preserves HOLD rather than inventing a target.",
"rust_status": "REQUIRED_UNRESOLVED"
},
"dependency_edges": [
{
"target": "CAP-CONSOLE-SHELL",
"type": "requires"
}
],
"route_presentation": {
"route_keys": [],
"source_mounted": false,
"production_exposed": false,
"registry_body_present": false,
"nav_declared": false,
"evidence_receipt_status": "HOLD",
"source": "exact candidate source inventory"
},
"candidate_evidence": {
"status": "HOLD",
"reason": "No exact candidate-bound module completion receipt has been admitted; legacy implementation and local-train claims remain historical only.",
"paths": [
"docs/evidence/console/CAP-OVERVIEW-WORKSPACE"
],
"contract": {
"backend_binary_digest_or_build_sha": "HOLD: P1D found the healthy dev-auth backend was built before exact candidate and embeds/exposes no build SHA or binary digest.",
"database": "HOLD: no exact candidate database receipt admitted.",
"api": "HOLD: no exact candidate API receipt admitted.",
"browser": "HOLD: local dev-auth stack is healthy but no exact candidate browser receipt admitted.",
"trace_logs": "HOLD: persona matrix is declarative structural coverage (393 checks), not executed maturity evidence."
}
},
"benchmark": {
"category": "operational work management and action inbox",
"comparator_sources": [
{
"source": "docs/program/benchmark-matrix/overview.md",
"observation_as_of": "2026-07-24",
"observation": "SOURCE_BOUNDED_STARTING_DOSSIER; module-specific corpus contains dated official URLs and source observations.",
"official_urls_referenced_in": "docs/program/benchmark-matrix/overview.md"
}
],
"required_outcomes": "A real operational work management and action inbox workflow is authorized, backend-wired, audited, and demonstrably useful end-to-end.",
"differentiated_outcomes": "Interoperates through shared object, action, workflow, search, and lineage contracts without weakening module-native workflow quality.",
"non_goals": "Prototype checklists, mock rows, visual resemblance alone, or historical local-train status are not delivery evidence.",
"verdict": "HOLD",
"evidence_binding": "candidate:88c57a1d519b43bc4c0e7b721c62bc248b938b38; no exact module comparison or user-story evidence admitted",
"native_outcomes": [
{
"id": "CAP-OVERVIEW-WORKSPACE-N1",
"persona_scenario": "Authorized Overview action queue, agenda, and keyboard workflow operator",
"action_workflow": "action-inbox source count reconciles visible queue and summary",
"measurable_assertion": "CAP-OVERVIEW-WORKSPACE: action-inbox source count reconciles visible queue and summary",
"required_receipts": "docs/evidence/console/CAP-OVERVIEW-WORKSPACE/native-1.json",
"status": "HOLD"
},
{
"id": "CAP-OVERVIEW-WORKSPACE-N2",
"persona_scenario": "Authorized Overview action queue, agenda, and keyboard workflow operator",
"action_workflow": "terminal action returns durable receipt and updates queue state",
"measurable_assertion": "CAP-OVERVIEW-WORKSPACE: terminal action returns durable receipt and updates queue state",
"required_receipts": "docs/evidence/console/CAP-OVERVIEW-WORKSPACE/native-2.json",
"status": "HOLD"
},
{
"id": "CAP-OVERVIEW-WORKSPACE-N3",
"persona_scenario": "Authorized Overview action queue, agenda, and keyboard workflow operator",
"action_workflow": "agenda navigation retains authorized selected work",
"measurable_assertion": "CAP-OVERVIEW-WORKSPACE: agenda navigation retains authorized selected work",
"required_receipts": "docs/evidence/console/CAP-OVERVIEW-WORKSPACE/native-3.json",
"status": "HOLD"
}
],
"omni_outcomes": [
{
"id": "CAP-OVERVIEW-WORKSPACE-O1",
"persona_scenario": "Cross-module Overview action queue, agenda, and keyboard workflow operator",
"action_workflow": "CAP-OVERVIEW-WORKSPACE omni interaction 1",
"measurable_assertion": "CAP-OVERVIEW-WORKSPACE omni measurable assertion 1: scope-safe typed object/action linkage",
"required_receipts": "docs/evidence/console/CAP-OVERVIEW-WORKSPACE/omni-1.json",
"status": "HOLD"
},
{
"id": "CAP-OVERVIEW-WORKSPACE-O2",
"persona_scenario": "Cross-module Overview action queue, agenda, and keyboard workflow operator",
"action_workflow": "CAP-OVERVIEW-WORKSPACE omni interaction 2",
"measurable_assertion": "CAP-OVERVIEW-WORKSPACE omni measurable assertion 2: auditable lineage across the module boundary",
"required_receipts": "docs/evidence/console/CAP-OVERVIEW-WORKSPACE/omni-2.json",
"status": "HOLD"
}
],
"independent_outcome_review": {
"status": "HOLD",
"reason": "No independent candidate-bound outcome review receipt is admitted."
},
"dossier_status": "SOURCE_BOUNDED_STARTING_DOSSIER",
"missing_dossier_reason": null
},
"jurisdiction_bindings": [
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-PRIVACY-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-WORKFORCE-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-SAFETY-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-FINANCE-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-LOCATION-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-RECORDS-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
}
],
"historical_worktree": "/Users/jasonlee/Developer/maintenance-worktrees/console-overview-polish-20260723",
"historical_branch": "codex/console-overview-polish-20260723",
"historical_lane_assignments": null,
"lane_assignments": null,
"historical_reset_state": {
"design_contract": "bounded_improvement_not_full_parity",
"backend": "existing_real_action_inbox",
"frontend": "frontend_surface_deleted_by_2026_07_28_clean_slate_pivot",
"e2e": "component_passed",
"runtime": "live_preview_hmr_available",
"independent_review": "i1_non_independent_approved",
"production_exposure": "dark"
}
},
{
"id": "CAP-BENEFITS-CATALOG",
"label": "Benefits catalog and lifecycle",
"evidence_basis": [
"repository_contract",
"dated_audit"
],
"frontier": 1,
"priority": {
"as_of": "2026-07-23",
"inputs": {
"user_workflow_value": 0.7,
"dependency_unlock": 0.55,
"correctness_and_risk_reduction": 0.8,
"visual_or_functional_parity_gap": 0.55,
"business_coverage_gain": 0.4,
"verification_readiness": 0.8,
"collision_probability": 0.35,
"unpriced_dependency_cost": 0.25
},
"score": 0.57
},
"dependencies": [
"CAP-SHARED-ONTOLOGY-WORKFLOW"
],
"owner": "console-benefits",
"worktree": null,
"branch": null,
"commits": [
"af1b1c85",
"adfd064f",
"aeda54e8",
"3e3af675"
],
"integration_commits": [
"e77ff843",
"ee9c9457",
"90990a52",
"9f1c12ef"
],
"ownership": {
"frontend_roots": [],
"backend_roots": [
"backend/crates/benefit/**",
"backend/app/tests/benefit_catalog_api.rs"
],
"api_schema_roots": [
"backend/openapi/openapi.yaml"
],
"migration_owner": "console-benefits",
"integration_owner": "console-consolidation",
"private_roots": [
"backend/crates/benefit/**",
"backend/app/tests/benefit_catalog_api.rs"
],
"serial_roots": [
"backend/openapi/openapi.yaml"
]
},
"routes": [
"/console/benefit",
"/api/v1/benefits/catalog/**"
],
"signature_story": {
"id": "STORY-BENEFITS-001",
"outcome": "An authorized benefits administrator creates and updates a catalog item and its children, transitions lifecycle, observes audit evidence, and a MEMBER receives a non-leaking denial."
},
"evidence_path": "docs/evidence/console/CAP-BENEFITS-CATALOG",
"tests": {
"files": [
"backend/app/tests/benefit_catalog_api.rs"
],
"leaf_commands": [
"npm --prefix web run test -- src/console/screens/benefit/BenefitBody.test.tsx",
"node web/scripts/check-ui-strings.mjs",
"npm run web:lint",
"npm run web:build",
"git diff --check"
],
"buck2_targets": []
},
"state": {
"design_contract": "HOLD",
"backend": "HOLD",
"frontend": "HOLD",
"e2e": "HOLD",
"runtime": "HOLD",
"independent_review": "HOLD",
"production_exposure": "HOLD"
},
"resource_requirements": {
"writer": 1,
"postgres": 0,
"browser": 0,
"ios": 0,
"graph": 1,
"cas": 1
},
"historical_state": {
"design_contract": "implemented_contract",
"backend": "implemented_but_buck2_unregistered",
"frontend": "integrated_on_local_train",
"e2e": "component_and_app_router_passed",
"runtime": "dev_auth_empty_state_verified_on_restarted_backend",
"independent_review": "i1_non_independent_approved",
"production_exposure": "dark"
},
"historical_commits": [
"af1b1c85",
"adfd064f",
"aeda54e8",
"3e3af675"
],
"historical_integration_commits": [
"e77ff843",
"ee9c9457",
"90990a52",
"9f1c12ef"
],
"truth": {
"declared": "DECLARED",
"implementation": "HOLD",
"verification": "HOLD",
"exposure": "HOLD"
},
"delivery_unit": {
"id": "DU-BENEFITS-CATALOG",
"kind": "module_capability",
"buck2_targets": [],
"reason": "Exact candidate-bound Buck2 target set has not been independently established; this registry preserves HOLD rather than inventing a target.",
"rust_status": "REQUIRED_UNRESOLVED"
},
"dependency_edges": [
{
"target": "CAP-SHARED-ONTOLOGY-WORKFLOW",
"type": "requires"
}
],
"route_presentation": {
"route_keys": [],
"source_mounted": false,
"production_exposed": false,
"registry_body_present": false,
"nav_declared": false,
"evidence_receipt_status": "HOLD",
"source": "exact candidate source inventory"
},
"candidate_evidence": {
"status": "HOLD",
"reason": "No exact candidate-bound module completion receipt has been admitted; legacy implementation and local-train claims remain historical only.",
"paths": [
"docs/evidence/console/CAP-BENEFITS-CATALOG"
],
"contract": {
"backend_binary_digest_or_build_sha": "HOLD: P1D found the healthy dev-auth backend was built before exact candidate and embeds/exposes no build SHA or binary digest.",
"database": "HOLD: no exact candidate database receipt admitted.",
"api": "HOLD: no exact candidate API receipt admitted.",
"browser": "HOLD: local dev-auth stack is healthy but no exact candidate browser receipt admitted.",
"trace_logs": "HOLD: persona matrix is declarative structural coverage (393 checks), not executed maturity evidence."
}
},
"benchmark": {
"category": "benefits administration",
"comparator_sources": [
{
"source": "docs/program/benchmark-matrix/INDEX.md",
"observation_as_of": "2026-07-24",
"observation": "HOLD_INSUFFICIENT_CATEGORY_DOSSIER; adjacent corpus is not a module-native comparator dossier.",
"seed_only": true
}
],
"required_outcomes": "A real benefits administration workflow is authorized, backend-wired, audited, and demonstrably useful end-to-end.",
"differentiated_outcomes": "Interoperates through shared object, action, workflow, search, and lineage contracts without weakening module-native workflow quality.",
"non_goals": "Prototype checklists, mock rows, visual resemblance alone, or historical local-train status are not delivery evidence.",
"verdict": "HOLD",
"evidence_binding": "candidate:88c57a1d519b43bc4c0e7b721c62bc248b938b38; no exact module comparison or user-story evidence admitted",
"native_outcomes": [
{
"id": "CAP-BENEFITS-CATALOG-N1",
"persona_scenario": "Authorized Benefits catalog and lifecycle operator",
"action_workflow": "versioned eligibility evaluates enrollment at effective date",
"measurable_assertion": "CAP-BENEFITS-CATALOG: versioned eligibility evaluates enrollment at effective date",
"required_receipts": "docs/evidence/console/CAP-BENEFITS-CATALOG/native-1.json",
"status": "HOLD"
},
{
"id": "CAP-BENEFITS-CATALOG-N2",
"persona_scenario": "Authorized Benefits catalog and lifecycle operator",
"action_workflow": "enrollment handoff emits payroll-consumable benefit state",
"measurable_assertion": "CAP-BENEFITS-CATALOG: enrollment handoff emits payroll-consumable benefit state",
"required_receipts": "docs/evidence/console/CAP-BENEFITS-CATALOG/native-2.json",
"status": "HOLD"
},
{
"id": "CAP-BENEFITS-CATALOG-N3",
"persona_scenario": "Authorized Benefits catalog and lifecycle operator",
"action_workflow": "benefit change produces governed receipt",
"measurable_assertion": "CAP-BENEFITS-CATALOG: benefit change produces governed receipt",
"required_receipts": "docs/evidence/console/CAP-BENEFITS-CATALOG/native-3.json",
"status": "HOLD"
}
],
"omni_outcomes": [
{
"id": "CAP-BENEFITS-CATALOG-O1",
"persona_scenario": "Cross-module Benefits catalog and lifecycle operator",
"action_workflow": "CAP-BENEFITS-CATALOG omni interaction 1",
"measurable_assertion": "CAP-BENEFITS-CATALOG omni measurable assertion 1: scope-safe typed object/action linkage",
"required_receipts": "docs/evidence/console/CAP-BENEFITS-CATALOG/omni-1.json",
"status": "HOLD"
},
{
"id": "CAP-BENEFITS-CATALOG-O2",
"persona_scenario": "Cross-module Benefits catalog and lifecycle operator",
"action_workflow": "CAP-BENEFITS-CATALOG omni interaction 2",
"measurable_assertion": "CAP-BENEFITS-CATALOG omni measurable assertion 2: auditable lineage across the module boundary",
"required_receipts": "docs/evidence/console/CAP-BENEFITS-CATALOG/omni-2.json",
"status": "HOLD"
}
],
"independent_outcome_review": {
"status": "HOLD",
"reason": "No independent candidate-bound outcome review receipt is admitted."
},
"dossier_status": "HOLD_INSUFFICIENT_CATEGORY_DOSSIER",
"missing_dossier_reason": "No category-native comparator dossier exists yet for Benefits catalog and lifecycle; seed references are not comparator evidence."
},
"jurisdiction_bindings": [
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-PRIVACY-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-WORKFORCE-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-SAFETY-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-FINANCE-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-LOCATION-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
},
{
"jurisdiction_id": "JUR-KR-001",
"control_id": "CTRL-KR-RECORDS-001",
"status": "HOLD",
"reason": "Qualified Korean legal/control source and candidate-bound test/evidence receipt have not been admitted."
}
],
"historical_worktree": "/Users/jasonlee/Developer/maintenance-worktrees/console-benefit-20260723",
"historical_branch": "codex/console-benefit-20260723",
"historical_lane_assignments": null,
"lane_assignments": null,
"historical_reset_state": {
"design_contract": "implemented_contract",
"backend": "implemented_but_buck2_unregistered",
"frontend": "frontend_surface_deleted_by_2026_07_28_clean_slate_pivot",
"e2e": "component_and_app_router_passed",
"runtime": "dev_auth_empty_state_verified_on_restarted_backend",
"independent_review": "i1_non_independent_approved",
"production_exposure": "dark"
}
},
{
"id": "CAP-COMPLIANCE-CATALOG",
"label": "Compliance obligation, regulation, framework, control, and evidence catalog",
"evidence_basis": [
"repository_contract",
"dated_audit"
],
"frontier": 1,
"priority": {
"as_of": "2026-07-23",
"inputs": {
"user_workflow_value": 0.85,
"dependency_unlock": 0.8,
"correctness_and_risk_reduction": 0.9,
"visual_or_functional_parity_gap": 0.8,
"business_coverage_gain": 0.7,
"verification_readiness": 0.55,
"collision_probability": 0.55,
"unpriced_dependency_cost": 0.45
},
"score": 0.67
},
"dependencies": [
"CAP-SHARED-ONTOLOGY-WORKFLOW"
],
"owner": "console-compliance",
"worktree": null,
"branch": null,
"commits": [
"25f6b8e0"
],
"integration_commits": [],
"lane_assignments": null,
"ownership": {
"frontend_roots": [],
"backend_roots": [
"backend/crates/compliance/domain/**",
"backend/crates/compliance/application/**",
"backend/crates/compliance/adapter-postgres/**",
"backend/crates/compliance/rest/**",
"backend/app/tests/compliance_catalog_api.rs"
],
"api_schema_roots": [
"backend/openapi/openapi.yaml"
],
"migration_owner": "compliance-backend",
"integration_owner": "console-consolidation",
"private_roots": [
"backend/crates/compliance/domain/**",
"backend/crates/compliance/application/**",
"backend/crates/compliance/adapter-postgres/**",
"backend/crates/compliance/rest/**",
"backend/app/tests/compliance_catalog_api.rs"
],
"serial_roots": [
"backend/openapi/openapi.yaml"
]
},
"routes": [
"/console/compliance",
"/api/v1/compliance/obligations",
"/api/v1/compliance/regulations",
"/api/v1/compliance/frameworks",
"/api/v1/compliance/controls",
"/api/v1/compliance/evidence-bindings",
"/api/v1/compliance/evidence-bindings/{id}/accept"
],
"signature_story": {
"id": "STORY-COMPLIANCE-001",
"outcome": "A qualified compliance owner traces a regulation to obligations, controls, and accepted evidence, transitions governed lifecycle with audit, while unauthorized and cross-tenant reads reveal neither rows nor counts."
},
"evidence_path": "docs/evidence/console/CAP-COMPLIANCE-CATALOG",
"tests": {
"files": [
"backend/app/tests/compliance_catalog_api.rs",
"scripts/check-compliance-catalog-openapi-contract.test.mjs",
"backend/crates/compliance/adapter-postgres/tests/location_store.rs",
"backend/crates/compliance/adapter-postgres/tests/location_consent_status_rls_as_runtime_role.rs"
],
"leaf_commands": [
"npm --workspace web test -- --run src/console/compliance/EvidenceBindingWorkbench.test.tsx src/console/compliance/complianceApi.test.ts",
"npm run test:api-client-contract:ts",
"node --test scripts/check-compliance-catalog-openapi-contract.test.mjs",
"npm run check:ts",
"npm run check:api-drift:portable",
"npm run check:api-drift:swift",
"rustfmt --edition 2024 --check backend/crates/compliance/adapter-postgres/tests/location_store.rs backend/crates/compliance/adapter-postgres/tests/location_consent_status_rls_as_runtime_role.rs",
"git diff --check"
],
"buck2_targets": []
},
"state": {
"design_contract": "HOLD",
"backend": "HOLD",
"frontend": "HOLD",
"e2e": "HOLD",
"runtime": "HOLD",
"independent_review": "HOLD",
"production_exposure": "HOLD"
},
"resource_requirements": {
"writer": 1,
"postgres": 0,
"browser": 0,
"ios": 0,
"graph": 1,
"cas": 1
},
"historical_state": {
"design_contract": "openapi_and_generated_clients_updated_pending_integrated_review",
"backend": "evidence_accept_lifecycle_and_tenant_race_coverage_implemented_pending_central_buck",
"frontend": "typed_accept_action_authority_and_session_fences_implemented_pending_integrated_review",
"e2e": "component_and_contract_coverage_expanded_runtime_postgres_target_pending_central_buck",
"runtime": "not_run_in_this_isolated_lane",
"independent_review": "request_changes_addressed_pending_re_review",
"production_exposure": "dark"
},
"historical_commits": [
"25f6b8e0"
],
"historical_integration_commits": [],
"truth": {
"declared": "DECLARED",
"implementation": "HOLD",
"verification": "HOLD",
"exposure": "HOLD"
},
"delivery_unit": {
"id": "DU-COMPLIANCE-CATALOG",
"kind": "module_capability",
"buck2_targets": [],
"reason": "Exact candidate-bound Buck2 target set has not been independently established; this registry preserves HOLD rather than inventing a target.",
"rust_status": "REQUIRED_UNRESOLVED"
},
"dependency_edges": [
{
"target": "CAP-SHARED-ONTOLOGY-WORKFLOW",
"type": "requires"
}
],
"route_presentation": {
"route_keys": [],
"source_mounted": false,
"production_exposed": false,
"registry_body_present": false,
"nav_declared": false,
"evidence_receipt_status": "HOLD",
"source": "exact candidate source inventory"
},
"candidate_evidence": {
"status": "HOLD",
"reason": "No exact candidate-bound module completion receipt has been admitted; legacy implementation and local-train claims remain historical only.",
"paths": [
"docs/evidence/console/CAP-COMPLIANCE-CATALOG"
],
"contract": {
"backend_binary_digest_or_build_sha": "HOLD: P1D found the healthy dev-auth backend was built before exact candidate and embeds/exposes no build SHA or binary digest.",
"database": "HOLD: no exact candidate database receipt admitted.",
"api": "HOLD: no exact candidate API receipt admitted.",
"browser": "HOLD: local dev-auth stack is healthy but no exact candidate browser receipt admitted.",