xytara 2.0.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +6 -0
- package/ADAPTER_START_HERE.md +56 -0
- package/BSV_TERANODE_SETUP.md +30 -1
- package/CARRIED_HANDOFF_DEMO.md +60 -0
- package/EXAMPLE_PATHS.md +53 -0
- package/FINAL_CONTRACT.md +6 -6
- package/OPERATIONS_RUNBOOK.md +65 -0
- package/OPERATOR_START_HERE.md +63 -0
- package/PARTNER_READY_PATH.md +71 -0
- package/PROGRAM_COMPLETE_RELEASE.md +63 -0
- package/PROGRAM_STATUS.md +57 -0
- package/PUBLIC_DEMO_SCRIPT.md +78 -0
- package/PUBLISH_PLAN.md +14 -0
- package/README.md +142 -6
- package/RELEASE_CHECKLIST.md +16 -0
- package/RELEASE_NOTES.md +28 -0
- package/SERVICE_CONTRACT.md +4 -4
- package/START_HERE.md +32 -0
- package/SUPABASE_RUNTIME_STATE_SETUP.md +61 -0
- package/WHY_XYTARA_XOONYA.md +63 -0
- package/adapters/examples/minimal-third-party-execution-adapter.js +61 -0
- package/adapters/examples/minimal-third-party-execution-adapter.manifest.json +79 -0
- package/adapters/examples/minimal-third-party-execution-registration.record.json +26 -0
- package/adapters/examples/minimal-third-party-execution.certification-pack.json +22 -0
- package/adapters/examples/minimal-third-party-execution.submission-bundle.json +126 -0
- package/bin/xytara-release.js +1419 -0
- package/bin/xytara-run.js +186 -0
- package/examples/adapter_review_walkthrough.js +53 -0
- package/examples/export_carried_handoff.js +80 -0
- package/examples/funded_runtime_walkthrough.js +70 -0
- package/examples/partner_launch_walkthrough.js +43 -0
- package/examples/quickstart.js +3255 -0
- package/index.js +87 -1
- package/lib/adapter_pack.js +118 -0
- package/lib/adapter_partner_pack.js +89 -0
- package/lib/adapter_promotion_pack.js +89 -0
- package/lib/announcement_pack.js +61 -0
- package/lib/commerce_artifacts.js +3 -0
- package/lib/commerce_economics.js +14 -0
- package/lib/commerce_reports.js +26 -1
- package/lib/commerce_shell.js +18 -2
- package/lib/ecosystem_entry.js +64 -0
- package/lib/launch_narrative.js +53 -0
- package/lib/outreach_copy_pack.js +51 -0
- package/lib/outreach_message_pack.js +71 -0
- package/lib/outreach_proof.js +71 -0
- package/lib/outreach_target_pack.js +60 -0
- package/lib/phase_10_closeout_pack.js +45 -0
- package/lib/phase_10_completion_pack.js +76 -0
- package/lib/phase_10_decision_record_pack.js +54 -0
- package/lib/phase_10_decision_resolution_pack.js +53 -0
- package/lib/phase_10_demand_signal_adapters_runtime_pack.js +74 -0
- package/lib/phase_10_ecosystem_backlog_triage_runtime_pack.js +74 -0
- package/lib/phase_10_freeze_baseline_pack.js +67 -0
- package/lib/phase_10_freeze_review_pack.js +64 -0
- package/lib/phase_10_gate_pack.js +57 -0
- package/lib/phase_10_long_tail_continuity_pack.js +80 -0
- package/lib/phase_10_long_tail_ecosystem_pack.js +66 -0
- package/lib/phase_10_niche_extension_registry_runtime_pack.js +74 -0
- package/lib/phase_1_claude_mcp_pack.js +60 -0
- package/lib/phase_1_claude_mcp_runtime_pack.js +52 -0
- package/lib/phase_1_ecosystem_pack.js +67 -0
- package/lib/phase_1_openai_codex_pack.js +60 -0
- package/lib/phase_1_openai_codex_runtime_pack.js +52 -0
- package/lib/phase_2_base_runtime_pack.js +71 -0
- package/lib/phase_2_base_usdc_runtime_pack.js +72 -0
- package/lib/phase_2_closeout_pack.js +65 -0
- package/lib/phase_2_completion_pack.js +113 -0
- package/lib/phase_2_decision_record_pack.js +66 -0
- package/lib/phase_2_decision_resolution_pack.js +69 -0
- package/lib/phase_2_eth_runtime_pack.js +70 -0
- package/lib/phase_2_evm_base_runtime_pack.js +73 -0
- package/lib/phase_2_evm_runtime_pack.js +71 -0
- package/lib/phase_2_flip_preview_pack.js +60 -0
- package/lib/phase_2_freeze_review_pack.js +99 -0
- package/lib/phase_2_gate_pack.js +77 -0
- package/lib/phase_2_payment_rails_pack.js +71 -0
- package/lib/phase_2_usdc_runtime_pack.js +71 -0
- package/lib/phase_3_brc_runtime_pack.js +81 -0
- package/lib/phase_3_bsv_teranode_runtime_pack.js +83 -0
- package/lib/phase_3_closeout_pack.js +62 -0
- package/lib/phase_3_completion_pack.js +94 -0
- package/lib/phase_3_decision_record_pack.js +64 -0
- package/lib/phase_3_decision_resolution_pack.js +69 -0
- package/lib/phase_3_freeze_baseline_pack.js +67 -0
- package/lib/phase_3_freeze_review_pack.js +80 -0
- package/lib/phase_3_gate_pack.js +76 -0
- package/lib/phase_3_metanet_runtime_pack.js +81 -0
- package/lib/phase_3_native_bsv_pack.js +91 -0
- package/lib/phase_3_native_continuity_pack.js +82 -0
- package/lib/phase_4_attestation_runtime_pack.js +75 -0
- package/lib/phase_4_closeout_pack.js +45 -0
- package/lib/phase_4_completion_pack.js +94 -0
- package/lib/phase_4_decision_record_pack.js +54 -0
- package/lib/phase_4_decision_resolution_pack.js +45 -0
- package/lib/phase_4_erc8004_runtime_pack.js +76 -0
- package/lib/phase_4_freeze_baseline_pack.js +67 -0
- package/lib/phase_4_freeze_review_pack.js +68 -0
- package/lib/phase_4_gate_pack.js +58 -0
- package/lib/phase_4_identity_registry_runtime_pack.js +75 -0
- package/lib/phase_4_identity_trust_pack.js +73 -0
- package/lib/phase_4_trust_continuity_pack.js +86 -0
- package/lib/phase_5_antelope_runtime_pack.js +76 -0
- package/lib/phase_5_closeout_pack.js +44 -0
- package/lib/phase_5_completion_pack.js +82 -0
- package/lib/phase_5_decision_record_pack.js +54 -0
- package/lib/phase_5_decision_resolution_pack.js +45 -0
- package/lib/phase_5_freeze_baseline_pack.js +67 -0
- package/lib/phase_5_freeze_review_pack.js +68 -0
- package/lib/phase_5_gate_pack.js +58 -0
- package/lib/phase_5_major_rails_continuity_pack.js +86 -0
- package/lib/phase_5_major_rails_pack.js +74 -0
- package/lib/phase_5_proton_xpr_runtime_pack.js +76 -0
- package/lib/phase_5_solana_runtime_pack.js +76 -0
- package/lib/phase_6_autogen_runtime_pack.js +72 -0
- package/lib/phase_6_closeout_pack.js +46 -0
- package/lib/phase_6_completion_pack.js +77 -0
- package/lib/phase_6_decision_record_pack.js +54 -0
- package/lib/phase_6_decision_resolution_pack.js +53 -0
- package/lib/phase_6_framework_continuity_pack.js +81 -0
- package/lib/phase_6_framework_runtime_pack.js +68 -0
- package/lib/phase_6_freeze_baseline_pack.js +68 -0
- package/lib/phase_6_freeze_review_pack.js +65 -0
- package/lib/phase_6_gate_pack.js +59 -0
- package/lib/phase_6_langchain_runtime_pack.js +72 -0
- package/lib/phase_6_langgraph_runtime_pack.js +72 -0
- package/lib/phase_6_semantic_kernel_runtime_pack.js +72 -0
- package/lib/phase_7_closeout_pack.js +45 -0
- package/lib/phase_7_completion_pack.js +85 -0
- package/lib/phase_7_decision_record_pack.js +53 -0
- package/lib/phase_7_decision_resolution_pack.js +53 -0
- package/lib/phase_7_event_system_continuity_pack.js +89 -0
- package/lib/phase_7_event_system_pack.js +76 -0
- package/lib/phase_7_freeze_baseline_pack.js +74 -0
- package/lib/phase_7_freeze_review_pack.js +65 -0
- package/lib/phase_7_gate_pack.js +58 -0
- package/lib/phase_7_kafka_runtime_pack.js +74 -0
- package/lib/phase_7_mqtt_runtime_pack.js +74 -0
- package/lib/phase_7_nats_runtime_pack.js +74 -0
- package/lib/phase_7_webhook_event_bus_runtime_pack.js +74 -0
- package/lib/phase_8_closeout_pack.js +46 -0
- package/lib/phase_8_completion_pack.js +82 -0
- package/lib/phase_8_decision_record_pack.js +54 -0
- package/lib/phase_8_decision_resolution_pack.js +53 -0
- package/lib/phase_8_external_receipt_import_runtime_pack.js +74 -0
- package/lib/phase_8_external_result_import_runtime_pack.js +74 -0
- package/lib/phase_8_freeze_baseline_pack.js +71 -0
- package/lib/phase_8_freeze_review_pack.js +64 -0
- package/lib/phase_8_gate_pack.js +58 -0
- package/lib/phase_8_proof_bridge_continuity_pack.js +86 -0
- package/lib/phase_8_proof_bridges_pack.js +72 -0
- package/lib/phase_8_proof_bundle_normalization_runtime_pack.js +74 -0
- package/lib/phase_9_closeout_pack.js +46 -0
- package/lib/phase_9_completion_pack.js +82 -0
- package/lib/phase_9_custody_refs_runtime_pack.js +74 -0
- package/lib/phase_9_decision_record_pack.js +54 -0
- package/lib/phase_9_decision_resolution_pack.js +53 -0
- package/lib/phase_9_freeze_baseline_pack.js +71 -0
- package/lib/phase_9_freeze_review_pack.js +64 -0
- package/lib/phase_9_gate_pack.js +58 -0
- package/lib/phase_9_operator_accounting_bridges_runtime_pack.js +74 -0
- package/lib/phase_9_treasury_connectivity_pack.js +72 -0
- package/lib/phase_9_treasury_continuity_pack.js +86 -0
- package/lib/phase_9_treasury_destinations_runtime_pack.js +74 -0
- package/lib/phase_program_pack.js +120 -0
- package/lib/publish_plan.js +51 -0
- package/lib/release_candidate.js +50 -0
- package/lib/release_center.js +1085 -0
- package/lib/release_history.js +72 -0
- package/lib/release_manifest.js +114 -0
- package/lib/release_pack.js +454 -0
- package/lib/runtime_state_store.js +354 -0
- package/lib/settlement_bsv_live.js +262 -13
- package/lib/soft_launch_pack.js +78 -0
- package/package.json +24 -2
- package/server.js +2562 -220
|
@@ -0,0 +1,1085 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const {
|
|
4
|
+
summarizeReleasePack,
|
|
5
|
+
summarizeComparisonPack,
|
|
6
|
+
summarizeAdoptionPack,
|
|
7
|
+
summarizeScenarioPack,
|
|
8
|
+
summarizeLaunchPack
|
|
9
|
+
} = require("./release_pack");
|
|
10
|
+
const {
|
|
11
|
+
summarizeReleaseManifest,
|
|
12
|
+
summarizeLaunchNotes
|
|
13
|
+
} = require("./release_manifest");
|
|
14
|
+
const {
|
|
15
|
+
summarizeReleaseHistory
|
|
16
|
+
} = require("./release_history");
|
|
17
|
+
const {
|
|
18
|
+
summarizeAdapterPack
|
|
19
|
+
} = require("./adapter_pack");
|
|
20
|
+
const {
|
|
21
|
+
summarizeAdapterPromotionPack
|
|
22
|
+
} = require("./adapter_promotion_pack");
|
|
23
|
+
const {
|
|
24
|
+
summarizeAdapterPartnerPack
|
|
25
|
+
} = require("./adapter_partner_pack");
|
|
26
|
+
const {
|
|
27
|
+
summarizeSoftLaunchPack
|
|
28
|
+
} = require("./soft_launch_pack");
|
|
29
|
+
const {
|
|
30
|
+
summarizeOutreachCopyPack
|
|
31
|
+
} = require("./outreach_copy_pack");
|
|
32
|
+
const {
|
|
33
|
+
summarizeOutreachTargetPack
|
|
34
|
+
} = require("./outreach_target_pack");
|
|
35
|
+
const {
|
|
36
|
+
summarizeOutreachMessagePack
|
|
37
|
+
} = require("./outreach_message_pack");
|
|
38
|
+
const {
|
|
39
|
+
summarizePhaseProgramPack
|
|
40
|
+
} = require("./phase_program_pack");
|
|
41
|
+
const {
|
|
42
|
+
summarizePhase1EcosystemPack
|
|
43
|
+
} = require("./phase_1_ecosystem_pack");
|
|
44
|
+
const {
|
|
45
|
+
summarizePhase1OpenaiCodexPack
|
|
46
|
+
} = require("./phase_1_openai_codex_pack");
|
|
47
|
+
const {
|
|
48
|
+
summarizePhase1ClaudeMcpPack
|
|
49
|
+
} = require("./phase_1_claude_mcp_pack");
|
|
50
|
+
const {
|
|
51
|
+
summarizePhase1OpenaiCodexRuntimePack
|
|
52
|
+
} = require("./phase_1_openai_codex_runtime_pack");
|
|
53
|
+
const {
|
|
54
|
+
summarizePhase1ClaudeMcpRuntimePack
|
|
55
|
+
} = require("./phase_1_claude_mcp_runtime_pack");
|
|
56
|
+
const {
|
|
57
|
+
summarizePhase2PaymentRailsPack
|
|
58
|
+
} = require("./phase_2_payment_rails_pack");
|
|
59
|
+
const {
|
|
60
|
+
summarizePhase2EvmBaseRuntimePack
|
|
61
|
+
} = require("./phase_2_evm_base_runtime_pack");
|
|
62
|
+
const {
|
|
63
|
+
summarizePhase2BaseUsdcRuntimePack
|
|
64
|
+
} = require("./phase_2_base_usdc_runtime_pack");
|
|
65
|
+
const {
|
|
66
|
+
summarizePhase2EthRuntimePack
|
|
67
|
+
} = require("./phase_2_eth_runtime_pack");
|
|
68
|
+
const {
|
|
69
|
+
summarizePhase2EvmRuntimePack
|
|
70
|
+
} = require("./phase_2_evm_runtime_pack");
|
|
71
|
+
const {
|
|
72
|
+
summarizePhase2BaseRuntimePack
|
|
73
|
+
} = require("./phase_2_base_runtime_pack");
|
|
74
|
+
const {
|
|
75
|
+
summarizePhase2UsdcRuntimePack
|
|
76
|
+
} = require("./phase_2_usdc_runtime_pack");
|
|
77
|
+
const {
|
|
78
|
+
summarizePhase2CompletionPack
|
|
79
|
+
} = require("./phase_2_completion_pack");
|
|
80
|
+
const {
|
|
81
|
+
summarizePhase2FreezeReviewPack
|
|
82
|
+
} = require("./phase_2_freeze_review_pack");
|
|
83
|
+
const {
|
|
84
|
+
summarizePhase2GatePack
|
|
85
|
+
} = require("./phase_2_gate_pack");
|
|
86
|
+
const {
|
|
87
|
+
summarizePhase2CloseoutPack
|
|
88
|
+
} = require("./phase_2_closeout_pack");
|
|
89
|
+
const {
|
|
90
|
+
summarizePhase2DecisionRecordPack
|
|
91
|
+
} = require("./phase_2_decision_record_pack");
|
|
92
|
+
const {
|
|
93
|
+
summarizePhase2DecisionResolutionPack
|
|
94
|
+
} = require("./phase_2_decision_resolution_pack");
|
|
95
|
+
const {
|
|
96
|
+
summarizePhase2FlipPreviewPack
|
|
97
|
+
} = require("./phase_2_flip_preview_pack");
|
|
98
|
+
const {
|
|
99
|
+
summarizePhase3NativeBsvPack
|
|
100
|
+
} = require("./phase_3_native_bsv_pack");
|
|
101
|
+
const {
|
|
102
|
+
summarizePhase3BsvTeranodeRuntimePack
|
|
103
|
+
} = require("./phase_3_bsv_teranode_runtime_pack");
|
|
104
|
+
const {
|
|
105
|
+
summarizePhase3MetanetRuntimePack
|
|
106
|
+
} = require("./phase_3_metanet_runtime_pack");
|
|
107
|
+
const {
|
|
108
|
+
summarizePhase3BrcRuntimePack
|
|
109
|
+
} = require("./phase_3_brc_runtime_pack");
|
|
110
|
+
const {
|
|
111
|
+
summarizePhase3NativeContinuityPack
|
|
112
|
+
} = require("./phase_3_native_continuity_pack");
|
|
113
|
+
const {
|
|
114
|
+
summarizePhase3FreezeBaselinePack
|
|
115
|
+
} = require("./phase_3_freeze_baseline_pack");
|
|
116
|
+
const {
|
|
117
|
+
summarizePhase3CompletionPack
|
|
118
|
+
} = require("./phase_3_completion_pack");
|
|
119
|
+
const {
|
|
120
|
+
summarizePhase3FreezeReviewPack
|
|
121
|
+
} = require("./phase_3_freeze_review_pack");
|
|
122
|
+
const {
|
|
123
|
+
summarizePhase3GatePack
|
|
124
|
+
} = require("./phase_3_gate_pack");
|
|
125
|
+
const {
|
|
126
|
+
summarizePhase3CloseoutPack
|
|
127
|
+
} = require("./phase_3_closeout_pack");
|
|
128
|
+
const {
|
|
129
|
+
summarizePhase3DecisionRecordPack
|
|
130
|
+
} = require("./phase_3_decision_record_pack");
|
|
131
|
+
const {
|
|
132
|
+
summarizePhase3DecisionResolutionPack
|
|
133
|
+
} = require("./phase_3_decision_resolution_pack");
|
|
134
|
+
const {
|
|
135
|
+
summarizePhase4IdentityTrustPack
|
|
136
|
+
} = require("./phase_4_identity_trust_pack");
|
|
137
|
+
const {
|
|
138
|
+
summarizePhase4Erc8004RuntimePack
|
|
139
|
+
} = require("./phase_4_erc8004_runtime_pack");
|
|
140
|
+
const {
|
|
141
|
+
summarizePhase4IdentityRegistryRuntimePack
|
|
142
|
+
} = require("./phase_4_identity_registry_runtime_pack");
|
|
143
|
+
const {
|
|
144
|
+
summarizePhase4AttestationRuntimePack
|
|
145
|
+
} = require("./phase_4_attestation_runtime_pack");
|
|
146
|
+
const {
|
|
147
|
+
summarizePhase4TrustContinuityPack
|
|
148
|
+
} = require("./phase_4_trust_continuity_pack");
|
|
149
|
+
const {
|
|
150
|
+
summarizePhase4CompletionPack
|
|
151
|
+
} = require("./phase_4_completion_pack");
|
|
152
|
+
const {
|
|
153
|
+
summarizePhase4FreezeReviewPack
|
|
154
|
+
} = require("./phase_4_freeze_review_pack");
|
|
155
|
+
const {
|
|
156
|
+
summarizePhase4FreezeBaselinePack
|
|
157
|
+
} = require("./phase_4_freeze_baseline_pack");
|
|
158
|
+
const {
|
|
159
|
+
summarizePhase4GatePack
|
|
160
|
+
} = require("./phase_4_gate_pack");
|
|
161
|
+
const {
|
|
162
|
+
summarizePhase4CloseoutPack
|
|
163
|
+
} = require("./phase_4_closeout_pack");
|
|
164
|
+
const {
|
|
165
|
+
summarizePhase4DecisionRecordPack
|
|
166
|
+
} = require("./phase_4_decision_record_pack");
|
|
167
|
+
const {
|
|
168
|
+
summarizePhase4DecisionResolutionPack
|
|
169
|
+
} = require("./phase_4_decision_resolution_pack");
|
|
170
|
+
const {
|
|
171
|
+
summarizePhase5MajorRailsPack
|
|
172
|
+
} = require("./phase_5_major_rails_pack");
|
|
173
|
+
const {
|
|
174
|
+
summarizePhase5MajorRailsContinuityPack
|
|
175
|
+
} = require("./phase_5_major_rails_continuity_pack");
|
|
176
|
+
const {
|
|
177
|
+
summarizePhase5CompletionPack
|
|
178
|
+
} = require("./phase_5_completion_pack");
|
|
179
|
+
const {
|
|
180
|
+
summarizePhase5FreezeReviewPack
|
|
181
|
+
} = require("./phase_5_freeze_review_pack");
|
|
182
|
+
const {
|
|
183
|
+
summarizePhase5FreezeBaselinePack
|
|
184
|
+
} = require("./phase_5_freeze_baseline_pack");
|
|
185
|
+
const {
|
|
186
|
+
summarizePhase5GatePack
|
|
187
|
+
} = require("./phase_5_gate_pack");
|
|
188
|
+
const {
|
|
189
|
+
summarizePhase5CloseoutPack
|
|
190
|
+
} = require("./phase_5_closeout_pack");
|
|
191
|
+
const {
|
|
192
|
+
summarizePhase5DecisionRecordPack
|
|
193
|
+
} = require("./phase_5_decision_record_pack");
|
|
194
|
+
const {
|
|
195
|
+
summarizePhase5DecisionResolutionPack
|
|
196
|
+
} = require("./phase_5_decision_resolution_pack");
|
|
197
|
+
const {
|
|
198
|
+
summarizePhase5SolanaRuntimePack
|
|
199
|
+
} = require("./phase_5_solana_runtime_pack");
|
|
200
|
+
const {
|
|
201
|
+
summarizePhase5AntelopeRuntimePack
|
|
202
|
+
} = require("./phase_5_antelope_runtime_pack");
|
|
203
|
+
const {
|
|
204
|
+
summarizePhase5ProtonXprRuntimePack
|
|
205
|
+
} = require("./phase_5_proton_xpr_runtime_pack");
|
|
206
|
+
const {
|
|
207
|
+
summarizePhase6FrameworkRuntimePack
|
|
208
|
+
} = require("./phase_6_framework_runtime_pack");
|
|
209
|
+
const {
|
|
210
|
+
summarizePhase6LanggraphRuntimePack
|
|
211
|
+
} = require("./phase_6_langgraph_runtime_pack");
|
|
212
|
+
const {
|
|
213
|
+
summarizePhase6LangchainRuntimePack
|
|
214
|
+
} = require("./phase_6_langchain_runtime_pack");
|
|
215
|
+
const {
|
|
216
|
+
summarizePhase6AutogenRuntimePack
|
|
217
|
+
} = require("./phase_6_autogen_runtime_pack");
|
|
218
|
+
const {
|
|
219
|
+
summarizePhase6SemanticKernelRuntimePack
|
|
220
|
+
} = require("./phase_6_semantic_kernel_runtime_pack");
|
|
221
|
+
const {
|
|
222
|
+
summarizePhase6FrameworkContinuityPack
|
|
223
|
+
} = require("./phase_6_framework_continuity_pack");
|
|
224
|
+
const {
|
|
225
|
+
summarizePhase6CompletionPack
|
|
226
|
+
} = require("./phase_6_completion_pack");
|
|
227
|
+
const {
|
|
228
|
+
summarizePhase6FreezeReviewPack
|
|
229
|
+
} = require("./phase_6_freeze_review_pack");
|
|
230
|
+
const {
|
|
231
|
+
summarizePhase6FreezeBaselinePack
|
|
232
|
+
} = require("./phase_6_freeze_baseline_pack");
|
|
233
|
+
const {
|
|
234
|
+
summarizePhase6GatePack
|
|
235
|
+
} = require("./phase_6_gate_pack");
|
|
236
|
+
const {
|
|
237
|
+
summarizePhase6CloseoutPack
|
|
238
|
+
} = require("./phase_6_closeout_pack");
|
|
239
|
+
const {
|
|
240
|
+
summarizePhase6DecisionRecordPack
|
|
241
|
+
} = require("./phase_6_decision_record_pack");
|
|
242
|
+
const {
|
|
243
|
+
summarizePhase6DecisionResolutionPack
|
|
244
|
+
} = require("./phase_6_decision_resolution_pack");
|
|
245
|
+
const {
|
|
246
|
+
summarizePhase7EventSystemPack
|
|
247
|
+
} = require("./phase_7_event_system_pack");
|
|
248
|
+
const {
|
|
249
|
+
summarizePhase7KafkaRuntimePack
|
|
250
|
+
} = require("./phase_7_kafka_runtime_pack");
|
|
251
|
+
const {
|
|
252
|
+
summarizePhase7NatsRuntimePack
|
|
253
|
+
} = require("./phase_7_nats_runtime_pack");
|
|
254
|
+
const {
|
|
255
|
+
summarizePhase7MqttRuntimePack
|
|
256
|
+
} = require("./phase_7_mqtt_runtime_pack");
|
|
257
|
+
const {
|
|
258
|
+
summarizePhase7WebhookEventBusRuntimePack
|
|
259
|
+
} = require("./phase_7_webhook_event_bus_runtime_pack");
|
|
260
|
+
const {
|
|
261
|
+
summarizePhase7EventSystemContinuityPack
|
|
262
|
+
} = require("./phase_7_event_system_continuity_pack");
|
|
263
|
+
const {
|
|
264
|
+
summarizePhase7CompletionPack
|
|
265
|
+
} = require("./phase_7_completion_pack");
|
|
266
|
+
const {
|
|
267
|
+
summarizePhase7FreezeBaselinePack
|
|
268
|
+
} = require("./phase_7_freeze_baseline_pack");
|
|
269
|
+
const {
|
|
270
|
+
summarizePhase7FreezeReviewPack
|
|
271
|
+
} = require("./phase_7_freeze_review_pack");
|
|
272
|
+
const {
|
|
273
|
+
summarizePhase7GatePack
|
|
274
|
+
} = require("./phase_7_gate_pack");
|
|
275
|
+
const {
|
|
276
|
+
summarizePhase7CloseoutPack
|
|
277
|
+
} = require("./phase_7_closeout_pack");
|
|
278
|
+
const {
|
|
279
|
+
summarizePhase7DecisionRecordPack
|
|
280
|
+
} = require("./phase_7_decision_record_pack");
|
|
281
|
+
const {
|
|
282
|
+
summarizePhase7DecisionResolutionPack
|
|
283
|
+
} = require("./phase_7_decision_resolution_pack");
|
|
284
|
+
const {
|
|
285
|
+
summarizePhase8ProofBridgesPack
|
|
286
|
+
} = require("./phase_8_proof_bridges_pack");
|
|
287
|
+
const {
|
|
288
|
+
summarizePhase8ProofBridgeContinuityPack
|
|
289
|
+
} = require("./phase_8_proof_bridge_continuity_pack");
|
|
290
|
+
const {
|
|
291
|
+
summarizePhase8CompletionPack
|
|
292
|
+
} = require("./phase_8_completion_pack");
|
|
293
|
+
const {
|
|
294
|
+
summarizePhase8FreezeBaselinePack
|
|
295
|
+
} = require("./phase_8_freeze_baseline_pack");
|
|
296
|
+
const {
|
|
297
|
+
summarizePhase8FreezeReviewPack
|
|
298
|
+
} = require("./phase_8_freeze_review_pack");
|
|
299
|
+
const {
|
|
300
|
+
summarizePhase8GatePack
|
|
301
|
+
} = require("./phase_8_gate_pack");
|
|
302
|
+
const {
|
|
303
|
+
summarizePhase8CloseoutPack
|
|
304
|
+
} = require("./phase_8_closeout_pack");
|
|
305
|
+
const {
|
|
306
|
+
summarizePhase8DecisionRecordPack
|
|
307
|
+
} = require("./phase_8_decision_record_pack");
|
|
308
|
+
const {
|
|
309
|
+
summarizePhase8DecisionResolutionPack
|
|
310
|
+
} = require("./phase_8_decision_resolution_pack");
|
|
311
|
+
const {
|
|
312
|
+
summarizePhase8ExternalResultImportRuntimePack
|
|
313
|
+
} = require("./phase_8_external_result_import_runtime_pack");
|
|
314
|
+
const {
|
|
315
|
+
summarizePhase8ExternalReceiptImportRuntimePack
|
|
316
|
+
} = require("./phase_8_external_receipt_import_runtime_pack");
|
|
317
|
+
const {
|
|
318
|
+
summarizePhase8ProofBundleNormalizationRuntimePack
|
|
319
|
+
} = require("./phase_8_proof_bundle_normalization_runtime_pack");
|
|
320
|
+
const {
|
|
321
|
+
summarizePhase9TreasuryConnectivityPack
|
|
322
|
+
} = require("./phase_9_treasury_connectivity_pack");
|
|
323
|
+
const {
|
|
324
|
+
summarizePhase9TreasuryContinuityPack
|
|
325
|
+
} = require("./phase_9_treasury_continuity_pack");
|
|
326
|
+
const {
|
|
327
|
+
summarizePhase9CompletionPack
|
|
328
|
+
} = require("./phase_9_completion_pack");
|
|
329
|
+
const {
|
|
330
|
+
summarizePhase9FreezeBaselinePack
|
|
331
|
+
} = require("./phase_9_freeze_baseline_pack");
|
|
332
|
+
const {
|
|
333
|
+
summarizePhase9FreezeReviewPack
|
|
334
|
+
} = require("./phase_9_freeze_review_pack");
|
|
335
|
+
const {
|
|
336
|
+
summarizePhase9GatePack
|
|
337
|
+
} = require("./phase_9_gate_pack");
|
|
338
|
+
const {
|
|
339
|
+
summarizePhase9CloseoutPack
|
|
340
|
+
} = require("./phase_9_closeout_pack");
|
|
341
|
+
const {
|
|
342
|
+
summarizePhase9DecisionRecordPack
|
|
343
|
+
} = require("./phase_9_decision_record_pack");
|
|
344
|
+
const {
|
|
345
|
+
summarizePhase9DecisionResolutionPack
|
|
346
|
+
} = require("./phase_9_decision_resolution_pack");
|
|
347
|
+
const {
|
|
348
|
+
summarizePhase9TreasuryDestinationsRuntimePack
|
|
349
|
+
} = require("./phase_9_treasury_destinations_runtime_pack");
|
|
350
|
+
const {
|
|
351
|
+
summarizePhase9CustodyRefsRuntimePack
|
|
352
|
+
} = require("./phase_9_custody_refs_runtime_pack");
|
|
353
|
+
const {
|
|
354
|
+
summarizePhase9OperatorAccountingBridgesRuntimePack
|
|
355
|
+
} = require("./phase_9_operator_accounting_bridges_runtime_pack");
|
|
356
|
+
const {
|
|
357
|
+
summarizePhase10LongTailEcosystemPack
|
|
358
|
+
} = require("./phase_10_long_tail_ecosystem_pack");
|
|
359
|
+
const {
|
|
360
|
+
summarizePhase10DemandSignalAdaptersRuntimePack
|
|
361
|
+
} = require("./phase_10_demand_signal_adapters_runtime_pack");
|
|
362
|
+
const {
|
|
363
|
+
summarizePhase10NicheExtensionRegistryRuntimePack
|
|
364
|
+
} = require("./phase_10_niche_extension_registry_runtime_pack");
|
|
365
|
+
const {
|
|
366
|
+
summarizePhase10EcosystemBacklogTriageRuntimePack
|
|
367
|
+
} = require("./phase_10_ecosystem_backlog_triage_runtime_pack");
|
|
368
|
+
const {
|
|
369
|
+
summarizePhase10LongTailContinuityPack
|
|
370
|
+
} = require("./phase_10_long_tail_continuity_pack");
|
|
371
|
+
const {
|
|
372
|
+
summarizePhase10CompletionPack
|
|
373
|
+
} = require("./phase_10_completion_pack");
|
|
374
|
+
const {
|
|
375
|
+
summarizePhase10FreezeBaselinePack
|
|
376
|
+
} = require("./phase_10_freeze_baseline_pack");
|
|
377
|
+
const {
|
|
378
|
+
summarizePhase10FreezeReviewPack
|
|
379
|
+
} = require("./phase_10_freeze_review_pack");
|
|
380
|
+
const {
|
|
381
|
+
summarizePhase10GatePack
|
|
382
|
+
} = require("./phase_10_gate_pack");
|
|
383
|
+
const {
|
|
384
|
+
summarizePhase10CloseoutPack
|
|
385
|
+
} = require("./phase_10_closeout_pack");
|
|
386
|
+
const {
|
|
387
|
+
summarizePhase10DecisionRecordPack
|
|
388
|
+
} = require("./phase_10_decision_record_pack");
|
|
389
|
+
const {
|
|
390
|
+
summarizePhase10DecisionResolutionPack
|
|
391
|
+
} = require("./phase_10_decision_resolution_pack");
|
|
392
|
+
const {
|
|
393
|
+
summarizePublishPlan
|
|
394
|
+
} = require("./publish_plan");
|
|
395
|
+
const {
|
|
396
|
+
summarizeEcosystemEntryPack
|
|
397
|
+
} = require("./ecosystem_entry");
|
|
398
|
+
const {
|
|
399
|
+
summarizeLaunchNarrativePack
|
|
400
|
+
} = require("./launch_narrative");
|
|
401
|
+
const {
|
|
402
|
+
summarizeOutreachProofPack
|
|
403
|
+
} = require("./outreach_proof");
|
|
404
|
+
const {
|
|
405
|
+
summarizeAnnouncementPack
|
|
406
|
+
} = require("./announcement_pack");
|
|
407
|
+
const {
|
|
408
|
+
summarizeReleaseCandidatePack
|
|
409
|
+
} = require("./release_candidate");
|
|
410
|
+
|
|
411
|
+
function buildReleaseCenter(options = {}) {
|
|
412
|
+
const launchSummary = summarizeLaunchPack(options);
|
|
413
|
+
return {
|
|
414
|
+
ok: true,
|
|
415
|
+
product: "xytara",
|
|
416
|
+
category: "machine-commerce-release-center",
|
|
417
|
+
center: {
|
|
418
|
+
release_summary: summarizeReleasePack(),
|
|
419
|
+
comparison_summary: summarizeComparisonPack(),
|
|
420
|
+
adoption_summary: summarizeAdoptionPack(),
|
|
421
|
+
scenario_summary: summarizeScenarioPack(),
|
|
422
|
+
launch_summary: launchSummary,
|
|
423
|
+
manifest_summary: summarizeReleaseManifest(),
|
|
424
|
+
notes_summary: summarizeLaunchNotes(),
|
|
425
|
+
history_summary: summarizeReleaseHistory(),
|
|
426
|
+
adapter_summary: summarizeAdapterPack(),
|
|
427
|
+
adapter_promotion_summary: summarizeAdapterPromotionPack(),
|
|
428
|
+
adapter_partner_summary: summarizeAdapterPartnerPack(),
|
|
429
|
+
soft_launch_summary: summarizeSoftLaunchPack(),
|
|
430
|
+
outreach_copy_summary: summarizeOutreachCopyPack(),
|
|
431
|
+
outreach_target_summary: summarizeOutreachTargetPack(),
|
|
432
|
+
outreach_message_summary: summarizeOutreachMessagePack(),
|
|
433
|
+
phase_program_summary: summarizePhaseProgramPack(),
|
|
434
|
+
phase_1_summary: summarizePhase1EcosystemPack(),
|
|
435
|
+
phase_1_openai_codex_summary: summarizePhase1OpenaiCodexPack(),
|
|
436
|
+
phase_1_openai_codex_runtime_summary: summarizePhase1OpenaiCodexRuntimePack(),
|
|
437
|
+
phase_1_claude_mcp_summary: summarizePhase1ClaudeMcpPack(),
|
|
438
|
+
phase_1_claude_mcp_runtime_summary: summarizePhase1ClaudeMcpRuntimePack(),
|
|
439
|
+
phase_2_summary: summarizePhase2PaymentRailsPack(),
|
|
440
|
+
phase_2_completion_summary: summarizePhase2CompletionPack(),
|
|
441
|
+
phase_2_freeze_review_summary: summarizePhase2FreezeReviewPack(),
|
|
442
|
+
phase_2_gate_summary: summarizePhase2GatePack(),
|
|
443
|
+
phase_2_closeout_summary: summarizePhase2CloseoutPack(),
|
|
444
|
+
phase_2_decision_record_summary: summarizePhase2DecisionRecordPack(),
|
|
445
|
+
phase_2_decision_resolution_summary: summarizePhase2DecisionResolutionPack(),
|
|
446
|
+
phase_2_flip_preview_summary: summarizePhase2FlipPreviewPack(),
|
|
447
|
+
phase_3_summary: summarizePhase3NativeBsvPack(),
|
|
448
|
+
phase_3_native_continuity_summary: summarizePhase3NativeContinuityPack(),
|
|
449
|
+
phase_3_freeze_baseline_summary: summarizePhase3FreezeBaselinePack(),
|
|
450
|
+
phase_3_completion_summary: summarizePhase3CompletionPack(),
|
|
451
|
+
phase_3_freeze_review_summary: summarizePhase3FreezeReviewPack(),
|
|
452
|
+
phase_3_gate_summary: summarizePhase3GatePack(),
|
|
453
|
+
phase_3_closeout_summary: summarizePhase3CloseoutPack(),
|
|
454
|
+
phase_3_decision_record_summary: summarizePhase3DecisionRecordPack(),
|
|
455
|
+
phase_3_decision_resolution_summary: summarizePhase3DecisionResolutionPack(),
|
|
456
|
+
phase_3_bsv_teranode_runtime_summary: summarizePhase3BsvTeranodeRuntimePack(),
|
|
457
|
+
phase_3_metanet_runtime_summary: summarizePhase3MetanetRuntimePack(),
|
|
458
|
+
phase_3_brc_runtime_summary: summarizePhase3BrcRuntimePack(),
|
|
459
|
+
phase_4_summary: summarizePhase4IdentityTrustPack(),
|
|
460
|
+
phase_4_erc8004_runtime_summary: summarizePhase4Erc8004RuntimePack(),
|
|
461
|
+
phase_4_identity_registry_runtime_summary: summarizePhase4IdentityRegistryRuntimePack(),
|
|
462
|
+
phase_4_attestation_runtime_summary: summarizePhase4AttestationRuntimePack(),
|
|
463
|
+
phase_4_trust_continuity_summary: summarizePhase4TrustContinuityPack(),
|
|
464
|
+
phase_4_completion_summary: summarizePhase4CompletionPack(),
|
|
465
|
+
phase_4_freeze_baseline_summary: summarizePhase4FreezeBaselinePack(),
|
|
466
|
+
phase_4_freeze_review_summary: summarizePhase4FreezeReviewPack(),
|
|
467
|
+
phase_4_gate_summary: summarizePhase4GatePack(),
|
|
468
|
+
phase_4_closeout_summary: summarizePhase4CloseoutPack(),
|
|
469
|
+
phase_4_decision_record_summary: summarizePhase4DecisionRecordPack(),
|
|
470
|
+
phase_4_decision_resolution_summary: summarizePhase4DecisionResolutionPack(),
|
|
471
|
+
phase_5_summary: summarizePhase5MajorRailsPack(),
|
|
472
|
+
phase_5_major_rails_continuity_summary: summarizePhase5MajorRailsContinuityPack(),
|
|
473
|
+
phase_5_completion_summary: summarizePhase5CompletionPack(),
|
|
474
|
+
phase_5_freeze_baseline_summary: summarizePhase5FreezeBaselinePack(),
|
|
475
|
+
phase_5_freeze_review_summary: summarizePhase5FreezeReviewPack(),
|
|
476
|
+
phase_5_gate_summary: summarizePhase5GatePack(),
|
|
477
|
+
phase_5_closeout_summary: summarizePhase5CloseoutPack(),
|
|
478
|
+
phase_5_decision_record_summary: summarizePhase5DecisionRecordPack(),
|
|
479
|
+
phase_5_decision_resolution_summary: summarizePhase5DecisionResolutionPack(),
|
|
480
|
+
phase_5_solana_runtime_summary: summarizePhase5SolanaRuntimePack(),
|
|
481
|
+
phase_5_antelope_runtime_summary: summarizePhase5AntelopeRuntimePack(),
|
|
482
|
+
phase_5_proton_xpr_runtime_summary: summarizePhase5ProtonXprRuntimePack(),
|
|
483
|
+
phase_6_summary: summarizePhase6FrameworkRuntimePack(),
|
|
484
|
+
phase_6_langgraph_runtime_summary: summarizePhase6LanggraphRuntimePack(),
|
|
485
|
+
phase_6_langchain_runtime_summary: summarizePhase6LangchainRuntimePack(),
|
|
486
|
+
phase_6_autogen_runtime_summary: summarizePhase6AutogenRuntimePack(),
|
|
487
|
+
phase_6_semantic_kernel_runtime_summary: summarizePhase6SemanticKernelRuntimePack(),
|
|
488
|
+
phase_6_framework_continuity_summary: summarizePhase6FrameworkContinuityPack(),
|
|
489
|
+
phase_6_completion_summary: summarizePhase6CompletionPack(),
|
|
490
|
+
phase_6_freeze_baseline_summary: summarizePhase6FreezeBaselinePack(),
|
|
491
|
+
phase_6_freeze_review_summary: summarizePhase6FreezeReviewPack(),
|
|
492
|
+
phase_6_gate_summary: summarizePhase6GatePack(),
|
|
493
|
+
phase_6_closeout_summary: summarizePhase6CloseoutPack(),
|
|
494
|
+
phase_6_decision_record_summary: summarizePhase6DecisionRecordPack(),
|
|
495
|
+
phase_6_decision_resolution_summary: summarizePhase6DecisionResolutionPack(),
|
|
496
|
+
phase_7_summary: summarizePhase7EventSystemPack(),
|
|
497
|
+
phase_7_kafka_runtime_summary: summarizePhase7KafkaRuntimePack(),
|
|
498
|
+
phase_7_nats_runtime_summary: summarizePhase7NatsRuntimePack(),
|
|
499
|
+
phase_7_mqtt_runtime_summary: summarizePhase7MqttRuntimePack(),
|
|
500
|
+
phase_7_webhook_event_bus_runtime_summary: summarizePhase7WebhookEventBusRuntimePack(),
|
|
501
|
+
phase_7_event_system_continuity_summary: summarizePhase7EventSystemContinuityPack(),
|
|
502
|
+
phase_7_completion_summary: summarizePhase7CompletionPack(),
|
|
503
|
+
phase_7_freeze_baseline_summary: summarizePhase7FreezeBaselinePack(),
|
|
504
|
+
phase_7_freeze_review_summary: summarizePhase7FreezeReviewPack(),
|
|
505
|
+
phase_7_gate_summary: summarizePhase7GatePack(),
|
|
506
|
+
phase_7_closeout_summary: summarizePhase7CloseoutPack(),
|
|
507
|
+
phase_7_decision_record_summary: summarizePhase7DecisionRecordPack(),
|
|
508
|
+
phase_7_decision_resolution_summary: summarizePhase7DecisionResolutionPack(),
|
|
509
|
+
phase_8_summary: summarizePhase8ProofBridgesPack(),
|
|
510
|
+
phase_8_proof_bridge_continuity_summary: summarizePhase8ProofBridgeContinuityPack(),
|
|
511
|
+
phase_8_completion_summary: summarizePhase8CompletionPack(),
|
|
512
|
+
phase_8_freeze_baseline_summary: summarizePhase8FreezeBaselinePack(),
|
|
513
|
+
phase_8_freeze_review_summary: summarizePhase8FreezeReviewPack(),
|
|
514
|
+
phase_8_gate_summary: summarizePhase8GatePack(),
|
|
515
|
+
phase_8_closeout_summary: summarizePhase8CloseoutPack(),
|
|
516
|
+
phase_8_decision_record_summary: summarizePhase8DecisionRecordPack(),
|
|
517
|
+
phase_8_decision_resolution_summary: summarizePhase8DecisionResolutionPack(),
|
|
518
|
+
phase_8_external_result_import_runtime_summary: summarizePhase8ExternalResultImportRuntimePack(),
|
|
519
|
+
phase_8_external_receipt_import_runtime_summary: summarizePhase8ExternalReceiptImportRuntimePack(),
|
|
520
|
+
phase_8_proof_bundle_normalization_runtime_summary: summarizePhase8ProofBundleNormalizationRuntimePack(),
|
|
521
|
+
phase_9_summary: summarizePhase9TreasuryConnectivityPack(),
|
|
522
|
+
phase_9_treasury_continuity_summary: summarizePhase9TreasuryContinuityPack(),
|
|
523
|
+
phase_9_completion_summary: summarizePhase9CompletionPack(),
|
|
524
|
+
phase_9_freeze_baseline_summary: summarizePhase9FreezeBaselinePack(),
|
|
525
|
+
phase_9_freeze_review_summary: summarizePhase9FreezeReviewPack(),
|
|
526
|
+
phase_9_gate_summary: summarizePhase9GatePack(),
|
|
527
|
+
phase_9_closeout_summary: summarizePhase9CloseoutPack(),
|
|
528
|
+
phase_9_decision_record_summary: summarizePhase9DecisionRecordPack(),
|
|
529
|
+
phase_9_decision_resolution_summary: summarizePhase9DecisionResolutionPack(),
|
|
530
|
+
phase_9_treasury_destinations_runtime_summary: summarizePhase9TreasuryDestinationsRuntimePack(),
|
|
531
|
+
phase_9_custody_refs_runtime_summary: summarizePhase9CustodyRefsRuntimePack(),
|
|
532
|
+
phase_9_operator_accounting_bridges_runtime_summary: summarizePhase9OperatorAccountingBridgesRuntimePack(),
|
|
533
|
+
phase_10_summary: summarizePhase10LongTailEcosystemPack(),
|
|
534
|
+
phase_10_demand_signal_adapters_runtime_summary: summarizePhase10DemandSignalAdaptersRuntimePack(),
|
|
535
|
+
phase_10_niche_extension_registry_runtime_summary: summarizePhase10NicheExtensionRegistryRuntimePack(),
|
|
536
|
+
phase_10_ecosystem_backlog_triage_runtime_summary: summarizePhase10EcosystemBacklogTriageRuntimePack(),
|
|
537
|
+
phase_10_long_tail_continuity_summary: summarizePhase10LongTailContinuityPack(),
|
|
538
|
+
phase_10_completion_summary: summarizePhase10CompletionPack(),
|
|
539
|
+
phase_10_freeze_baseline_summary: summarizePhase10FreezeBaselinePack(),
|
|
540
|
+
phase_10_freeze_review_summary: summarizePhase10FreezeReviewPack(),
|
|
541
|
+
phase_10_gate_summary: summarizePhase10GatePack(),
|
|
542
|
+
phase_10_closeout_summary: summarizePhase10CloseoutPack(),
|
|
543
|
+
phase_10_decision_record_summary: summarizePhase10DecisionRecordPack(),
|
|
544
|
+
phase_10_decision_resolution_summary: summarizePhase10DecisionResolutionPack(),
|
|
545
|
+
phase_2_evm_runtime_summary: summarizePhase2EvmRuntimePack(),
|
|
546
|
+
phase_2_evm_base_runtime_summary: summarizePhase2EvmBaseRuntimePack(),
|
|
547
|
+
phase_2_base_runtime_summary: summarizePhase2BaseRuntimePack(),
|
|
548
|
+
phase_2_usdc_runtime_summary: summarizePhase2UsdcRuntimePack(),
|
|
549
|
+
phase_2_base_usdc_runtime_summary: summarizePhase2BaseUsdcRuntimePack(),
|
|
550
|
+
phase_2_eth_runtime_summary: summarizePhase2EthRuntimePack(),
|
|
551
|
+
publish_plan_summary: summarizePublishPlan(),
|
|
552
|
+
ecosystem_entry_summary: summarizeEcosystemEntryPack(),
|
|
553
|
+
launch_narrative_summary: summarizeLaunchNarrativePack(),
|
|
554
|
+
outreach_proof_summary: summarizeOutreachProofPack(),
|
|
555
|
+
announcement_summary: summarizeAnnouncementPack(),
|
|
556
|
+
release_candidate_summary: summarizeReleaseCandidatePack()
|
|
557
|
+
},
|
|
558
|
+
quickstart: {
|
|
559
|
+
first_http_entrypoint: "/v1/release-pack/launch/summary",
|
|
560
|
+
first_cli_entrypoint: "xytara-release --center --summary",
|
|
561
|
+
first_run_cli: launchSummary.first_contact_cli || "xytara-run --help",
|
|
562
|
+
first_docs: [
|
|
563
|
+
"START_HERE.md",
|
|
564
|
+
"FINAL_CONTRACT.md",
|
|
565
|
+
"SERVICE_CONTRACT.md",
|
|
566
|
+
"RELEASE_NOTES.md"
|
|
567
|
+
]
|
|
568
|
+
},
|
|
569
|
+
release_surfaces: {
|
|
570
|
+
release_pack_summary: "/v1/release-pack/summary",
|
|
571
|
+
launch_summary: "/v1/release-pack/launch/summary",
|
|
572
|
+
comparison_summary: "/v1/release-pack/comparison/summary",
|
|
573
|
+
adoption_summary: "/v1/release-pack/adoption/summary",
|
|
574
|
+
scenario_summary: "/v1/release-pack/scenarios/summary",
|
|
575
|
+
manifest_summary: "/v1/release-manifest/summary",
|
|
576
|
+
notes_summary: "/v1/release-notes/summary",
|
|
577
|
+
history_summary: "/v1/release-history/summary",
|
|
578
|
+
adapter_summary: "/v1/adapter-pack/summary",
|
|
579
|
+
adapter_promotion_summary: "/v1/adapter-promotion/summary",
|
|
580
|
+
adapter_partner_summary: "/v1/adapter-partners/summary",
|
|
581
|
+
soft_launch_summary: "/v1/soft-launch/summary",
|
|
582
|
+
outreach_copy_summary: "/v1/outreach-copy/summary",
|
|
583
|
+
outreach_target_summary: "/v1/outreach-targets/summary",
|
|
584
|
+
outreach_message_summary: "/v1/outreach-messages/summary",
|
|
585
|
+
phase_program_summary: "/v1/phases/summary",
|
|
586
|
+
phase_1_summary: "/v1/phases/phase-1/summary",
|
|
587
|
+
phase_1_openai_codex_summary: "/v1/phases/phase-1/openai-codex/summary",
|
|
588
|
+
phase_1_openai_codex_runtime_summary: "/v1/phases/phase-1/openai-codex/runtime/summary",
|
|
589
|
+
phase_1_claude_mcp_summary: "/v1/phases/phase-1/claude-mcp/summary",
|
|
590
|
+
phase_1_claude_mcp_runtime_summary: "/v1/phases/phase-1/claude-mcp/runtime/summary",
|
|
591
|
+
phase_2_summary: "/v1/phases/phase-2/summary",
|
|
592
|
+
phase_2_completion_summary: "/v1/phases/phase-2/completion/summary",
|
|
593
|
+
phase_2_freeze_review_summary: "/v1/phases/phase-2/freeze-review/summary",
|
|
594
|
+
phase_2_gate_summary: "/v1/phases/phase-2/gate/summary",
|
|
595
|
+
phase_2_closeout_summary: "/v1/phases/phase-2/closeout/summary",
|
|
596
|
+
phase_2_decision_record_summary: "/v1/phases/phase-2/decision-record/summary",
|
|
597
|
+
phase_2_decision_resolution_summary: "/v1/phases/phase-2/decision-resolution/summary",
|
|
598
|
+
phase_2_flip_preview_summary: "/v1/phases/phase-2/flip-preview/summary",
|
|
599
|
+
phase_3_summary: "/v1/phases/phase-3/summary",
|
|
600
|
+
phase_3_native_continuity_summary: "/v1/phases/phase-3/native-continuity/summary",
|
|
601
|
+
phase_3_freeze_baseline_summary: "/v1/phases/phase-3/freeze-baseline/summary",
|
|
602
|
+
phase_3_completion_summary: "/v1/phases/phase-3/completion/summary",
|
|
603
|
+
phase_3_freeze_review_summary: "/v1/phases/phase-3/freeze-review/summary",
|
|
604
|
+
phase_3_gate_summary: "/v1/phases/phase-3/gate/summary",
|
|
605
|
+
phase_3_closeout_summary: "/v1/phases/phase-3/closeout/summary",
|
|
606
|
+
phase_3_decision_record_summary: "/v1/phases/phase-3/decision-record/summary",
|
|
607
|
+
phase_3_decision_resolution_summary: "/v1/phases/phase-3/decision-resolution/summary",
|
|
608
|
+
phase_3_bsv_teranode_runtime_summary: "/v1/phases/phase-3/bsv-teranode/summary",
|
|
609
|
+
phase_3_metanet_runtime_summary: "/v1/phases/phase-3/metanet/summary",
|
|
610
|
+
phase_3_brc_runtime_summary: "/v1/phases/phase-3/brc/summary",
|
|
611
|
+
phase_4_summary: "/v1/phases/phase-4/summary",
|
|
612
|
+
phase_4_erc8004_runtime_summary: "/v1/phases/phase-4/erc8004/summary",
|
|
613
|
+
phase_4_identity_registry_runtime_summary: "/v1/phases/phase-4/identity-registry/summary",
|
|
614
|
+
phase_4_attestation_runtime_summary: "/v1/phases/phase-4/attestation/summary",
|
|
615
|
+
phase_4_trust_continuity_summary: "/v1/phases/phase-4/trust-continuity/summary",
|
|
616
|
+
phase_4_completion_summary: "/v1/phases/phase-4/completion/summary",
|
|
617
|
+
phase_4_freeze_baseline_summary: "/v1/phases/phase-4/freeze-baseline/summary",
|
|
618
|
+
phase_4_freeze_review_summary: "/v1/phases/phase-4/freeze-review/summary",
|
|
619
|
+
phase_4_gate_summary: "/v1/phases/phase-4/gate/summary",
|
|
620
|
+
phase_4_closeout_summary: "/v1/phases/phase-4/closeout/summary",
|
|
621
|
+
phase_4_decision_record_summary: "/v1/phases/phase-4/decision-record/summary",
|
|
622
|
+
phase_4_decision_resolution_summary: "/v1/phases/phase-4/decision-resolution/summary",
|
|
623
|
+
phase_5_summary: "/v1/phases/phase-5/summary",
|
|
624
|
+
phase_5_major_rails_continuity_summary: "/v1/phases/phase-5/major-rails-continuity/summary",
|
|
625
|
+
phase_5_completion_summary: "/v1/phases/phase-5/completion/summary",
|
|
626
|
+
phase_5_freeze_baseline_summary: "/v1/phases/phase-5/freeze-baseline/summary",
|
|
627
|
+
phase_5_freeze_review_summary: "/v1/phases/phase-5/freeze-review/summary",
|
|
628
|
+
phase_5_gate_summary: "/v1/phases/phase-5/gate/summary",
|
|
629
|
+
phase_5_closeout_summary: "/v1/phases/phase-5/closeout/summary",
|
|
630
|
+
phase_5_decision_record_summary: "/v1/phases/phase-5/decision-record/summary",
|
|
631
|
+
phase_5_decision_resolution_summary: "/v1/phases/phase-5/decision-resolution/summary",
|
|
632
|
+
phase_5_solana_runtime_summary: "/v1/phases/phase-5/solana/summary",
|
|
633
|
+
phase_5_antelope_runtime_summary: "/v1/phases/phase-5/antelope/summary",
|
|
634
|
+
phase_5_proton_xpr_runtime_summary: "/v1/phases/phase-5/proton-xpr/summary",
|
|
635
|
+
phase_6_summary: "/v1/phases/phase-6/summary",
|
|
636
|
+
phase_6_framework_continuity_summary: "/v1/phases/phase-6/framework-continuity/summary",
|
|
637
|
+
phase_6_completion_summary: "/v1/phases/phase-6/completion/summary",
|
|
638
|
+
phase_6_freeze_baseline_summary: "/v1/phases/phase-6/freeze-baseline/summary",
|
|
639
|
+
phase_6_freeze_review_summary: "/v1/phases/phase-6/freeze-review/summary",
|
|
640
|
+
phase_6_gate_summary: "/v1/phases/phase-6/gate/summary",
|
|
641
|
+
phase_6_closeout_summary: "/v1/phases/phase-6/closeout/summary",
|
|
642
|
+
phase_6_decision_record_summary: "/v1/phases/phase-6/decision-record/summary",
|
|
643
|
+
phase_6_decision_resolution_summary: "/v1/phases/phase-6/decision-resolution/summary",
|
|
644
|
+
phase_6_langgraph_runtime_summary: "/v1/phases/phase-6/langgraph/summary",
|
|
645
|
+
phase_6_langchain_runtime_summary: "/v1/phases/phase-6/langchain/summary",
|
|
646
|
+
phase_6_autogen_runtime_summary: "/v1/phases/phase-6/autogen/summary",
|
|
647
|
+
phase_6_semantic_kernel_runtime_summary: "/v1/phases/phase-6/semantic-kernel/summary",
|
|
648
|
+
phase_7_summary: "/v1/phases/phase-7/summary",
|
|
649
|
+
phase_7_kafka_runtime_summary: "/v1/phases/phase-7/kafka/summary",
|
|
650
|
+
phase_7_nats_runtime_summary: "/v1/phases/phase-7/nats/summary",
|
|
651
|
+
phase_7_mqtt_runtime_summary: "/v1/phases/phase-7/mqtt/summary",
|
|
652
|
+
phase_7_webhook_event_bus_runtime_summary: "/v1/phases/phase-7/webhook-event-bus/summary",
|
|
653
|
+
phase_7_event_system_continuity_summary: "/v1/phases/phase-7/event-system-continuity/summary",
|
|
654
|
+
phase_7_completion_summary: "/v1/phases/phase-7/completion/summary",
|
|
655
|
+
phase_7_freeze_baseline_summary: "/v1/phases/phase-7/freeze-baseline/summary",
|
|
656
|
+
phase_7_freeze_review_summary: "/v1/phases/phase-7/freeze-review/summary",
|
|
657
|
+
phase_7_gate_summary: "/v1/phases/phase-7/gate/summary",
|
|
658
|
+
phase_7_closeout_summary: "/v1/phases/phase-7/closeout/summary",
|
|
659
|
+
phase_7_decision_record_summary: "/v1/phases/phase-7/decision-record/summary",
|
|
660
|
+
phase_7_decision_resolution_summary: "/v1/phases/phase-7/decision-resolution/summary",
|
|
661
|
+
phase_8_summary: "/v1/phases/phase-8/summary",
|
|
662
|
+
phase_8_proof_bridge_continuity_summary: "/v1/phases/phase-8/proof-bridge-continuity/summary",
|
|
663
|
+
phase_8_completion_summary: "/v1/phases/phase-8/completion/summary",
|
|
664
|
+
phase_8_freeze_baseline_summary: "/v1/phases/phase-8/freeze-baseline/summary",
|
|
665
|
+
phase_8_freeze_review_summary: "/v1/phases/phase-8/freeze-review/summary",
|
|
666
|
+
phase_8_gate_summary: "/v1/phases/phase-8/gate/summary",
|
|
667
|
+
phase_8_closeout_summary: "/v1/phases/phase-8/closeout/summary",
|
|
668
|
+
phase_8_decision_record_summary: "/v1/phases/phase-8/decision-record/summary",
|
|
669
|
+
phase_8_decision_resolution_summary: "/v1/phases/phase-8/decision-resolution/summary",
|
|
670
|
+
phase_8_external_result_import_runtime_summary: "/v1/phases/phase-8/external-result-import/summary",
|
|
671
|
+
phase_8_external_receipt_import_runtime_summary: "/v1/phases/phase-8/external-receipt-import/summary",
|
|
672
|
+
phase_8_proof_bundle_normalization_runtime_summary: "/v1/phases/phase-8/proof-bundle-normalization/summary",
|
|
673
|
+
phase_9_summary: "/v1/phases/phase-9/summary",
|
|
674
|
+
phase_9_treasury_continuity_summary: "/v1/phases/phase-9/treasury-continuity/summary",
|
|
675
|
+
phase_9_completion_summary: "/v1/phases/phase-9/completion/summary",
|
|
676
|
+
phase_9_freeze_baseline_summary: "/v1/phases/phase-9/freeze-baseline/summary",
|
|
677
|
+
phase_9_freeze_review_summary: "/v1/phases/phase-9/freeze-review/summary",
|
|
678
|
+
phase_9_gate_summary: "/v1/phases/phase-9/gate/summary",
|
|
679
|
+
phase_9_closeout_summary: "/v1/phases/phase-9/closeout/summary",
|
|
680
|
+
phase_9_decision_record_summary: "/v1/phases/phase-9/decision-record/summary",
|
|
681
|
+
phase_9_decision_resolution_summary: "/v1/phases/phase-9/decision-resolution/summary",
|
|
682
|
+
phase_9_treasury_destinations_runtime_summary: "/v1/phases/phase-9/treasury-destinations/summary",
|
|
683
|
+
phase_9_custody_refs_runtime_summary: "/v1/phases/phase-9/custody-refs/summary",
|
|
684
|
+
phase_9_operator_accounting_bridges_runtime_summary: "/v1/phases/phase-9/operator-accounting-bridges/summary",
|
|
685
|
+
phase_10_summary: "/v1/phases/phase-10/summary",
|
|
686
|
+
phase_10_demand_signal_adapters_runtime_summary: "/v1/phases/phase-10/demand-signal-adapters/summary",
|
|
687
|
+
phase_10_niche_extension_registry_runtime_summary: "/v1/phases/phase-10/niche-extension-registry/summary",
|
|
688
|
+
phase_10_ecosystem_backlog_triage_runtime_summary: "/v1/phases/phase-10/ecosystem-backlog-triage/summary",
|
|
689
|
+
phase_10_long_tail_continuity_summary: "/v1/phases/phase-10/long-tail-continuity/summary",
|
|
690
|
+
phase_10_completion_summary: "/v1/phases/phase-10/completion/summary",
|
|
691
|
+
phase_10_freeze_baseline_summary: "/v1/phases/phase-10/freeze-baseline/summary",
|
|
692
|
+
phase_10_freeze_review_summary: "/v1/phases/phase-10/freeze-review/summary",
|
|
693
|
+
phase_10_gate_summary: "/v1/phases/phase-10/gate/summary",
|
|
694
|
+
phase_10_closeout_summary: "/v1/phases/phase-10/closeout/summary",
|
|
695
|
+
phase_10_decision_record_summary: "/v1/phases/phase-10/decision-record/summary",
|
|
696
|
+
phase_10_decision_resolution_summary: "/v1/phases/phase-10/decision-resolution/summary",
|
|
697
|
+
phase_2_evm_runtime_summary: "/v1/phases/phase-2/evm/summary",
|
|
698
|
+
phase_2_evm_base_runtime_summary: "/v1/phases/phase-2/evm-base/summary",
|
|
699
|
+
phase_2_base_runtime_summary: "/v1/phases/phase-2/base/summary",
|
|
700
|
+
phase_2_usdc_runtime_summary: "/v1/phases/phase-2/usdc/summary",
|
|
701
|
+
phase_2_base_usdc_runtime_summary: "/v1/phases/phase-2/base-usdc/summary",
|
|
702
|
+
phase_2_eth_runtime_summary: "/v1/phases/phase-2/eth/summary",
|
|
703
|
+
publish_plan_summary: "/v1/publish-plan/summary",
|
|
704
|
+
ecosystem_entry_summary: "/v1/ecosystem-entry/summary",
|
|
705
|
+
launch_narrative_summary: "/v1/launch-narrative/summary",
|
|
706
|
+
outreach_proof_summary: "/v1/outreach-proof/summary",
|
|
707
|
+
announcement_summary: "/v1/announcement-pack/summary",
|
|
708
|
+
release_candidate_summary: "/v1/release-candidate/summary"
|
|
709
|
+
}
|
|
710
|
+
};
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
function summarizeReleaseCenter(options = {}) {
|
|
714
|
+
const center = buildReleaseCenter(options);
|
|
715
|
+
return {
|
|
716
|
+
ok: true,
|
|
717
|
+
product: center.product,
|
|
718
|
+
category: center.category,
|
|
719
|
+
live_ready: center.center.launch_summary.live_ready === true,
|
|
720
|
+
task_count: center.center.release_summary.task_count,
|
|
721
|
+
integration_count: center.center.release_summary.integration_count,
|
|
722
|
+
comparison_count: center.center.comparison_summary.comparison_count,
|
|
723
|
+
target_count: center.center.adoption_summary.target_count,
|
|
724
|
+
scenario_count: center.center.scenario_summary.scenario_count,
|
|
725
|
+
verification_surface_count: center.center.manifest_summary.verification_surface_count,
|
|
726
|
+
operator_check_count: center.center.notes_summary.operator_check_count,
|
|
727
|
+
release_count: center.center.history_summary.release_count,
|
|
728
|
+
adapter_audience_count: center.center.adapter_summary.audience_count,
|
|
729
|
+
adapter_starter_class_count: center.center.adapter_summary.starter_class_count,
|
|
730
|
+
adapter_promotion_step_count: center.center.adapter_promotion_summary.maturity_step_count,
|
|
731
|
+
adapter_partner_audience_count: center.center.adapter_partner_summary.audience_count,
|
|
732
|
+
soft_launch_target_count: center.center.soft_launch_summary.target_count,
|
|
733
|
+
outreach_copy_link_count: center.center.outreach_copy_summary.link_count,
|
|
734
|
+
outreach_target_count: center.center.outreach_target_summary.target_count,
|
|
735
|
+
outreach_message_count: center.center.outreach_message_summary.message_count,
|
|
736
|
+
phase_count: center.center.phase_program_summary.phase_count,
|
|
737
|
+
phase_1_ecosystem_count: center.center.phase_1_summary.ecosystem_count,
|
|
738
|
+
phase_1_openai_codex_surface_count: center.center.phase_1_openai_codex_summary.surface_count,
|
|
739
|
+
phase_1_openai_codex_runtime_step_count: center.center.phase_1_openai_codex_runtime_summary.http_step_count,
|
|
740
|
+
phase_1_claude_mcp_surface_count: center.center.phase_1_claude_mcp_summary.surface_count,
|
|
741
|
+
phase_1_claude_mcp_runtime_step_count: center.center.phase_1_claude_mcp_runtime_summary.http_step_count,
|
|
742
|
+
phase_2_ecosystem_count: center.center.phase_2_summary.ecosystem_count,
|
|
743
|
+
phase_2_lane_count: center.center.phase_2_summary.lane_count,
|
|
744
|
+
phase_2_payment_asset_count: center.center.phase_2_summary.payment_asset_count,
|
|
745
|
+
phase_2_settlement_mode_count: center.center.phase_2_summary.settlement_mode_count,
|
|
746
|
+
phase_2_completion_check_count: center.center.phase_2_summary.completion_check_count,
|
|
747
|
+
phase_2_remaining_focus_count: center.center.phase_2_completion_summary.remaining_focus_count,
|
|
748
|
+
phase_2_readiness_criteria_count: center.center.phase_2_completion_summary.readiness_criteria_count,
|
|
749
|
+
phase_2_satisfied_criteria_count: center.center.phase_2_completion_summary.satisfied_criteria_count,
|
|
750
|
+
phase_2_unsatisfied_criteria_count: center.center.phase_2_completion_summary.unsatisfied_criteria_count,
|
|
751
|
+
phase_2_freeze_review_question_count: center.center.phase_2_freeze_review_summary.review_question_count,
|
|
752
|
+
phase_2_freeze_resolution_criteria_count: center.center.phase_2_freeze_review_summary.resolution_criteria_count,
|
|
753
|
+
phase_2_freeze_satisfied_resolution_count: center.center.phase_2_freeze_review_summary.satisfied_resolution_count,
|
|
754
|
+
phase_2_freeze_unsatisfied_resolution_count: center.center.phase_2_freeze_review_summary.unsatisfied_resolution_count,
|
|
755
|
+
phase_2_freeze_blocker_count: center.center.phase_2_freeze_review_summary.blocker_count,
|
|
756
|
+
phase_2_gate_decision: center.center.phase_2_gate_summary.decision,
|
|
757
|
+
phase_2_gate_unsatisfied_count: center.center.phase_2_gate_summary.unsatisfied_gate_count,
|
|
758
|
+
phase_2_closeout_action_step_count: center.center.phase_2_closeout_summary.action_step_count,
|
|
759
|
+
phase_2_closeout_blocking_action_count: center.center.phase_2_closeout_summary.blocking_action_count,
|
|
760
|
+
phase_2_decision_pending_record_count: center.center.phase_2_decision_record_summary.pending_record_count,
|
|
761
|
+
phase_2_decision_resolution_step_count: center.center.phase_2_decision_resolution_summary.resolution_step_count,
|
|
762
|
+
phase_2_flip_preview_unsatisfied_count: center.center.phase_2_flip_preview_summary.unsatisfied_gate_count,
|
|
763
|
+
phase_3_ecosystem_count: center.center.phase_3_summary.ecosystem_count,
|
|
764
|
+
phase_3_lane_count: center.center.phase_3_summary.lane_count,
|
|
765
|
+
phase_3_continuity_ref_count: center.center.phase_3_summary.continuity_ref_count,
|
|
766
|
+
phase_3_identity_layer_count: center.center.phase_3_summary.identity_layer_count,
|
|
767
|
+
phase_3_submission_mode_count: center.center.phase_3_summary.submission_mode_count,
|
|
768
|
+
phase_3_finality_stage_count: center.center.phase_3_summary.finality_stage_count,
|
|
769
|
+
phase_3_graph_mode_count: center.center.phase_3_summary.graph_mode_count,
|
|
770
|
+
phase_3_registry_mode_count: center.center.phase_3_summary.registry_mode_count,
|
|
771
|
+
phase_3_settlement_lane_count: center.center.phase_3_summary.settlement_lane_count,
|
|
772
|
+
phase_3_identity_lane_count: center.center.phase_3_summary.identity_lane_count,
|
|
773
|
+
phase_3_native_continuity_signal_count: center.center.phase_3_native_continuity_summary.signal_count,
|
|
774
|
+
phase_3_native_continuity_surface_count: center.center.phase_3_native_continuity_summary.continuity_surface_count,
|
|
775
|
+
phase_3_freeze_baseline_signal_count: center.center.phase_3_freeze_baseline_summary.signal_count,
|
|
776
|
+
phase_3_completion_check_count: center.center.phase_3_completion_summary.completion_check_count,
|
|
777
|
+
phase_3_remaining_focus_count: center.center.phase_3_completion_summary.remaining_focus_count,
|
|
778
|
+
phase_3_readiness_criteria_count: center.center.phase_3_completion_summary.readiness_criteria_count,
|
|
779
|
+
phase_3_satisfied_criteria_count: center.center.phase_3_completion_summary.satisfied_criteria_count,
|
|
780
|
+
phase_3_unsatisfied_criteria_count: center.center.phase_3_completion_summary.unsatisfied_criteria_count,
|
|
781
|
+
phase_3_completion_submission_mode_count: center.center.phase_3_completion_summary.submission_mode_count,
|
|
782
|
+
phase_3_completion_finality_stage_count: center.center.phase_3_completion_summary.finality_stage_count,
|
|
783
|
+
phase_3_completion_graph_mode_count: center.center.phase_3_completion_summary.graph_mode_count,
|
|
784
|
+
phase_3_completion_registry_mode_count: center.center.phase_3_completion_summary.registry_mode_count,
|
|
785
|
+
phase_3_freeze_review_question_count: center.center.phase_3_freeze_review_summary.review_question_count,
|
|
786
|
+
phase_3_freeze_resolution_criteria_count: center.center.phase_3_freeze_review_summary.resolution_criteria_count,
|
|
787
|
+
phase_3_freeze_blocker_count: center.center.phase_3_freeze_review_summary.blocker_count,
|
|
788
|
+
phase_3_gate_decision: center.center.phase_3_gate_summary.decision,
|
|
789
|
+
phase_3_gate_unsatisfied_count: center.center.phase_3_gate_summary.unsatisfied_gate_count,
|
|
790
|
+
phase_3_closeout_blocking_action_count: center.center.phase_3_closeout_summary.blocking_action_count,
|
|
791
|
+
phase_3_decision_pending_record_count: center.center.phase_3_decision_record_summary.pending_record_count,
|
|
792
|
+
phase_3_decision_resolution_step_count: center.center.phase_3_decision_resolution_summary.resolution_step_count,
|
|
793
|
+
phase_3_bsv_teranode_runtime_step_count: center.center.phase_3_bsv_teranode_runtime_summary.http_step_count,
|
|
794
|
+
phase_3_bsv_teranode_operator_surface_count: center.center.phase_3_bsv_teranode_runtime_summary.operator_surface_count,
|
|
795
|
+
phase_3_bsv_teranode_continuity_ref_count: center.center.phase_3_bsv_teranode_runtime_summary.continuity_ref_count,
|
|
796
|
+
phase_3_bsv_teranode_submission_mode_count: center.center.phase_3_bsv_teranode_runtime_summary.submission_mode_count,
|
|
797
|
+
phase_3_bsv_teranode_finality_stage_count: center.center.phase_3_bsv_teranode_runtime_summary.finality_stage_count,
|
|
798
|
+
phase_3_metanet_runtime_step_count: center.center.phase_3_metanet_runtime_summary.http_step_count,
|
|
799
|
+
phase_3_metanet_continuity_ref_count: center.center.phase_3_metanet_runtime_summary.continuity_ref_count,
|
|
800
|
+
phase_3_metanet_graph_mode_count: center.center.phase_3_metanet_runtime_summary.graph_mode_count,
|
|
801
|
+
phase_3_brc_runtime_step_count: center.center.phase_3_brc_runtime_summary.http_step_count,
|
|
802
|
+
phase_3_brc_continuity_ref_count: center.center.phase_3_brc_runtime_summary.continuity_ref_count,
|
|
803
|
+
phase_3_brc_registry_mode_count: center.center.phase_3_brc_runtime_summary.registry_mode_count,
|
|
804
|
+
phase_4_ecosystem_count: center.center.phase_4_summary.ecosystem_count,
|
|
805
|
+
phase_4_lane_count: center.center.phase_4_summary.lane_count,
|
|
806
|
+
phase_4_identity_layer_count: center.center.phase_4_summary.identity_layer_count,
|
|
807
|
+
phase_4_attestation_mode_count: center.center.phase_4_summary.attestation_mode_count,
|
|
808
|
+
phase_4_erc8004_mode_count: center.center.phase_4_summary.erc8004_mode_count,
|
|
809
|
+
phase_4_registry_mode_count: center.center.phase_4_summary.registry_mode_count,
|
|
810
|
+
phase_4_review_mode_count: center.center.phase_4_summary.review_mode_count,
|
|
811
|
+
phase_4_continuity_ref_count: center.center.phase_4_trust_continuity_summary.continuity_ref_count,
|
|
812
|
+
phase_4_trust_continuity_signal_count: center.center.phase_4_trust_continuity_summary.signal_count,
|
|
813
|
+
phase_4_trust_surface_count: center.center.phase_4_trust_continuity_summary.trust_surface_count,
|
|
814
|
+
phase_4_trust_continuity_erc8004_mode_count: center.center.phase_4_trust_continuity_summary.erc8004_mode_count,
|
|
815
|
+
phase_4_trust_continuity_registry_mode_count: center.center.phase_4_trust_continuity_summary.registry_mode_count,
|
|
816
|
+
phase_4_trust_continuity_review_mode_count: center.center.phase_4_trust_continuity_summary.review_mode_count,
|
|
817
|
+
phase_4_erc8004_runtime_step_count: center.center.phase_4_erc8004_runtime_summary.http_step_count,
|
|
818
|
+
phase_4_erc8004_runtime_mode_count: center.center.phase_4_erc8004_runtime_summary.erc8004_mode_count,
|
|
819
|
+
phase_4_erc8004_trust_artifact_count: center.center.phase_4_erc8004_runtime_summary.trust_artifact_count,
|
|
820
|
+
phase_4_identity_registry_runtime_step_count: center.center.phase_4_identity_registry_runtime_summary.http_step_count,
|
|
821
|
+
phase_4_identity_registry_resolution_mode_count: center.center.phase_4_identity_registry_runtime_summary.resolution_mode_count,
|
|
822
|
+
phase_4_identity_registry_trust_artifact_count: center.center.phase_4_identity_registry_runtime_summary.trust_artifact_count,
|
|
823
|
+
phase_4_attestation_runtime_step_count: center.center.phase_4_attestation_runtime_summary.http_step_count,
|
|
824
|
+
phase_4_attestation_review_mode_count: center.center.phase_4_attestation_runtime_summary.review_mode_count,
|
|
825
|
+
phase_4_attestation_trust_artifact_count: center.center.phase_4_attestation_runtime_summary.trust_artifact_count,
|
|
826
|
+
phase_4_completion_check_count: center.center.phase_4_completion_summary.completion_check_count,
|
|
827
|
+
phase_4_remaining_focus_count: center.center.phase_4_completion_summary.remaining_focus_count,
|
|
828
|
+
phase_4_readiness_criteria_count: center.center.phase_4_completion_summary.readiness_criteria_count,
|
|
829
|
+
phase_4_satisfied_criteria_count: center.center.phase_4_completion_summary.satisfied_criteria_count,
|
|
830
|
+
phase_4_unsatisfied_criteria_count: center.center.phase_4_completion_summary.unsatisfied_criteria_count,
|
|
831
|
+
phase_4_completion_erc8004_mode_count: center.center.phase_4_completion_summary.erc8004_mode_count,
|
|
832
|
+
phase_4_completion_registry_mode_count: center.center.phase_4_completion_summary.registry_mode_count,
|
|
833
|
+
phase_4_completion_review_mode_count: center.center.phase_4_completion_summary.review_mode_count,
|
|
834
|
+
phase_4_freeze_baseline_signal_count: center.center.phase_4_freeze_baseline_summary.signal_count,
|
|
835
|
+
phase_4_freeze_review_question_count: center.center.phase_4_freeze_review_summary.review_question_count,
|
|
836
|
+
phase_4_freeze_resolution_criteria_count: center.center.phase_4_freeze_review_summary.resolution_criteria_count,
|
|
837
|
+
phase_4_freeze_blocker_count: center.center.phase_4_freeze_review_summary.blocker_count,
|
|
838
|
+
phase_4_gate_decision: center.center.phase_4_gate_summary.decision,
|
|
839
|
+
phase_4_gate_unsatisfied_count: center.center.phase_4_gate_summary.unsatisfied_gate_count,
|
|
840
|
+
phase_4_closeout_blocking_action_count: center.center.phase_4_closeout_summary.blocking_action_count,
|
|
841
|
+
phase_4_decision_pending_record_count: center.center.phase_4_decision_record_summary.pending_record_count,
|
|
842
|
+
phase_4_decision_resolution_step_count: center.center.phase_4_decision_resolution_summary.resolution_step_count,
|
|
843
|
+
phase_5_ecosystem_count: center.center.phase_5_summary.ecosystem_count,
|
|
844
|
+
phase_5_lane_count: center.center.phase_5_summary.lane_count,
|
|
845
|
+
phase_5_settlement_mode_count: center.center.phase_5_summary.settlement_mode_count,
|
|
846
|
+
phase_5_solana_mode_count: center.center.phase_5_summary.solana_mode_count,
|
|
847
|
+
phase_5_permission_mode_count: center.center.phase_5_summary.permission_mode_count,
|
|
848
|
+
phase_5_account_mode_count: center.center.phase_5_summary.account_mode_count,
|
|
849
|
+
phase_5_finality_stage_count: center.center.phase_5_summary.finality_stage_count,
|
|
850
|
+
phase_5_settlement_artifact_count: center.center.phase_5_summary.settlement_artifact_count,
|
|
851
|
+
phase_5_continuity_ref_count: center.center.phase_5_major_rails_continuity_summary.continuity_ref_count,
|
|
852
|
+
phase_5_major_rails_continuity_signal_count: center.center.phase_5_major_rails_continuity_summary.signal_count,
|
|
853
|
+
phase_5_major_rails_continuity_surface_count: center.center.phase_5_major_rails_continuity_summary.continuity_surface_count,
|
|
854
|
+
phase_5_major_rails_continuity_solana_mode_count: center.center.phase_5_major_rails_continuity_summary.solana_mode_count,
|
|
855
|
+
phase_5_major_rails_continuity_permission_mode_count: center.center.phase_5_major_rails_continuity_summary.permission_mode_count,
|
|
856
|
+
phase_5_major_rails_continuity_account_mode_count: center.center.phase_5_major_rails_continuity_summary.account_mode_count,
|
|
857
|
+
phase_5_completion_check_count: center.center.phase_5_completion_summary.completion_check_count,
|
|
858
|
+
phase_5_remaining_focus_count: center.center.phase_5_completion_summary.remaining_focus_count,
|
|
859
|
+
phase_5_readiness_criteria_count: center.center.phase_5_completion_summary.readiness_criteria_count,
|
|
860
|
+
phase_5_satisfied_criteria_count: center.center.phase_5_completion_summary.satisfied_criteria_count,
|
|
861
|
+
phase_5_unsatisfied_criteria_count: center.center.phase_5_completion_summary.unsatisfied_criteria_count,
|
|
862
|
+
phase_5_freeze_baseline_signal_count: center.center.phase_5_freeze_baseline_summary.signal_count,
|
|
863
|
+
phase_5_completion_solana_mode_count: center.center.phase_5_completion_summary.solana_mode_count,
|
|
864
|
+
phase_5_completion_permission_mode_count: center.center.phase_5_completion_summary.permission_mode_count,
|
|
865
|
+
phase_5_completion_account_mode_count: center.center.phase_5_completion_summary.account_mode_count,
|
|
866
|
+
phase_5_freeze_review_question_count: center.center.phase_5_freeze_review_summary.review_question_count,
|
|
867
|
+
phase_5_freeze_resolution_criteria_count: center.center.phase_5_freeze_review_summary.resolution_criteria_count,
|
|
868
|
+
phase_5_freeze_blocker_count: center.center.phase_5_freeze_review_summary.blocker_count,
|
|
869
|
+
phase_5_gate_decision: center.center.phase_5_gate_summary.decision,
|
|
870
|
+
phase_5_gate_unsatisfied_count: center.center.phase_5_gate_summary.unsatisfied_gate_count,
|
|
871
|
+
phase_5_closeout_blocking_action_count: center.center.phase_5_closeout_summary.blocking_action_count,
|
|
872
|
+
phase_5_decision_pending_record_count: center.center.phase_5_decision_record_summary.pending_record_count,
|
|
873
|
+
phase_5_decision_resolution_step_count: center.center.phase_5_decision_resolution_summary.resolution_step_count,
|
|
874
|
+
phase_5_solana_runtime_step_count: center.center.phase_5_solana_runtime_summary.http_step_count,
|
|
875
|
+
phase_5_solana_runtime_mode_count: center.center.phase_5_solana_runtime_summary.solana_mode_count,
|
|
876
|
+
phase_5_solana_finality_stage_count: center.center.phase_5_solana_runtime_summary.finality_stage_count,
|
|
877
|
+
phase_5_antelope_runtime_step_count: center.center.phase_5_antelope_runtime_summary.http_step_count,
|
|
878
|
+
phase_5_antelope_permission_mode_count: center.center.phase_5_antelope_runtime_summary.permission_mode_count,
|
|
879
|
+
phase_5_antelope_finality_stage_count: center.center.phase_5_antelope_runtime_summary.finality_stage_count,
|
|
880
|
+
phase_5_proton_xpr_runtime_step_count: center.center.phase_5_proton_xpr_runtime_summary.http_step_count,
|
|
881
|
+
phase_5_proton_xpr_account_mode_count: center.center.phase_5_proton_xpr_runtime_summary.account_mode_count,
|
|
882
|
+
phase_5_proton_xpr_finality_stage_count: center.center.phase_5_proton_xpr_runtime_summary.finality_stage_count,
|
|
883
|
+
phase_6_ecosystem_count: center.center.phase_6_summary.ecosystem_count,
|
|
884
|
+
phase_6_lane_count: center.center.phase_6_summary.lane_count,
|
|
885
|
+
phase_6_runtime_mode_count: center.center.phase_6_summary.runtime_mode_count,
|
|
886
|
+
phase_6_framework_continuity_signal_count: center.center.phase_6_framework_continuity_summary.signal_count,
|
|
887
|
+
phase_6_framework_continuity_surface_count: center.center.phase_6_framework_continuity_summary.continuity_surface_count,
|
|
888
|
+
phase_6_completion_check_count: center.center.phase_6_completion_summary.completion_check_count,
|
|
889
|
+
phase_6_remaining_focus_count: center.center.phase_6_completion_summary.remaining_focus_count,
|
|
890
|
+
phase_6_readiness_criteria_count: center.center.phase_6_completion_summary.readiness_criteria_count,
|
|
891
|
+
phase_6_satisfied_criteria_count: center.center.phase_6_completion_summary.satisfied_criteria_count,
|
|
892
|
+
phase_6_unsatisfied_criteria_count: center.center.phase_6_completion_summary.unsatisfied_criteria_count,
|
|
893
|
+
phase_6_freeze_baseline_signal_count: center.center.phase_6_freeze_baseline_summary.signal_count,
|
|
894
|
+
phase_6_freeze_review_question_count: center.center.phase_6_freeze_review_summary.review_question_count,
|
|
895
|
+
phase_6_freeze_resolution_criteria_count: center.center.phase_6_freeze_review_summary.resolution_criteria_count,
|
|
896
|
+
phase_6_freeze_blocker_count: center.center.phase_6_freeze_review_summary.blocker_count,
|
|
897
|
+
phase_6_gate_decision: center.center.phase_6_gate_summary.decision,
|
|
898
|
+
phase_6_gate_unsatisfied_count: center.center.phase_6_gate_summary.unsatisfied_gate_count,
|
|
899
|
+
phase_6_closeout_blocking_action_count: center.center.phase_6_closeout_summary.blocking_action_count,
|
|
900
|
+
phase_6_decision_pending_record_count: center.center.phase_6_decision_record_summary.pending_record_count,
|
|
901
|
+
phase_6_decision_resolution_step_count: center.center.phase_6_decision_resolution_summary.resolution_step_count,
|
|
902
|
+
phase_6_langgraph_runtime_step_count: center.center.phase_6_langgraph_runtime_summary.http_step_count,
|
|
903
|
+
phase_6_langgraph_runtime_mode_count: center.center.phase_6_langgraph_runtime_summary.runtime_mode_count,
|
|
904
|
+
phase_6_langgraph_runtime_artifact_count: center.center.phase_6_langgraph_runtime_summary.runtime_artifact_count,
|
|
905
|
+
phase_6_langchain_runtime_step_count: center.center.phase_6_langchain_runtime_summary.http_step_count,
|
|
906
|
+
phase_6_langchain_runtime_mode_count: center.center.phase_6_langchain_runtime_summary.runtime_mode_count,
|
|
907
|
+
phase_6_autogen_runtime_step_count: center.center.phase_6_autogen_runtime_summary.http_step_count,
|
|
908
|
+
phase_6_autogen_runtime_mode_count: center.center.phase_6_autogen_runtime_summary.runtime_mode_count,
|
|
909
|
+
phase_6_semantic_kernel_runtime_step_count: center.center.phase_6_semantic_kernel_runtime_summary.http_step_count,
|
|
910
|
+
phase_6_semantic_kernel_runtime_mode_count: center.center.phase_6_semantic_kernel_runtime_summary.runtime_mode_count,
|
|
911
|
+
phase_7_ecosystem_count: center.center.phase_7_summary.ecosystem_count,
|
|
912
|
+
phase_7_lane_count: center.center.phase_7_summary.lane_count,
|
|
913
|
+
phase_7_event_mode_count: center.center.phase_7_summary.event_mode_count,
|
|
914
|
+
phase_7_stream_mode_count: center.center.phase_7_summary.stream_mode_count,
|
|
915
|
+
phase_7_subject_mode_count: center.center.phase_7_summary.subject_mode_count,
|
|
916
|
+
phase_7_qos_mode_count: center.center.phase_7_summary.qos_mode_count,
|
|
917
|
+
phase_7_callback_mode_count: center.center.phase_7_summary.callback_mode_count,
|
|
918
|
+
phase_7_event_system_continuity_signal_count: center.center.phase_7_event_system_continuity_summary.signal_count,
|
|
919
|
+
phase_7_event_system_surface_count: center.center.phase_7_event_system_continuity_summary.continuity_surface_count,
|
|
920
|
+
phase_7_event_system_continuity_stream_mode_count: center.center.phase_7_event_system_continuity_summary.stream_mode_count,
|
|
921
|
+
phase_7_event_system_continuity_subject_mode_count: center.center.phase_7_event_system_continuity_summary.subject_mode_count,
|
|
922
|
+
phase_7_event_system_continuity_qos_mode_count: center.center.phase_7_event_system_continuity_summary.qos_mode_count,
|
|
923
|
+
phase_7_event_system_continuity_callback_mode_count: center.center.phase_7_event_system_continuity_summary.callback_mode_count,
|
|
924
|
+
phase_7_completion_check_count: center.center.phase_7_completion_summary.completion_check_count,
|
|
925
|
+
phase_7_remaining_focus_count: center.center.phase_7_completion_summary.remaining_focus_count,
|
|
926
|
+
phase_7_readiness_criteria_count: center.center.phase_7_completion_summary.readiness_criteria_count,
|
|
927
|
+
phase_7_satisfied_criteria_count: center.center.phase_7_completion_summary.satisfied_criteria_count,
|
|
928
|
+
phase_7_unsatisfied_criteria_count: center.center.phase_7_completion_summary.unsatisfied_criteria_count,
|
|
929
|
+
phase_7_completion_stream_mode_count: center.center.phase_7_completion_summary.stream_mode_count,
|
|
930
|
+
phase_7_completion_subject_mode_count: center.center.phase_7_completion_summary.subject_mode_count,
|
|
931
|
+
phase_7_completion_qos_mode_count: center.center.phase_7_completion_summary.qos_mode_count,
|
|
932
|
+
phase_7_completion_callback_mode_count: center.center.phase_7_completion_summary.callback_mode_count,
|
|
933
|
+
phase_7_freeze_baseline_signal_count: center.center.phase_7_freeze_baseline_summary.signal_count,
|
|
934
|
+
phase_7_freeze_review_question_count: center.center.phase_7_freeze_review_summary.review_question_count,
|
|
935
|
+
phase_7_freeze_resolution_criteria_count: center.center.phase_7_freeze_review_summary.resolution_criteria_count,
|
|
936
|
+
phase_7_freeze_blocker_count: center.center.phase_7_freeze_review_summary.blocker_count,
|
|
937
|
+
phase_7_gate_decision: center.center.phase_7_gate_summary.decision,
|
|
938
|
+
phase_7_gate_unsatisfied_count: center.center.phase_7_gate_summary.unsatisfied_gate_count,
|
|
939
|
+
phase_7_closeout_blocking_action_count: center.center.phase_7_closeout_summary.blocking_action_count,
|
|
940
|
+
phase_7_decision_pending_record_count: center.center.phase_7_decision_record_summary.pending_record_count,
|
|
941
|
+
phase_7_decision_resolution_step_count: center.center.phase_7_decision_resolution_summary.resolution_step_count,
|
|
942
|
+
phase_7_kafka_runtime_step_count: center.center.phase_7_kafka_runtime_summary.http_step_count,
|
|
943
|
+
phase_7_kafka_event_mode_count: center.center.phase_7_kafka_runtime_summary.event_mode_count,
|
|
944
|
+
phase_7_kafka_stream_mode_count: center.center.phase_7_kafka_runtime_summary.stream_mode_count,
|
|
945
|
+
phase_7_nats_runtime_step_count: center.center.phase_7_nats_runtime_summary.http_step_count,
|
|
946
|
+
phase_7_nats_event_mode_count: center.center.phase_7_nats_runtime_summary.event_mode_count,
|
|
947
|
+
phase_7_nats_subject_mode_count: center.center.phase_7_nats_runtime_summary.subject_mode_count,
|
|
948
|
+
phase_7_mqtt_runtime_step_count: center.center.phase_7_mqtt_runtime_summary.http_step_count,
|
|
949
|
+
phase_7_mqtt_event_mode_count: center.center.phase_7_mqtt_runtime_summary.event_mode_count,
|
|
950
|
+
phase_7_mqtt_qos_mode_count: center.center.phase_7_mqtt_runtime_summary.qos_mode_count,
|
|
951
|
+
phase_7_webhook_event_bus_runtime_step_count: center.center.phase_7_webhook_event_bus_runtime_summary.http_step_count,
|
|
952
|
+
phase_7_webhook_event_bus_event_mode_count: center.center.phase_7_webhook_event_bus_runtime_summary.event_mode_count,
|
|
953
|
+
phase_7_webhook_event_bus_callback_mode_count: center.center.phase_7_webhook_event_bus_runtime_summary.callback_mode_count,
|
|
954
|
+
phase_8_ecosystem_count: center.center.phase_8_summary.ecosystem_count,
|
|
955
|
+
phase_8_lane_count: center.center.phase_8_summary.lane_count,
|
|
956
|
+
phase_8_import_mode_count: center.center.phase_8_summary.import_mode_count,
|
|
957
|
+
phase_8_result_mode_count: center.center.phase_8_summary.result_mode_count,
|
|
958
|
+
phase_8_receipt_mode_count: center.center.phase_8_summary.receipt_mode_count,
|
|
959
|
+
phase_8_normalization_mode_count: center.center.phase_8_summary.normalization_mode_count,
|
|
960
|
+
phase_8_bridge_mode_count: center.center.phase_8_completion_summary.bridge_mode_count,
|
|
961
|
+
phase_8_continuity_ref_count: center.center.phase_8_proof_bridge_continuity_summary.continuity_ref_count,
|
|
962
|
+
phase_8_proof_bridge_continuity_signal_count: center.center.phase_8_proof_bridge_continuity_summary.signal_count,
|
|
963
|
+
phase_8_proof_bridge_surface_count: center.center.phase_8_proof_bridge_continuity_summary.continuity_surface_count,
|
|
964
|
+
phase_8_proof_bridge_continuity_result_mode_count: center.center.phase_8_proof_bridge_continuity_summary.result_mode_count,
|
|
965
|
+
phase_8_proof_bridge_continuity_receipt_mode_count: center.center.phase_8_proof_bridge_continuity_summary.receipt_mode_count,
|
|
966
|
+
phase_8_proof_bridge_continuity_normalization_mode_count: center.center.phase_8_proof_bridge_continuity_summary.normalization_mode_count,
|
|
967
|
+
phase_8_completion_check_count: center.center.phase_8_completion_summary.completion_check_count,
|
|
968
|
+
phase_8_remaining_focus_count: center.center.phase_8_completion_summary.remaining_focus_count,
|
|
969
|
+
phase_8_readiness_criteria_count: center.center.phase_8_completion_summary.readiness_criteria_count,
|
|
970
|
+
phase_8_satisfied_criteria_count: center.center.phase_8_completion_summary.satisfied_criteria_count,
|
|
971
|
+
phase_8_unsatisfied_criteria_count: center.center.phase_8_completion_summary.unsatisfied_criteria_count,
|
|
972
|
+
phase_8_completion_result_mode_count: center.center.phase_8_completion_summary.result_mode_count,
|
|
973
|
+
phase_8_completion_receipt_mode_count: center.center.phase_8_completion_summary.receipt_mode_count,
|
|
974
|
+
phase_8_completion_normalization_mode_count: center.center.phase_8_completion_summary.normalization_mode_count,
|
|
975
|
+
phase_8_freeze_baseline_signal_count: center.center.phase_8_freeze_baseline_summary.signal_count,
|
|
976
|
+
phase_8_freeze_review_question_count: center.center.phase_8_freeze_review_summary.review_question_count,
|
|
977
|
+
phase_8_freeze_resolution_criteria_count: center.center.phase_8_freeze_review_summary.resolution_criteria_count,
|
|
978
|
+
phase_8_freeze_blocker_count: center.center.phase_8_freeze_review_summary.blocker_count,
|
|
979
|
+
phase_8_gate_decision: center.center.phase_8_gate_summary.decision,
|
|
980
|
+
phase_8_gate_unsatisfied_count: center.center.phase_8_gate_summary.unsatisfied_gate_count,
|
|
981
|
+
phase_8_closeout_blocking_action_count: center.center.phase_8_closeout_summary.blocking_action_count,
|
|
982
|
+
phase_8_decision_pending_record_count: center.center.phase_8_decision_record_summary.pending_record_count,
|
|
983
|
+
phase_8_decision_resolution_step_count: center.center.phase_8_decision_resolution_summary.resolution_step_count,
|
|
984
|
+
phase_8_external_result_import_runtime_step_count: center.center.phase_8_external_result_import_runtime_summary.http_step_count,
|
|
985
|
+
phase_8_external_result_import_result_mode_count: center.center.phase_8_external_result_import_runtime_summary.result_mode_count,
|
|
986
|
+
phase_8_external_result_import_artifact_count: center.center.phase_8_external_result_import_runtime_summary.normalization_artifact_count,
|
|
987
|
+
phase_8_external_receipt_import_runtime_step_count: center.center.phase_8_external_receipt_import_runtime_summary.http_step_count,
|
|
988
|
+
phase_8_external_receipt_import_receipt_mode_count: center.center.phase_8_external_receipt_import_runtime_summary.receipt_mode_count,
|
|
989
|
+
phase_8_external_receipt_import_artifact_count: center.center.phase_8_external_receipt_import_runtime_summary.normalization_artifact_count,
|
|
990
|
+
phase_8_proof_bundle_normalization_runtime_step_count: center.center.phase_8_proof_bundle_normalization_runtime_summary.http_step_count,
|
|
991
|
+
phase_8_proof_bundle_normalization_mode_count: center.center.phase_8_proof_bundle_normalization_runtime_summary.normalization_mode_count,
|
|
992
|
+
phase_8_proof_bundle_normalization_artifact_count: center.center.phase_8_proof_bundle_normalization_runtime_summary.normalization_artifact_count,
|
|
993
|
+
phase_9_ecosystem_count: center.center.phase_9_summary.ecosystem_count,
|
|
994
|
+
phase_9_lane_count: center.center.phase_9_summary.lane_count,
|
|
995
|
+
phase_9_treasury_mode_count: center.center.phase_9_summary.treasury_mode_count,
|
|
996
|
+
phase_9_destination_mode_count: center.center.phase_9_summary.destination_mode_count,
|
|
997
|
+
phase_9_custody_mode_count: center.center.phase_9_summary.custody_mode_count,
|
|
998
|
+
phase_9_accounting_mode_count: center.center.phase_9_summary.accounting_mode_count,
|
|
999
|
+
phase_9_connectivity_mode_count: center.center.phase_9_completion_summary.connectivity_mode_count,
|
|
1000
|
+
phase_9_continuity_ref_count: center.center.phase_9_treasury_continuity_summary.continuity_ref_count,
|
|
1001
|
+
phase_9_treasury_continuity_signal_count: center.center.phase_9_treasury_continuity_summary.signal_count,
|
|
1002
|
+
phase_9_treasury_surface_count: center.center.phase_9_treasury_continuity_summary.continuity_surface_count,
|
|
1003
|
+
phase_9_treasury_continuity_destination_mode_count: center.center.phase_9_treasury_continuity_summary.destination_mode_count,
|
|
1004
|
+
phase_9_treasury_continuity_custody_mode_count: center.center.phase_9_treasury_continuity_summary.custody_mode_count,
|
|
1005
|
+
phase_9_treasury_continuity_accounting_mode_count: center.center.phase_9_treasury_continuity_summary.accounting_mode_count,
|
|
1006
|
+
phase_9_completion_check_count: center.center.phase_9_completion_summary.completion_check_count,
|
|
1007
|
+
phase_9_remaining_focus_count: center.center.phase_9_completion_summary.remaining_focus_count,
|
|
1008
|
+
phase_9_readiness_criteria_count: center.center.phase_9_completion_summary.readiness_criteria_count,
|
|
1009
|
+
phase_9_satisfied_criteria_count: center.center.phase_9_completion_summary.satisfied_criteria_count,
|
|
1010
|
+
phase_9_unsatisfied_criteria_count: center.center.phase_9_completion_summary.unsatisfied_criteria_count,
|
|
1011
|
+
phase_9_completion_destination_mode_count: center.center.phase_9_completion_summary.destination_mode_count,
|
|
1012
|
+
phase_9_completion_custody_mode_count: center.center.phase_9_completion_summary.custody_mode_count,
|
|
1013
|
+
phase_9_completion_accounting_mode_count: center.center.phase_9_completion_summary.accounting_mode_count,
|
|
1014
|
+
phase_9_freeze_baseline_signal_count: center.center.phase_9_freeze_baseline_summary.signal_count,
|
|
1015
|
+
phase_9_freeze_review_question_count: center.center.phase_9_freeze_review_summary.review_question_count,
|
|
1016
|
+
phase_9_freeze_resolution_criteria_count: center.center.phase_9_freeze_review_summary.resolution_criteria_count,
|
|
1017
|
+
phase_9_freeze_blocker_count: center.center.phase_9_freeze_review_summary.blocker_count,
|
|
1018
|
+
phase_9_gate_decision: center.center.phase_9_gate_summary.decision,
|
|
1019
|
+
phase_9_gate_unsatisfied_count: center.center.phase_9_gate_summary.unsatisfied_gate_count,
|
|
1020
|
+
phase_9_closeout_blocking_action_count: center.center.phase_9_closeout_summary.blocking_action_count,
|
|
1021
|
+
phase_9_decision_pending_record_count: center.center.phase_9_decision_record_summary.pending_record_count,
|
|
1022
|
+
phase_9_decision_resolution_step_count: center.center.phase_9_decision_resolution_summary.resolution_step_count,
|
|
1023
|
+
phase_9_treasury_destinations_runtime_step_count: center.center.phase_9_treasury_destinations_runtime_summary.http_step_count,
|
|
1024
|
+
phase_9_treasury_destinations_destination_mode_count: center.center.phase_9_treasury_destinations_runtime_summary.destination_mode_count,
|
|
1025
|
+
phase_9_treasury_destinations_artifact_count: center.center.phase_9_treasury_destinations_runtime_summary.ledger_artifact_count,
|
|
1026
|
+
phase_9_custody_refs_runtime_step_count: center.center.phase_9_custody_refs_runtime_summary.http_step_count,
|
|
1027
|
+
phase_9_custody_refs_mode_count: center.center.phase_9_custody_refs_runtime_summary.custody_mode_count,
|
|
1028
|
+
phase_9_custody_refs_artifact_count: center.center.phase_9_custody_refs_runtime_summary.ledger_artifact_count,
|
|
1029
|
+
phase_9_operator_accounting_bridges_runtime_step_count: center.center.phase_9_operator_accounting_bridges_runtime_summary.http_step_count,
|
|
1030
|
+
phase_9_operator_accounting_bridges_mode_count: center.center.phase_9_operator_accounting_bridges_runtime_summary.accounting_mode_count,
|
|
1031
|
+
phase_9_operator_accounting_bridges_artifact_count: center.center.phase_9_operator_accounting_bridges_runtime_summary.ledger_artifact_count,
|
|
1032
|
+
phase_10_ecosystem_count: center.center.phase_10_summary.ecosystem_count,
|
|
1033
|
+
phase_10_lane_count: center.center.phase_10_summary.lane_count,
|
|
1034
|
+
phase_10_extension_mode_count: center.center.phase_10_summary.extension_mode_count,
|
|
1035
|
+
phase_10_long_tail_continuity_signal_count: center.center.phase_10_long_tail_continuity_summary.signal_count,
|
|
1036
|
+
phase_10_long_tail_continuity_surface_count: center.center.phase_10_long_tail_continuity_summary.continuity_surface_count,
|
|
1037
|
+
phase_10_completion_check_count: center.center.phase_10_completion_summary.completion_check_count,
|
|
1038
|
+
phase_10_remaining_focus_count: center.center.phase_10_completion_summary.remaining_focus_count,
|
|
1039
|
+
phase_10_readiness_criteria_count: center.center.phase_10_completion_summary.readiness_criteria_count,
|
|
1040
|
+
phase_10_satisfied_criteria_count: center.center.phase_10_completion_summary.satisfied_criteria_count,
|
|
1041
|
+
phase_10_unsatisfied_criteria_count: center.center.phase_10_completion_summary.unsatisfied_criteria_count,
|
|
1042
|
+
phase_10_freeze_baseline_output_count: center.center.phase_10_freeze_baseline_summary.frozen_output_count,
|
|
1043
|
+
phase_10_freeze_review_question_count: center.center.phase_10_freeze_review_summary.review_question_count,
|
|
1044
|
+
phase_10_freeze_resolution_criteria_count: center.center.phase_10_freeze_review_summary.resolution_criteria_count,
|
|
1045
|
+
phase_10_freeze_blocker_count: center.center.phase_10_freeze_review_summary.blocker_count,
|
|
1046
|
+
phase_10_gate_decision: center.center.phase_10_gate_summary.decision,
|
|
1047
|
+
phase_10_gate_unsatisfied_count: center.center.phase_10_gate_summary.unsatisfied_gate_count,
|
|
1048
|
+
phase_10_closeout_blocking_action_count: center.center.phase_10_closeout_summary.blocking_action_count,
|
|
1049
|
+
phase_10_decision_pending_record_count: center.center.phase_10_decision_record_summary.pending_record_count,
|
|
1050
|
+
phase_10_decision_resolution_step_count: center.center.phase_10_decision_resolution_summary.resolution_step_count,
|
|
1051
|
+
phase_10_demand_signal_adapters_runtime_step_count: center.center.phase_10_demand_signal_adapters_runtime_summary.http_step_count,
|
|
1052
|
+
phase_10_demand_signal_adapters_demand_mode_count: center.center.phase_10_demand_signal_adapters_runtime_summary.demand_mode_count,
|
|
1053
|
+
phase_10_demand_signal_adapters_artifact_count: center.center.phase_10_demand_signal_adapters_runtime_summary.extension_artifact_count,
|
|
1054
|
+
phase_10_niche_extension_registry_runtime_step_count: center.center.phase_10_niche_extension_registry_runtime_summary.http_step_count,
|
|
1055
|
+
phase_10_niche_extension_registry_demand_mode_count: center.center.phase_10_niche_extension_registry_runtime_summary.demand_mode_count,
|
|
1056
|
+
phase_10_niche_extension_registry_artifact_count: center.center.phase_10_niche_extension_registry_runtime_summary.extension_artifact_count,
|
|
1057
|
+
phase_10_ecosystem_backlog_triage_runtime_step_count: center.center.phase_10_ecosystem_backlog_triage_runtime_summary.http_step_count,
|
|
1058
|
+
phase_10_ecosystem_backlog_triage_demand_mode_count: center.center.phase_10_ecosystem_backlog_triage_runtime_summary.demand_mode_count,
|
|
1059
|
+
phase_10_ecosystem_backlog_triage_artifact_count: center.center.phase_10_ecosystem_backlog_triage_runtime_summary.extension_artifact_count,
|
|
1060
|
+
phase_2_evm_base_runtime_step_count: center.center.phase_2_evm_base_runtime_summary.http_step_count,
|
|
1061
|
+
phase_2_evm_base_operator_surface_count: center.center.phase_2_evm_base_runtime_summary.operator_surface_count,
|
|
1062
|
+
phase_2_evm_base_runtime_completion_check_count: center.center.phase_2_evm_base_runtime_summary.completion_check_count,
|
|
1063
|
+
phase_2_base_runtime_step_count: center.center.phase_2_base_runtime_summary.http_step_count,
|
|
1064
|
+
phase_2_base_runtime_completion_check_count: center.center.phase_2_base_runtime_summary.completion_check_count,
|
|
1065
|
+
phase_2_usdc_runtime_step_count: center.center.phase_2_usdc_runtime_summary.http_step_count,
|
|
1066
|
+
phase_2_usdc_runtime_completion_check_count: center.center.phase_2_usdc_runtime_summary.completion_check_count,
|
|
1067
|
+
phase_2_base_usdc_runtime_step_count: center.center.phase_2_base_usdc_runtime_summary.http_step_count,
|
|
1068
|
+
phase_2_base_usdc_runtime_completion_check_count: center.center.phase_2_base_usdc_runtime_summary.completion_check_count,
|
|
1069
|
+
phase_2_eth_runtime_step_count: center.center.phase_2_eth_runtime_summary.http_step_count,
|
|
1070
|
+
phase_2_eth_runtime_completion_check_count: center.center.phase_2_eth_runtime_summary.completion_check_count,
|
|
1071
|
+
phase_2_evm_runtime_step_count: center.center.phase_2_evm_runtime_summary.http_step_count,
|
|
1072
|
+
phase_2_evm_runtime_completion_check_count: center.center.phase_2_evm_runtime_summary.completion_check_count,
|
|
1073
|
+
publish_step_count: center.center.publish_plan_summary.publish_step_count,
|
|
1074
|
+
audience_count: center.center.ecosystem_entry_summary.audience_count,
|
|
1075
|
+
success_signal_count: center.center.launch_narrative_summary.success_signal_count,
|
|
1076
|
+
proven_count: center.center.outreach_proof_summary.proven_count,
|
|
1077
|
+
rc_check_count: center.center.announcement_summary.rc_check_count,
|
|
1078
|
+
candidate_checklist_count: center.center.release_candidate_summary.checklist_count
|
|
1079
|
+
};
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
module.exports = {
|
|
1083
|
+
buildReleaseCenter,
|
|
1084
|
+
summarizeReleaseCenter
|
|
1085
|
+
};
|