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,1419 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
const {
|
|
5
|
+
buildReleasePack,
|
|
6
|
+
summarizeReleasePack,
|
|
7
|
+
buildComparisonPack,
|
|
8
|
+
summarizeComparisonPack,
|
|
9
|
+
buildAdoptionPack,
|
|
10
|
+
summarizeAdoptionPack,
|
|
11
|
+
buildScenarioPack,
|
|
12
|
+
summarizeScenarioPack,
|
|
13
|
+
buildLaunchPack,
|
|
14
|
+
summarizeLaunchPack
|
|
15
|
+
} = require("../lib/release_pack");
|
|
16
|
+
const {
|
|
17
|
+
buildReleaseManifest,
|
|
18
|
+
summarizeReleaseManifest,
|
|
19
|
+
buildLaunchNotes,
|
|
20
|
+
summarizeLaunchNotes
|
|
21
|
+
} = require("../lib/release_manifest");
|
|
22
|
+
const {
|
|
23
|
+
buildReleaseCenter,
|
|
24
|
+
summarizeReleaseCenter
|
|
25
|
+
} = require("../lib/release_center");
|
|
26
|
+
const {
|
|
27
|
+
buildReleaseHistory,
|
|
28
|
+
summarizeReleaseHistory
|
|
29
|
+
} = require("../lib/release_history");
|
|
30
|
+
const {
|
|
31
|
+
buildAdapterPack,
|
|
32
|
+
summarizeAdapterPack
|
|
33
|
+
} = require("../lib/adapter_pack");
|
|
34
|
+
const {
|
|
35
|
+
buildAdapterPromotionPack,
|
|
36
|
+
summarizeAdapterPromotionPack
|
|
37
|
+
} = require("../lib/adapter_promotion_pack");
|
|
38
|
+
const {
|
|
39
|
+
buildAdapterPartnerPack,
|
|
40
|
+
summarizeAdapterPartnerPack
|
|
41
|
+
} = require("../lib/adapter_partner_pack");
|
|
42
|
+
const {
|
|
43
|
+
buildSoftLaunchPack,
|
|
44
|
+
summarizeSoftLaunchPack
|
|
45
|
+
} = require("../lib/soft_launch_pack");
|
|
46
|
+
const {
|
|
47
|
+
buildOutreachCopyPack,
|
|
48
|
+
summarizeOutreachCopyPack
|
|
49
|
+
} = require("../lib/outreach_copy_pack");
|
|
50
|
+
const {
|
|
51
|
+
buildOutreachTargetPack,
|
|
52
|
+
summarizeOutreachTargetPack
|
|
53
|
+
} = require("../lib/outreach_target_pack");
|
|
54
|
+
const {
|
|
55
|
+
buildOutreachMessagePack,
|
|
56
|
+
summarizeOutreachMessagePack
|
|
57
|
+
} = require("../lib/outreach_message_pack");
|
|
58
|
+
const {
|
|
59
|
+
buildPublishPlan,
|
|
60
|
+
summarizePublishPlan
|
|
61
|
+
} = require("../lib/publish_plan");
|
|
62
|
+
const {
|
|
63
|
+
buildEcosystemEntryPack,
|
|
64
|
+
summarizeEcosystemEntryPack
|
|
65
|
+
} = require("../lib/ecosystem_entry");
|
|
66
|
+
const {
|
|
67
|
+
buildLaunchNarrativePack,
|
|
68
|
+
summarizeLaunchNarrativePack
|
|
69
|
+
} = require("../lib/launch_narrative");
|
|
70
|
+
const {
|
|
71
|
+
buildOutreachProofPack,
|
|
72
|
+
summarizeOutreachProofPack
|
|
73
|
+
} = require("../lib/outreach_proof");
|
|
74
|
+
const {
|
|
75
|
+
buildAnnouncementPack,
|
|
76
|
+
summarizeAnnouncementPack
|
|
77
|
+
} = require("../lib/announcement_pack");
|
|
78
|
+
const {
|
|
79
|
+
buildReleaseCandidatePack,
|
|
80
|
+
summarizeReleaseCandidatePack
|
|
81
|
+
} = require("../lib/release_candidate");
|
|
82
|
+
const {
|
|
83
|
+
buildPhaseProgramPack,
|
|
84
|
+
summarizePhaseProgramPack
|
|
85
|
+
} = require("../lib/phase_program_pack");
|
|
86
|
+
const {
|
|
87
|
+
buildPhase1EcosystemPack,
|
|
88
|
+
summarizePhase1EcosystemPack
|
|
89
|
+
} = require("../lib/phase_1_ecosystem_pack");
|
|
90
|
+
const {
|
|
91
|
+
buildPhase1OpenaiCodexPack,
|
|
92
|
+
summarizePhase1OpenaiCodexPack
|
|
93
|
+
} = require("../lib/phase_1_openai_codex_pack");
|
|
94
|
+
const {
|
|
95
|
+
buildPhase1ClaudeMcpPack,
|
|
96
|
+
summarizePhase1ClaudeMcpPack
|
|
97
|
+
} = require("../lib/phase_1_claude_mcp_pack");
|
|
98
|
+
const {
|
|
99
|
+
buildPhase1OpenaiCodexRuntimePack,
|
|
100
|
+
summarizePhase1OpenaiCodexRuntimePack
|
|
101
|
+
} = require("../lib/phase_1_openai_codex_runtime_pack");
|
|
102
|
+
const {
|
|
103
|
+
buildPhase1ClaudeMcpRuntimePack,
|
|
104
|
+
summarizePhase1ClaudeMcpRuntimePack
|
|
105
|
+
} = require("../lib/phase_1_claude_mcp_runtime_pack");
|
|
106
|
+
const {
|
|
107
|
+
buildPhase2PaymentRailsPack,
|
|
108
|
+
summarizePhase2PaymentRailsPack
|
|
109
|
+
} = require("../lib/phase_2_payment_rails_pack");
|
|
110
|
+
const {
|
|
111
|
+
buildPhase2EvmBaseRuntimePack,
|
|
112
|
+
summarizePhase2EvmBaseRuntimePack
|
|
113
|
+
} = require("../lib/phase_2_evm_base_runtime_pack");
|
|
114
|
+
const {
|
|
115
|
+
buildPhase2BaseUsdcRuntimePack,
|
|
116
|
+
summarizePhase2BaseUsdcRuntimePack
|
|
117
|
+
} = require("../lib/phase_2_base_usdc_runtime_pack");
|
|
118
|
+
const {
|
|
119
|
+
buildPhase2EthRuntimePack,
|
|
120
|
+
summarizePhase2EthRuntimePack
|
|
121
|
+
} = require("../lib/phase_2_eth_runtime_pack");
|
|
122
|
+
const {
|
|
123
|
+
buildPhase2EvmRuntimePack,
|
|
124
|
+
summarizePhase2EvmRuntimePack
|
|
125
|
+
} = require("../lib/phase_2_evm_runtime_pack");
|
|
126
|
+
const {
|
|
127
|
+
buildPhase2BaseRuntimePack,
|
|
128
|
+
summarizePhase2BaseRuntimePack
|
|
129
|
+
} = require("../lib/phase_2_base_runtime_pack");
|
|
130
|
+
const {
|
|
131
|
+
buildPhase2UsdcRuntimePack,
|
|
132
|
+
summarizePhase2UsdcRuntimePack
|
|
133
|
+
} = require("../lib/phase_2_usdc_runtime_pack");
|
|
134
|
+
const {
|
|
135
|
+
buildPhase2CompletionPack,
|
|
136
|
+
summarizePhase2CompletionPack
|
|
137
|
+
} = require("../lib/phase_2_completion_pack");
|
|
138
|
+
const {
|
|
139
|
+
buildPhase2FreezeReviewPack,
|
|
140
|
+
summarizePhase2FreezeReviewPack
|
|
141
|
+
} = require("../lib/phase_2_freeze_review_pack");
|
|
142
|
+
const {
|
|
143
|
+
buildPhase2GatePack,
|
|
144
|
+
summarizePhase2GatePack
|
|
145
|
+
} = require("../lib/phase_2_gate_pack");
|
|
146
|
+
const {
|
|
147
|
+
buildPhase2CloseoutPack,
|
|
148
|
+
summarizePhase2CloseoutPack
|
|
149
|
+
} = require("../lib/phase_2_closeout_pack");
|
|
150
|
+
const {
|
|
151
|
+
buildPhase2DecisionRecordPack,
|
|
152
|
+
summarizePhase2DecisionRecordPack
|
|
153
|
+
} = require("../lib/phase_2_decision_record_pack");
|
|
154
|
+
const {
|
|
155
|
+
buildPhase2DecisionResolutionPack,
|
|
156
|
+
summarizePhase2DecisionResolutionPack
|
|
157
|
+
} = require("../lib/phase_2_decision_resolution_pack");
|
|
158
|
+
const {
|
|
159
|
+
buildPhase2FlipPreviewPack,
|
|
160
|
+
summarizePhase2FlipPreviewPack
|
|
161
|
+
} = require("../lib/phase_2_flip_preview_pack");
|
|
162
|
+
const {
|
|
163
|
+
buildPhase3NativeBsvPack,
|
|
164
|
+
summarizePhase3NativeBsvPack
|
|
165
|
+
} = require("../lib/phase_3_native_bsv_pack");
|
|
166
|
+
const {
|
|
167
|
+
buildPhase3BsvTeranodeRuntimePack,
|
|
168
|
+
summarizePhase3BsvTeranodeRuntimePack
|
|
169
|
+
} = require("../lib/phase_3_bsv_teranode_runtime_pack");
|
|
170
|
+
const {
|
|
171
|
+
buildPhase3MetanetRuntimePack,
|
|
172
|
+
summarizePhase3MetanetRuntimePack
|
|
173
|
+
} = require("../lib/phase_3_metanet_runtime_pack");
|
|
174
|
+
const {
|
|
175
|
+
buildPhase3BrcRuntimePack,
|
|
176
|
+
summarizePhase3BrcRuntimePack
|
|
177
|
+
} = require("../lib/phase_3_brc_runtime_pack");
|
|
178
|
+
const {
|
|
179
|
+
buildPhase3NativeContinuityPack,
|
|
180
|
+
summarizePhase3NativeContinuityPack
|
|
181
|
+
} = require("../lib/phase_3_native_continuity_pack");
|
|
182
|
+
const {
|
|
183
|
+
buildPhase3FreezeBaselinePack,
|
|
184
|
+
summarizePhase3FreezeBaselinePack
|
|
185
|
+
} = require("../lib/phase_3_freeze_baseline_pack");
|
|
186
|
+
const {
|
|
187
|
+
buildPhase4IdentityTrustPack,
|
|
188
|
+
summarizePhase4IdentityTrustPack
|
|
189
|
+
} = require("../lib/phase_4_identity_trust_pack");
|
|
190
|
+
const {
|
|
191
|
+
buildPhase4Erc8004RuntimePack,
|
|
192
|
+
summarizePhase4Erc8004RuntimePack
|
|
193
|
+
} = require("../lib/phase_4_erc8004_runtime_pack");
|
|
194
|
+
const {
|
|
195
|
+
buildPhase4IdentityRegistryRuntimePack,
|
|
196
|
+
summarizePhase4IdentityRegistryRuntimePack
|
|
197
|
+
} = require("../lib/phase_4_identity_registry_runtime_pack");
|
|
198
|
+
const {
|
|
199
|
+
buildPhase4AttestationRuntimePack,
|
|
200
|
+
summarizePhase4AttestationRuntimePack
|
|
201
|
+
} = require("../lib/phase_4_attestation_runtime_pack");
|
|
202
|
+
const {
|
|
203
|
+
buildPhase4TrustContinuityPack,
|
|
204
|
+
summarizePhase4TrustContinuityPack
|
|
205
|
+
} = require("../lib/phase_4_trust_continuity_pack");
|
|
206
|
+
const {
|
|
207
|
+
buildPhase4CompletionPack,
|
|
208
|
+
summarizePhase4CompletionPack
|
|
209
|
+
} = require("../lib/phase_4_completion_pack");
|
|
210
|
+
const {
|
|
211
|
+
buildPhase4FreezeReviewPack,
|
|
212
|
+
summarizePhase4FreezeReviewPack
|
|
213
|
+
} = require("../lib/phase_4_freeze_review_pack");
|
|
214
|
+
const {
|
|
215
|
+
buildPhase4FreezeBaselinePack,
|
|
216
|
+
summarizePhase4FreezeBaselinePack
|
|
217
|
+
} = require("../lib/phase_4_freeze_baseline_pack");
|
|
218
|
+
const {
|
|
219
|
+
buildPhase4GatePack,
|
|
220
|
+
summarizePhase4GatePack
|
|
221
|
+
} = require("../lib/phase_4_gate_pack");
|
|
222
|
+
const {
|
|
223
|
+
buildPhase4CloseoutPack,
|
|
224
|
+
summarizePhase4CloseoutPack
|
|
225
|
+
} = require("../lib/phase_4_closeout_pack");
|
|
226
|
+
const {
|
|
227
|
+
buildPhase4DecisionRecordPack,
|
|
228
|
+
summarizePhase4DecisionRecordPack
|
|
229
|
+
} = require("../lib/phase_4_decision_record_pack");
|
|
230
|
+
const {
|
|
231
|
+
buildPhase4DecisionResolutionPack,
|
|
232
|
+
summarizePhase4DecisionResolutionPack
|
|
233
|
+
} = require("../lib/phase_4_decision_resolution_pack");
|
|
234
|
+
const {
|
|
235
|
+
buildPhase5MajorRailsPack,
|
|
236
|
+
summarizePhase5MajorRailsPack
|
|
237
|
+
} = require("../lib/phase_5_major_rails_pack");
|
|
238
|
+
const {
|
|
239
|
+
buildPhase5MajorRailsContinuityPack,
|
|
240
|
+
summarizePhase5MajorRailsContinuityPack
|
|
241
|
+
} = require("../lib/phase_5_major_rails_continuity_pack");
|
|
242
|
+
const {
|
|
243
|
+
buildPhase5CompletionPack,
|
|
244
|
+
summarizePhase5CompletionPack
|
|
245
|
+
} = require("../lib/phase_5_completion_pack");
|
|
246
|
+
const {
|
|
247
|
+
buildPhase5FreezeReviewPack,
|
|
248
|
+
summarizePhase5FreezeReviewPack
|
|
249
|
+
} = require("../lib/phase_5_freeze_review_pack");
|
|
250
|
+
const {
|
|
251
|
+
buildPhase5FreezeBaselinePack,
|
|
252
|
+
summarizePhase5FreezeBaselinePack
|
|
253
|
+
} = require("../lib/phase_5_freeze_baseline_pack");
|
|
254
|
+
const {
|
|
255
|
+
buildPhase5GatePack,
|
|
256
|
+
summarizePhase5GatePack
|
|
257
|
+
} = require("../lib/phase_5_gate_pack");
|
|
258
|
+
const {
|
|
259
|
+
buildPhase5CloseoutPack,
|
|
260
|
+
summarizePhase5CloseoutPack
|
|
261
|
+
} = require("../lib/phase_5_closeout_pack");
|
|
262
|
+
const {
|
|
263
|
+
buildPhase5DecisionRecordPack,
|
|
264
|
+
summarizePhase5DecisionRecordPack
|
|
265
|
+
} = require("../lib/phase_5_decision_record_pack");
|
|
266
|
+
const {
|
|
267
|
+
buildPhase5DecisionResolutionPack,
|
|
268
|
+
summarizePhase5DecisionResolutionPack
|
|
269
|
+
} = require("../lib/phase_5_decision_resolution_pack");
|
|
270
|
+
const {
|
|
271
|
+
buildPhase5SolanaRuntimePack,
|
|
272
|
+
summarizePhase5SolanaRuntimePack
|
|
273
|
+
} = require("../lib/phase_5_solana_runtime_pack");
|
|
274
|
+
const {
|
|
275
|
+
buildPhase5AntelopeRuntimePack,
|
|
276
|
+
summarizePhase5AntelopeRuntimePack
|
|
277
|
+
} = require("../lib/phase_5_antelope_runtime_pack");
|
|
278
|
+
const {
|
|
279
|
+
buildPhase5ProtonXprRuntimePack,
|
|
280
|
+
summarizePhase5ProtonXprRuntimePack
|
|
281
|
+
} = require("../lib/phase_5_proton_xpr_runtime_pack");
|
|
282
|
+
const {
|
|
283
|
+
buildPhase6FrameworkRuntimePack,
|
|
284
|
+
summarizePhase6FrameworkRuntimePack
|
|
285
|
+
} = require("../lib/phase_6_framework_runtime_pack");
|
|
286
|
+
const {
|
|
287
|
+
buildPhase6LanggraphRuntimePack,
|
|
288
|
+
summarizePhase6LanggraphRuntimePack
|
|
289
|
+
} = require("../lib/phase_6_langgraph_runtime_pack");
|
|
290
|
+
const {
|
|
291
|
+
buildPhase6LangchainRuntimePack,
|
|
292
|
+
summarizePhase6LangchainRuntimePack
|
|
293
|
+
} = require("../lib/phase_6_langchain_runtime_pack");
|
|
294
|
+
const {
|
|
295
|
+
buildPhase6AutogenRuntimePack,
|
|
296
|
+
summarizePhase6AutogenRuntimePack
|
|
297
|
+
} = require("../lib/phase_6_autogen_runtime_pack");
|
|
298
|
+
const {
|
|
299
|
+
buildPhase6SemanticKernelRuntimePack,
|
|
300
|
+
summarizePhase6SemanticKernelRuntimePack
|
|
301
|
+
} = require("../lib/phase_6_semantic_kernel_runtime_pack");
|
|
302
|
+
const {
|
|
303
|
+
buildPhase6FrameworkContinuityPack,
|
|
304
|
+
summarizePhase6FrameworkContinuityPack
|
|
305
|
+
} = require("../lib/phase_6_framework_continuity_pack");
|
|
306
|
+
const {
|
|
307
|
+
buildPhase6CompletionPack,
|
|
308
|
+
summarizePhase6CompletionPack
|
|
309
|
+
} = require("../lib/phase_6_completion_pack");
|
|
310
|
+
const {
|
|
311
|
+
buildPhase6FreezeReviewPack,
|
|
312
|
+
summarizePhase6FreezeReviewPack
|
|
313
|
+
} = require("../lib/phase_6_freeze_review_pack");
|
|
314
|
+
const {
|
|
315
|
+
buildPhase6FreezeBaselinePack,
|
|
316
|
+
summarizePhase6FreezeBaselinePack
|
|
317
|
+
} = require("../lib/phase_6_freeze_baseline_pack");
|
|
318
|
+
const {
|
|
319
|
+
buildPhase6GatePack,
|
|
320
|
+
summarizePhase6GatePack
|
|
321
|
+
} = require("../lib/phase_6_gate_pack");
|
|
322
|
+
const {
|
|
323
|
+
buildPhase6CloseoutPack,
|
|
324
|
+
summarizePhase6CloseoutPack
|
|
325
|
+
} = require("../lib/phase_6_closeout_pack");
|
|
326
|
+
const {
|
|
327
|
+
buildPhase6DecisionRecordPack,
|
|
328
|
+
summarizePhase6DecisionRecordPack
|
|
329
|
+
} = require("../lib/phase_6_decision_record_pack");
|
|
330
|
+
const {
|
|
331
|
+
buildPhase6DecisionResolutionPack,
|
|
332
|
+
summarizePhase6DecisionResolutionPack
|
|
333
|
+
} = require("../lib/phase_6_decision_resolution_pack");
|
|
334
|
+
const {
|
|
335
|
+
buildPhase7EventSystemPack,
|
|
336
|
+
summarizePhase7EventSystemPack
|
|
337
|
+
} = require("../lib/phase_7_event_system_pack");
|
|
338
|
+
const {
|
|
339
|
+
buildPhase7KafkaRuntimePack,
|
|
340
|
+
summarizePhase7KafkaRuntimePack
|
|
341
|
+
} = require("../lib/phase_7_kafka_runtime_pack");
|
|
342
|
+
const {
|
|
343
|
+
buildPhase7NatsRuntimePack,
|
|
344
|
+
summarizePhase7NatsRuntimePack
|
|
345
|
+
} = require("../lib/phase_7_nats_runtime_pack");
|
|
346
|
+
const {
|
|
347
|
+
buildPhase7MqttRuntimePack,
|
|
348
|
+
summarizePhase7MqttRuntimePack
|
|
349
|
+
} = require("../lib/phase_7_mqtt_runtime_pack");
|
|
350
|
+
const {
|
|
351
|
+
buildPhase7WebhookEventBusRuntimePack,
|
|
352
|
+
summarizePhase7WebhookEventBusRuntimePack
|
|
353
|
+
} = require("../lib/phase_7_webhook_event_bus_runtime_pack");
|
|
354
|
+
const {
|
|
355
|
+
buildPhase7EventSystemContinuityPack,
|
|
356
|
+
summarizePhase7EventSystemContinuityPack
|
|
357
|
+
} = require("../lib/phase_7_event_system_continuity_pack");
|
|
358
|
+
const {
|
|
359
|
+
buildPhase7CompletionPack,
|
|
360
|
+
summarizePhase7CompletionPack
|
|
361
|
+
} = require("../lib/phase_7_completion_pack");
|
|
362
|
+
const {
|
|
363
|
+
buildPhase7FreezeBaselinePack,
|
|
364
|
+
summarizePhase7FreezeBaselinePack
|
|
365
|
+
} = require("../lib/phase_7_freeze_baseline_pack");
|
|
366
|
+
const {
|
|
367
|
+
buildPhase7FreezeReviewPack,
|
|
368
|
+
summarizePhase7FreezeReviewPack
|
|
369
|
+
} = require("../lib/phase_7_freeze_review_pack");
|
|
370
|
+
const {
|
|
371
|
+
buildPhase7GatePack,
|
|
372
|
+
summarizePhase7GatePack
|
|
373
|
+
} = require("../lib/phase_7_gate_pack");
|
|
374
|
+
const {
|
|
375
|
+
buildPhase7CloseoutPack,
|
|
376
|
+
summarizePhase7CloseoutPack
|
|
377
|
+
} = require("../lib/phase_7_closeout_pack");
|
|
378
|
+
const {
|
|
379
|
+
buildPhase7DecisionRecordPack,
|
|
380
|
+
summarizePhase7DecisionRecordPack
|
|
381
|
+
} = require("../lib/phase_7_decision_record_pack");
|
|
382
|
+
const {
|
|
383
|
+
buildPhase7DecisionResolutionPack,
|
|
384
|
+
summarizePhase7DecisionResolutionPack
|
|
385
|
+
} = require("../lib/phase_7_decision_resolution_pack");
|
|
386
|
+
const {
|
|
387
|
+
buildPhase8ProofBridgesPack,
|
|
388
|
+
summarizePhase8ProofBridgesPack
|
|
389
|
+
} = require("../lib/phase_8_proof_bridges_pack");
|
|
390
|
+
const {
|
|
391
|
+
buildPhase8ProofBridgeContinuityPack,
|
|
392
|
+
summarizePhase8ProofBridgeContinuityPack
|
|
393
|
+
} = require("../lib/phase_8_proof_bridge_continuity_pack");
|
|
394
|
+
const {
|
|
395
|
+
buildPhase8CompletionPack,
|
|
396
|
+
summarizePhase8CompletionPack
|
|
397
|
+
} = require("../lib/phase_8_completion_pack");
|
|
398
|
+
const {
|
|
399
|
+
buildPhase8FreezeBaselinePack,
|
|
400
|
+
summarizePhase8FreezeBaselinePack
|
|
401
|
+
} = require("../lib/phase_8_freeze_baseline_pack");
|
|
402
|
+
const {
|
|
403
|
+
buildPhase8FreezeReviewPack,
|
|
404
|
+
summarizePhase8FreezeReviewPack
|
|
405
|
+
} = require("../lib/phase_8_freeze_review_pack");
|
|
406
|
+
const {
|
|
407
|
+
buildPhase8GatePack,
|
|
408
|
+
summarizePhase8GatePack
|
|
409
|
+
} = require("../lib/phase_8_gate_pack");
|
|
410
|
+
const {
|
|
411
|
+
buildPhase8CloseoutPack,
|
|
412
|
+
summarizePhase8CloseoutPack
|
|
413
|
+
} = require("../lib/phase_8_closeout_pack");
|
|
414
|
+
const {
|
|
415
|
+
buildPhase8DecisionRecordPack,
|
|
416
|
+
summarizePhase8DecisionRecordPack
|
|
417
|
+
} = require("../lib/phase_8_decision_record_pack");
|
|
418
|
+
const {
|
|
419
|
+
buildPhase8DecisionResolutionPack,
|
|
420
|
+
summarizePhase8DecisionResolutionPack
|
|
421
|
+
} = require("../lib/phase_8_decision_resolution_pack");
|
|
422
|
+
const {
|
|
423
|
+
buildPhase8ExternalResultImportRuntimePack,
|
|
424
|
+
summarizePhase8ExternalResultImportRuntimePack
|
|
425
|
+
} = require("../lib/phase_8_external_result_import_runtime_pack");
|
|
426
|
+
const {
|
|
427
|
+
buildPhase8ExternalReceiptImportRuntimePack,
|
|
428
|
+
summarizePhase8ExternalReceiptImportRuntimePack
|
|
429
|
+
} = require("../lib/phase_8_external_receipt_import_runtime_pack");
|
|
430
|
+
const {
|
|
431
|
+
buildPhase8ProofBundleNormalizationRuntimePack,
|
|
432
|
+
summarizePhase8ProofBundleNormalizationRuntimePack
|
|
433
|
+
} = require("../lib/phase_8_proof_bundle_normalization_runtime_pack");
|
|
434
|
+
const {
|
|
435
|
+
buildPhase9TreasuryConnectivityPack,
|
|
436
|
+
summarizePhase9TreasuryConnectivityPack
|
|
437
|
+
} = require("../lib/phase_9_treasury_connectivity_pack");
|
|
438
|
+
const {
|
|
439
|
+
buildPhase9TreasuryContinuityPack,
|
|
440
|
+
summarizePhase9TreasuryContinuityPack
|
|
441
|
+
} = require("../lib/phase_9_treasury_continuity_pack");
|
|
442
|
+
const {
|
|
443
|
+
buildPhase9CompletionPack,
|
|
444
|
+
summarizePhase9CompletionPack
|
|
445
|
+
} = require("../lib/phase_9_completion_pack");
|
|
446
|
+
const {
|
|
447
|
+
buildPhase9FreezeBaselinePack,
|
|
448
|
+
summarizePhase9FreezeBaselinePack
|
|
449
|
+
} = require("../lib/phase_9_freeze_baseline_pack");
|
|
450
|
+
const {
|
|
451
|
+
buildPhase9FreezeReviewPack,
|
|
452
|
+
summarizePhase9FreezeReviewPack
|
|
453
|
+
} = require("../lib/phase_9_freeze_review_pack");
|
|
454
|
+
const {
|
|
455
|
+
buildPhase9GatePack,
|
|
456
|
+
summarizePhase9GatePack
|
|
457
|
+
} = require("../lib/phase_9_gate_pack");
|
|
458
|
+
const {
|
|
459
|
+
buildPhase9CloseoutPack,
|
|
460
|
+
summarizePhase9CloseoutPack
|
|
461
|
+
} = require("../lib/phase_9_closeout_pack");
|
|
462
|
+
const {
|
|
463
|
+
buildPhase9DecisionRecordPack,
|
|
464
|
+
summarizePhase9DecisionRecordPack
|
|
465
|
+
} = require("../lib/phase_9_decision_record_pack");
|
|
466
|
+
const {
|
|
467
|
+
buildPhase9DecisionResolutionPack,
|
|
468
|
+
summarizePhase9DecisionResolutionPack
|
|
469
|
+
} = require("../lib/phase_9_decision_resolution_pack");
|
|
470
|
+
const {
|
|
471
|
+
buildPhase9TreasuryDestinationsRuntimePack,
|
|
472
|
+
summarizePhase9TreasuryDestinationsRuntimePack
|
|
473
|
+
} = require("../lib/phase_9_treasury_destinations_runtime_pack");
|
|
474
|
+
const {
|
|
475
|
+
buildPhase9CustodyRefsRuntimePack,
|
|
476
|
+
summarizePhase9CustodyRefsRuntimePack
|
|
477
|
+
} = require("../lib/phase_9_custody_refs_runtime_pack");
|
|
478
|
+
const {
|
|
479
|
+
buildPhase9OperatorAccountingBridgesRuntimePack,
|
|
480
|
+
summarizePhase9OperatorAccountingBridgesRuntimePack
|
|
481
|
+
} = require("../lib/phase_9_operator_accounting_bridges_runtime_pack");
|
|
482
|
+
const {
|
|
483
|
+
buildPhase10LongTailEcosystemPack,
|
|
484
|
+
summarizePhase10LongTailEcosystemPack
|
|
485
|
+
} = require("../lib/phase_10_long_tail_ecosystem_pack");
|
|
486
|
+
const {
|
|
487
|
+
buildPhase10LongTailContinuityPack,
|
|
488
|
+
summarizePhase10LongTailContinuityPack
|
|
489
|
+
} = require("../lib/phase_10_long_tail_continuity_pack");
|
|
490
|
+
const {
|
|
491
|
+
buildPhase10CompletionPack,
|
|
492
|
+
summarizePhase10CompletionPack
|
|
493
|
+
} = require("../lib/phase_10_completion_pack");
|
|
494
|
+
const {
|
|
495
|
+
buildPhase10FreezeReviewPack,
|
|
496
|
+
summarizePhase10FreezeReviewPack
|
|
497
|
+
} = require("../lib/phase_10_freeze_review_pack");
|
|
498
|
+
const {
|
|
499
|
+
buildPhase10FreezeBaselinePack,
|
|
500
|
+
summarizePhase10FreezeBaselinePack
|
|
501
|
+
} = require("../lib/phase_10_freeze_baseline_pack");
|
|
502
|
+
const {
|
|
503
|
+
buildPhase10GatePack,
|
|
504
|
+
summarizePhase10GatePack
|
|
505
|
+
} = require("../lib/phase_10_gate_pack");
|
|
506
|
+
const {
|
|
507
|
+
buildPhase10CloseoutPack,
|
|
508
|
+
summarizePhase10CloseoutPack
|
|
509
|
+
} = require("../lib/phase_10_closeout_pack");
|
|
510
|
+
const {
|
|
511
|
+
buildPhase10DecisionRecordPack,
|
|
512
|
+
summarizePhase10DecisionRecordPack
|
|
513
|
+
} = require("../lib/phase_10_decision_record_pack");
|
|
514
|
+
const {
|
|
515
|
+
buildPhase10DecisionResolutionPack,
|
|
516
|
+
summarizePhase10DecisionResolutionPack
|
|
517
|
+
} = require("../lib/phase_10_decision_resolution_pack");
|
|
518
|
+
const {
|
|
519
|
+
buildPhase10DemandSignalAdaptersRuntimePack,
|
|
520
|
+
summarizePhase10DemandSignalAdaptersRuntimePack
|
|
521
|
+
} = require("../lib/phase_10_demand_signal_adapters_runtime_pack");
|
|
522
|
+
const {
|
|
523
|
+
buildPhase10NicheExtensionRegistryRuntimePack,
|
|
524
|
+
summarizePhase10NicheExtensionRegistryRuntimePack
|
|
525
|
+
} = require("../lib/phase_10_niche_extension_registry_runtime_pack");
|
|
526
|
+
const {
|
|
527
|
+
buildPhase10EcosystemBacklogTriageRuntimePack,
|
|
528
|
+
summarizePhase10EcosystemBacklogTriageRuntimePack
|
|
529
|
+
} = require("../lib/phase_10_ecosystem_backlog_triage_runtime_pack");
|
|
530
|
+
const {
|
|
531
|
+
buildPhase3CompletionPack,
|
|
532
|
+
summarizePhase3CompletionPack
|
|
533
|
+
} = require("../lib/phase_3_completion_pack");
|
|
534
|
+
const {
|
|
535
|
+
buildPhase3FreezeReviewPack,
|
|
536
|
+
summarizePhase3FreezeReviewPack
|
|
537
|
+
} = require("../lib/phase_3_freeze_review_pack");
|
|
538
|
+
const {
|
|
539
|
+
buildPhase3GatePack,
|
|
540
|
+
summarizePhase3GatePack
|
|
541
|
+
} = require("../lib/phase_3_gate_pack");
|
|
542
|
+
const {
|
|
543
|
+
buildPhase3CloseoutPack,
|
|
544
|
+
summarizePhase3CloseoutPack
|
|
545
|
+
} = require("../lib/phase_3_closeout_pack");
|
|
546
|
+
const {
|
|
547
|
+
buildPhase3DecisionRecordPack,
|
|
548
|
+
summarizePhase3DecisionRecordPack
|
|
549
|
+
} = require("../lib/phase_3_decision_record_pack");
|
|
550
|
+
const {
|
|
551
|
+
buildPhase3DecisionResolutionPack,
|
|
552
|
+
summarizePhase3DecisionResolutionPack
|
|
553
|
+
} = require("../lib/phase_3_decision_resolution_pack");
|
|
554
|
+
|
|
555
|
+
function printUsage() {
|
|
556
|
+
process.stderr.write(
|
|
557
|
+
[
|
|
558
|
+
"Usage:",
|
|
559
|
+
" xytara-release [--summary] [--comparison] [--adoption] [--scenarios] [--launch] [--manifest] [--notes] [--center] [--history] [--adapters] [--adapter-promotion] [--adapter-partners] [--soft-launch] [--outreach-copy] [--outreach-targets] [--outreach-messages] [--phases] [--phase-1] [--phase-1-openai-codex] [--phase-1-openai-codex-runtime] [--phase-1-claude-mcp] [--phase-1-claude-mcp-runtime] [--phase-2] [--phase-2-completion] [--phase-2-freeze-review] [--phase-2-gate] [--phase-2-closeout] [--phase-2-decision-record] [--phase-2-decision-resolution] [--phase-2-flip-preview] [--phase-2-evm-runtime] [--phase-2-evm-base-runtime] [--phase-2-base-runtime] [--phase-2-usdc-runtime] [--phase-2-base-usdc-runtime] [--phase-2-eth-runtime] [--phase-3] [--phase-3-native-continuity] [--phase-3-freeze-baseline] [--phase-3-completion] [--phase-3-freeze-review] [--phase-3-gate] [--phase-3-closeout] [--phase-3-decision-record] [--phase-3-decision-resolution] [--phase-3-bsv-teranode-runtime] [--phase-3-metanet-runtime] [--phase-3-brc-runtime] [--phase-4] [--phase-4-trust-continuity] [--phase-4-completion] [--phase-4-freeze-baseline] [--phase-4-freeze-review] [--phase-4-gate] [--phase-4-closeout] [--phase-4-decision-record] [--phase-4-decision-resolution] [--phase-4-erc8004-runtime] [--phase-4-identity-registry-runtime] [--phase-4-attestation-runtime] [--phase-5] [--phase-5-major-rails-continuity] [--phase-5-completion] [--phase-5-freeze-baseline] [--phase-5-freeze-review] [--phase-5-gate] [--phase-5-closeout] [--phase-5-decision-record] [--phase-5-decision-resolution] [--phase-5-solana-runtime] [--phase-5-antelope-runtime] [--phase-5-proton-xpr-runtime] [--phase-6] [--phase-6-framework-continuity] [--phase-6-completion] [--phase-6-freeze-baseline] [--phase-6-freeze-review] [--phase-6-gate] [--phase-6-closeout] [--phase-6-decision-record] [--phase-6-decision-resolution] [--phase-6-langgraph-runtime] [--phase-6-langchain-runtime] [--phase-6-autogen-runtime] [--phase-6-semantic-kernel-runtime] [--phase-7] [--phase-7-event-system-continuity] [--phase-7-completion] [--phase-7-freeze-baseline] [--phase-7-freeze-review] [--phase-7-gate] [--phase-7-closeout] [--phase-7-decision-record] [--phase-7-decision-resolution] [--phase-7-kafka-runtime] [--phase-7-nats-runtime] [--phase-7-mqtt-runtime] [--phase-7-webhook-event-bus-runtime] [--phase-8] [--phase-8-proof-bridge-continuity] [--phase-8-completion] [--phase-8-freeze-baseline] [--phase-8-freeze-review] [--phase-8-gate] [--phase-8-closeout] [--phase-8-decision-record] [--phase-8-decision-resolution] [--phase-8-external-result-import-runtime] [--phase-8-external-receipt-import-runtime] [--phase-8-proof-bundle-normalization-runtime] [--phase-9] [--phase-9-treasury-continuity] [--phase-9-completion] [--phase-9-freeze-baseline] [--phase-9-freeze-review] [--phase-9-gate] [--phase-9-closeout] [--phase-9-decision-record] [--phase-9-decision-resolution] [--phase-9-treasury-destinations-runtime] [--phase-9-custody-refs-runtime] [--phase-9-operator-accounting-bridges-runtime] [--phase-10] [--phase-10-long-tail-continuity] [--phase-10-completion] [--phase-10-freeze-baseline] [--phase-10-freeze-review] [--phase-10-gate] [--phase-10-closeout] [--phase-10-decision-record] [--phase-10-decision-resolution] [--phase-10-demand-signal-adapters-runtime] [--phase-10-niche-extension-registry-runtime] [--phase-10-ecosystem-backlog-triage-runtime] [--publish-plan] [--ecosystem] [--narrative] [--outreach-proof] [--announcement] [--candidate] [--pretty]",
|
|
560
|
+
"",
|
|
561
|
+
"Options:",
|
|
562
|
+
" --summary Emit the compact release-pack summary",
|
|
563
|
+
" --comparison Emit the launch comparison pack",
|
|
564
|
+
" --adoption Emit the machine-world adoption pack",
|
|
565
|
+
" --scenarios Emit the first-run scenario pack",
|
|
566
|
+
" --launch Emit the compact launch/operator pack",
|
|
567
|
+
" --manifest Emit the release manifest",
|
|
568
|
+
" --notes Emit the release notes artifact",
|
|
569
|
+
" --center Emit the canonical release center artifact",
|
|
570
|
+
" --history Emit the release history artifact",
|
|
571
|
+
" --adapters Emit the adapter-builder artifact",
|
|
572
|
+
" --adapter-promotion Emit the adapter promotion artifact",
|
|
573
|
+
" --adapter-partners Emit the adapter partner artifact",
|
|
574
|
+
" --soft-launch Emit the soft-launch artifact",
|
|
575
|
+
" --outreach-copy Emit the outreach copy artifact",
|
|
576
|
+
" --outreach-targets Emit the outreach target artifact",
|
|
577
|
+
" --outreach-messages Emit the outreach message artifact",
|
|
578
|
+
" --phases Emit the multi-phase adapter program artifact",
|
|
579
|
+
" --phase-1 Emit the Phase 1 ecosystem artifact",
|
|
580
|
+
" --phase-1-openai-codex Emit the Phase 1 OpenAI/Codex ecosystem artifact",
|
|
581
|
+
" --phase-1-openai-codex-runtime Emit the Phase 1 OpenAI/Codex runtime path artifact",
|
|
582
|
+
" --phase-1-claude-mcp Emit the Phase 1 Claude/MCP ecosystem artifact",
|
|
583
|
+
" --phase-1-claude-mcp-runtime Emit the Phase 1 Claude/MCP runtime path artifact",
|
|
584
|
+
" --phase-2 Emit the Phase 2 payment rails artifact",
|
|
585
|
+
" --phase-2-completion Emit the Phase 2 completion review artifact",
|
|
586
|
+
" --phase-2-freeze-review Emit the Phase 2 freeze-review artifact",
|
|
587
|
+
" --phase-2-gate Emit the Phase 2 gate-decision artifact",
|
|
588
|
+
" --phase-2-closeout Emit the Phase 2 closeout-plan artifact",
|
|
589
|
+
" --phase-2-decision-record Emit the Phase 2 decision-record artifact",
|
|
590
|
+
" --phase-2-decision-resolution Emit the Phase 2 decision-resolution artifact",
|
|
591
|
+
" --phase-2-flip-preview Emit the Phase 2 flip-preview artifact",
|
|
592
|
+
" --phase-2-evm-runtime Emit the Phase 2 EVM runtime path artifact",
|
|
593
|
+
" --phase-2-evm-base-runtime Emit the Phase 2 EVM/Base/ETH/USDC runtime path artifact",
|
|
594
|
+
" --phase-2-base-runtime Emit the Phase 2 Base runtime path artifact",
|
|
595
|
+
" --phase-2-usdc-runtime Emit the Phase 2 USDC runtime path artifact",
|
|
596
|
+
" --phase-2-base-usdc-runtime Emit the Phase 2 Base/USDC runtime path artifact",
|
|
597
|
+
" --phase-2-eth-runtime Emit the Phase 2 ETH runtime path artifact",
|
|
598
|
+
" --phase-3 Emit the Phase 3 native BSV artifact",
|
|
599
|
+
" --phase-3-native-continuity Emit the Phase 3 native continuity artifact",
|
|
600
|
+
" --phase-3-freeze-baseline Emit the Phase 3 frozen-baseline artifact",
|
|
601
|
+
" --phase-3-completion Emit the Phase 3 completion review artifact",
|
|
602
|
+
" --phase-3-freeze-review Emit the Phase 3 freeze-review artifact",
|
|
603
|
+
" --phase-3-gate Emit the Phase 3 gate-decision artifact",
|
|
604
|
+
" --phase-3-closeout Emit the Phase 3 closeout-plan artifact",
|
|
605
|
+
" --phase-3-decision-record Emit the Phase 3 decision-record artifact",
|
|
606
|
+
" --phase-3-decision-resolution Emit the Phase 3 decision-resolution artifact",
|
|
607
|
+
" --phase-3-bsv-teranode-runtime Emit the Phase 3 BSV/Teranode runtime path artifact",
|
|
608
|
+
" --phase-3-metanet-runtime Emit the Phase 3 Metanet runtime path artifact",
|
|
609
|
+
" --phase-3-brc-runtime Emit the Phase 3 BRC runtime path artifact",
|
|
610
|
+
" --phase-4 Emit the Phase 4 identity and trust artifact",
|
|
611
|
+
" --phase-4-trust-continuity Emit the Phase 4 trust continuity artifact",
|
|
612
|
+
" --phase-4-completion Emit the Phase 4 completion review artifact",
|
|
613
|
+
" --phase-4-freeze-baseline Emit the Phase 4 frozen-baseline artifact",
|
|
614
|
+
" --phase-4-freeze-review Emit the Phase 4 freeze-review artifact",
|
|
615
|
+
" --phase-4-gate Emit the Phase 4 gate-decision artifact",
|
|
616
|
+
" --phase-4-closeout Emit the Phase 4 closeout-plan artifact",
|
|
617
|
+
" --phase-4-decision-record Emit the Phase 4 decision-record artifact",
|
|
618
|
+
" --phase-4-decision-resolution Emit the Phase 4 decision-resolution artifact",
|
|
619
|
+
" --phase-4-erc8004-runtime Emit the Phase 4 ERC8004 runtime path artifact",
|
|
620
|
+
" --phase-4-identity-registry-runtime Emit the Phase 4 identity-registry runtime path artifact",
|
|
621
|
+
" --phase-4-attestation-runtime Emit the Phase 4 attestation runtime path artifact",
|
|
622
|
+
" --phase-5 Emit the Phase 5 major rails artifact",
|
|
623
|
+
" --phase-5-major-rails-continuity Emit the Phase 5 major rails continuity artifact",
|
|
624
|
+
" --phase-5-completion Emit the Phase 5 completion artifact",
|
|
625
|
+
" --phase-5-freeze-baseline Emit the Phase 5 freeze baseline artifact",
|
|
626
|
+
" --phase-5-freeze-review Emit the Phase 5 freeze review artifact",
|
|
627
|
+
" --phase-5-gate Emit the Phase 5 gate artifact",
|
|
628
|
+
" --phase-5-closeout Emit the Phase 5 closeout artifact",
|
|
629
|
+
" --phase-5-decision-record Emit the Phase 5 decision record artifact",
|
|
630
|
+
" --phase-5-decision-resolution Emit the Phase 5 decision resolution artifact",
|
|
631
|
+
" --phase-5-solana-runtime Emit the Phase 5 Solana runtime path artifact",
|
|
632
|
+
" --phase-5-antelope-runtime Emit the Phase 5 Antelope runtime path artifact",
|
|
633
|
+
" --phase-5-proton-xpr-runtime Emit the Phase 5 Proton/XPR runtime path artifact",
|
|
634
|
+
" --phase-6 Emit the Phase 6 framework/runtime artifact",
|
|
635
|
+
" --phase-6-framework-continuity Emit the Phase 6 framework continuity artifact",
|
|
636
|
+
" --phase-6-completion Emit the Phase 6 completion artifact",
|
|
637
|
+
" --phase-6-freeze-baseline Emit the Phase 6 freeze baseline artifact",
|
|
638
|
+
" --phase-6-freeze-review Emit the Phase 6 freeze review artifact",
|
|
639
|
+
" --phase-6-gate Emit the Phase 6 gate artifact",
|
|
640
|
+
" --phase-6-closeout Emit the Phase 6 closeout artifact",
|
|
641
|
+
" --phase-6-decision-record Emit the Phase 6 decision record artifact",
|
|
642
|
+
" --phase-6-decision-resolution Emit the Phase 6 decision resolution artifact",
|
|
643
|
+
" --phase-6-langgraph-runtime Emit the Phase 6 LangGraph runtime path artifact",
|
|
644
|
+
" --phase-6-langchain-runtime Emit the Phase 6 LangChain runtime path artifact",
|
|
645
|
+
" --phase-6-autogen-runtime Emit the Phase 6 AutoGen runtime path artifact",
|
|
646
|
+
" --phase-6-semantic-kernel-runtime Emit the Phase 6 Semantic Kernel runtime path artifact",
|
|
647
|
+
" --phase-7 Emit the Phase 7 event and system integration artifact",
|
|
648
|
+
" --phase-7-event-system-continuity Emit the Phase 7 event-system continuity artifact",
|
|
649
|
+
" --phase-7-completion Emit the Phase 7 completion artifact",
|
|
650
|
+
" --phase-7-freeze-baseline Emit the Phase 7 freeze baseline artifact",
|
|
651
|
+
" --phase-7-freeze-review Emit the Phase 7 freeze review artifact",
|
|
652
|
+
" --phase-7-gate Emit the Phase 7 gate artifact",
|
|
653
|
+
" --phase-7-closeout Emit the Phase 7 closeout artifact",
|
|
654
|
+
" --phase-7-decision-record Emit the Phase 7 decision record artifact",
|
|
655
|
+
" --phase-7-decision-resolution Emit the Phase 7 decision resolution artifact",
|
|
656
|
+
" --phase-7-kafka-runtime Emit the Phase 7 Kafka runtime path artifact",
|
|
657
|
+
" --phase-7-nats-runtime Emit the Phase 7 NATS runtime path artifact",
|
|
658
|
+
" --phase-7-mqtt-runtime Emit the Phase 7 MQTT runtime path artifact",
|
|
659
|
+
" --phase-7-webhook-event-bus-runtime Emit the Phase 7 webhook event bus runtime path artifact",
|
|
660
|
+
" --phase-8 Emit the Phase 8 proof bridges artifact",
|
|
661
|
+
" --phase-8-proof-bridge-continuity Emit the Phase 8 proof-bridge continuity artifact",
|
|
662
|
+
" --phase-8-completion Emit the Phase 8 completion artifact",
|
|
663
|
+
" --phase-8-freeze-baseline Emit the Phase 8 freeze baseline artifact",
|
|
664
|
+
" --phase-8-freeze-review Emit the Phase 8 freeze review artifact",
|
|
665
|
+
" --phase-8-gate Emit the Phase 8 gate artifact",
|
|
666
|
+
" --phase-8-closeout Emit the Phase 8 closeout artifact",
|
|
667
|
+
" --phase-8-decision-record Emit the Phase 8 decision record artifact",
|
|
668
|
+
" --phase-8-decision-resolution Emit the Phase 8 decision resolution artifact",
|
|
669
|
+
" --phase-8-external-result-import-runtime Emit the Phase 8 external-result-import runtime path artifact",
|
|
670
|
+
" --phase-8-external-receipt-import-runtime Emit the Phase 8 external-receipt-import runtime path artifact",
|
|
671
|
+
" --phase-8-proof-bundle-normalization-runtime Emit the Phase 8 proof-bundle-normalization runtime path artifact",
|
|
672
|
+
" --phase-9 Emit the Phase 9 treasury connectivity artifact",
|
|
673
|
+
" --phase-9-treasury-continuity Emit the Phase 9 treasury continuity artifact",
|
|
674
|
+
" --phase-9-completion Emit the Phase 9 completion artifact",
|
|
675
|
+
" --phase-9-freeze-baseline Emit the Phase 9 freeze baseline artifact",
|
|
676
|
+
" --phase-9-freeze-review Emit the Phase 9 freeze review artifact",
|
|
677
|
+
" --phase-9-gate Emit the Phase 9 gate artifact",
|
|
678
|
+
" --phase-9-closeout Emit the Phase 9 closeout artifact",
|
|
679
|
+
" --phase-9-decision-record Emit the Phase 9 decision record artifact",
|
|
680
|
+
" --phase-9-decision-resolution Emit the Phase 9 decision resolution artifact",
|
|
681
|
+
" --phase-9-treasury-destinations-runtime Emit the Phase 9 treasury-destinations runtime path artifact",
|
|
682
|
+
" --phase-9-custody-refs-runtime Emit the Phase 9 custody-refs runtime path artifact",
|
|
683
|
+
" --phase-9-operator-accounting-bridges-runtime Emit the Phase 9 operator-accounting-bridges runtime path artifact",
|
|
684
|
+
" --phase-10 Emit the Phase 10 long-tail ecosystem artifact",
|
|
685
|
+
" --phase-10-long-tail-continuity Emit the Phase 10 long-tail continuity artifact",
|
|
686
|
+
" --phase-10-completion Emit the Phase 10 completion artifact",
|
|
687
|
+
" --phase-10-freeze-baseline Emit the Phase 10 freeze baseline artifact",
|
|
688
|
+
" --phase-10-freeze-review Emit the Phase 10 freeze review artifact",
|
|
689
|
+
" --phase-10-gate Emit the Phase 10 gate artifact",
|
|
690
|
+
" --phase-10-closeout Emit the Phase 10 closeout artifact",
|
|
691
|
+
" --phase-10-decision-record Emit the Phase 10 decision-record artifact",
|
|
692
|
+
" --phase-10-decision-resolution Emit the Phase 10 decision-resolution artifact",
|
|
693
|
+
" --phase-10-demand-signal-adapters-runtime Emit the Phase 10 demand-signal-adapters runtime path artifact",
|
|
694
|
+
" --phase-10-niche-extension-registry-runtime Emit the Phase 10 niche-extension-registry runtime path artifact",
|
|
695
|
+
" --phase-10-ecosystem-backlog-triage-runtime Emit the Phase 10 ecosystem-backlog-triage runtime path artifact",
|
|
696
|
+
" --publish-plan Emit the publish-day command artifact",
|
|
697
|
+
" --ecosystem Emit the ecosystem entry artifact",
|
|
698
|
+
" --narrative Emit the launch narrative artifact",
|
|
699
|
+
" --outreach-proof Emit the outreach proof artifact",
|
|
700
|
+
" --announcement Emit the announcement artifact",
|
|
701
|
+
" --candidate Emit the release candidate artifact",
|
|
702
|
+
" --pretty Pretty-print JSON output"
|
|
703
|
+
].join("\n")
|
|
704
|
+
);
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
function main() {
|
|
708
|
+
const args = process.argv.slice(2);
|
|
709
|
+
if (args.includes("--help") || args.includes("-h")) {
|
|
710
|
+
printUsage();
|
|
711
|
+
process.stderr.write("\n");
|
|
712
|
+
process.exit(0);
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
const summary = args.includes("--summary");
|
|
716
|
+
const comparison = args.includes("--comparison");
|
|
717
|
+
const adoption = args.includes("--adoption");
|
|
718
|
+
const scenarios = args.includes("--scenarios");
|
|
719
|
+
const launch = args.includes("--launch");
|
|
720
|
+
const manifest = args.includes("--manifest");
|
|
721
|
+
const notes = args.includes("--notes");
|
|
722
|
+
const center = args.includes("--center");
|
|
723
|
+
const history = args.includes("--history");
|
|
724
|
+
const adapters = args.includes("--adapters");
|
|
725
|
+
const adapterPromotion = args.includes("--adapter-promotion");
|
|
726
|
+
const adapterPartners = args.includes("--adapter-partners");
|
|
727
|
+
const softLaunch = args.includes("--soft-launch");
|
|
728
|
+
const outreachCopy = args.includes("--outreach-copy");
|
|
729
|
+
const outreachTargets = args.includes("--outreach-targets");
|
|
730
|
+
const outreachMessages = args.includes("--outreach-messages");
|
|
731
|
+
const phases = args.includes("--phases");
|
|
732
|
+
const phase1 = args.includes("--phase-1");
|
|
733
|
+
const phase1OpenaiCodex = args.includes("--phase-1-openai-codex");
|
|
734
|
+
const phase1OpenaiCodexRuntime = args.includes("--phase-1-openai-codex-runtime");
|
|
735
|
+
const phase1ClaudeMcp = args.includes("--phase-1-claude-mcp");
|
|
736
|
+
const phase1ClaudeMcpRuntime = args.includes("--phase-1-claude-mcp-runtime");
|
|
737
|
+
const phase2 = args.includes("--phase-2");
|
|
738
|
+
const phase2Completion = args.includes("--phase-2-completion");
|
|
739
|
+
const phase2FreezeReview = args.includes("--phase-2-freeze-review");
|
|
740
|
+
const phase2Gate = args.includes("--phase-2-gate");
|
|
741
|
+
const phase2Closeout = args.includes("--phase-2-closeout");
|
|
742
|
+
const phase2DecisionRecord = args.includes("--phase-2-decision-record");
|
|
743
|
+
const phase2DecisionResolution = args.includes("--phase-2-decision-resolution");
|
|
744
|
+
const phase2FlipPreview = args.includes("--phase-2-flip-preview");
|
|
745
|
+
const phase2EvmRuntime = args.includes("--phase-2-evm-runtime");
|
|
746
|
+
const phase2EvmBaseRuntime = args.includes("--phase-2-evm-base-runtime");
|
|
747
|
+
const phase2BaseRuntime = args.includes("--phase-2-base-runtime");
|
|
748
|
+
const phase2UsdcRuntime = args.includes("--phase-2-usdc-runtime");
|
|
749
|
+
const phase2BaseUsdcRuntime = args.includes("--phase-2-base-usdc-runtime");
|
|
750
|
+
const phase2EthRuntime = args.includes("--phase-2-eth-runtime");
|
|
751
|
+
const phase3 = args.includes("--phase-3");
|
|
752
|
+
const phase3NativeContinuity = args.includes("--phase-3-native-continuity");
|
|
753
|
+
const phase3FreezeBaseline = args.includes("--phase-3-freeze-baseline");
|
|
754
|
+
const phase3Completion = args.includes("--phase-3-completion");
|
|
755
|
+
const phase3FreezeReview = args.includes("--phase-3-freeze-review");
|
|
756
|
+
const phase3Gate = args.includes("--phase-3-gate");
|
|
757
|
+
const phase3Closeout = args.includes("--phase-3-closeout");
|
|
758
|
+
const phase3DecisionRecord = args.includes("--phase-3-decision-record");
|
|
759
|
+
const phase3DecisionResolution = args.includes("--phase-3-decision-resolution");
|
|
760
|
+
const phase3BsvTeranodeRuntime = args.includes("--phase-3-bsv-teranode-runtime");
|
|
761
|
+
const phase3MetanetRuntime = args.includes("--phase-3-metanet-runtime");
|
|
762
|
+
const phase3BrcRuntime = args.includes("--phase-3-brc-runtime");
|
|
763
|
+
const phase4 = args.includes("--phase-4");
|
|
764
|
+
const phase4TrustContinuity = args.includes("--phase-4-trust-continuity");
|
|
765
|
+
const phase4Completion = args.includes("--phase-4-completion");
|
|
766
|
+
const phase4FreezeBaseline = args.includes("--phase-4-freeze-baseline");
|
|
767
|
+
const phase4FreezeReview = args.includes("--phase-4-freeze-review");
|
|
768
|
+
const phase4Gate = args.includes("--phase-4-gate");
|
|
769
|
+
const phase4Closeout = args.includes("--phase-4-closeout");
|
|
770
|
+
const phase4DecisionRecord = args.includes("--phase-4-decision-record");
|
|
771
|
+
const phase4DecisionResolution = args.includes("--phase-4-decision-resolution");
|
|
772
|
+
const phase4Erc8004Runtime = args.includes("--phase-4-erc8004-runtime");
|
|
773
|
+
const phase4IdentityRegistryRuntime = args.includes("--phase-4-identity-registry-runtime");
|
|
774
|
+
const phase4AttestationRuntime = args.includes("--phase-4-attestation-runtime");
|
|
775
|
+
const phase5 = args.includes("--phase-5");
|
|
776
|
+
const phase5MajorRailsContinuity = args.includes("--phase-5-major-rails-continuity");
|
|
777
|
+
const phase5Completion = args.includes("--phase-5-completion");
|
|
778
|
+
const phase5FreezeBaseline = args.includes("--phase-5-freeze-baseline");
|
|
779
|
+
const phase5FreezeReview = args.includes("--phase-5-freeze-review");
|
|
780
|
+
const phase5Gate = args.includes("--phase-5-gate");
|
|
781
|
+
const phase5Closeout = args.includes("--phase-5-closeout");
|
|
782
|
+
const phase5DecisionRecord = args.includes("--phase-5-decision-record");
|
|
783
|
+
const phase5DecisionResolution = args.includes("--phase-5-decision-resolution");
|
|
784
|
+
const phase5SolanaRuntime = args.includes("--phase-5-solana-runtime");
|
|
785
|
+
const phase5AntelopeRuntime = args.includes("--phase-5-antelope-runtime");
|
|
786
|
+
const phase5ProtonXprRuntime = args.includes("--phase-5-proton-xpr-runtime");
|
|
787
|
+
const phase6 = args.includes("--phase-6");
|
|
788
|
+
const phase6FrameworkContinuity = args.includes("--phase-6-framework-continuity");
|
|
789
|
+
const phase6Completion = args.includes("--phase-6-completion");
|
|
790
|
+
const phase6FreezeBaseline = args.includes("--phase-6-freeze-baseline");
|
|
791
|
+
const phase6FreezeReview = args.includes("--phase-6-freeze-review");
|
|
792
|
+
const phase6Gate = args.includes("--phase-6-gate");
|
|
793
|
+
const phase6Closeout = args.includes("--phase-6-closeout");
|
|
794
|
+
const phase6DecisionRecord = args.includes("--phase-6-decision-record");
|
|
795
|
+
const phase6DecisionResolution = args.includes("--phase-6-decision-resolution");
|
|
796
|
+
const phase6LanggraphRuntime = args.includes("--phase-6-langgraph-runtime");
|
|
797
|
+
const phase6LangchainRuntime = args.includes("--phase-6-langchain-runtime");
|
|
798
|
+
const phase6AutogenRuntime = args.includes("--phase-6-autogen-runtime");
|
|
799
|
+
const phase6SemanticKernelRuntime = args.includes("--phase-6-semantic-kernel-runtime");
|
|
800
|
+
const phase7 = args.includes("--phase-7");
|
|
801
|
+
const phase7EventSystemContinuity = args.includes("--phase-7-event-system-continuity");
|
|
802
|
+
const phase7Completion = args.includes("--phase-7-completion");
|
|
803
|
+
const phase7FreezeBaseline = args.includes("--phase-7-freeze-baseline");
|
|
804
|
+
const phase7FreezeReview = args.includes("--phase-7-freeze-review");
|
|
805
|
+
const phase7Gate = args.includes("--phase-7-gate");
|
|
806
|
+
const phase7Closeout = args.includes("--phase-7-closeout");
|
|
807
|
+
const phase7DecisionRecord = args.includes("--phase-7-decision-record");
|
|
808
|
+
const phase7DecisionResolution = args.includes("--phase-7-decision-resolution");
|
|
809
|
+
const phase7KafkaRuntime = args.includes("--phase-7-kafka-runtime");
|
|
810
|
+
const phase7NatsRuntime = args.includes("--phase-7-nats-runtime");
|
|
811
|
+
const phase7MqttRuntime = args.includes("--phase-7-mqtt-runtime");
|
|
812
|
+
const phase7WebhookEventBusRuntime = args.includes("--phase-7-webhook-event-bus-runtime");
|
|
813
|
+
const phase8 = args.includes("--phase-8");
|
|
814
|
+
const phase8ProofBridgeContinuity = args.includes("--phase-8-proof-bridge-continuity");
|
|
815
|
+
const phase8Completion = args.includes("--phase-8-completion");
|
|
816
|
+
const phase8FreezeBaseline = args.includes("--phase-8-freeze-baseline");
|
|
817
|
+
const phase8FreezeReview = args.includes("--phase-8-freeze-review");
|
|
818
|
+
const phase8Gate = args.includes("--phase-8-gate");
|
|
819
|
+
const phase8Closeout = args.includes("--phase-8-closeout");
|
|
820
|
+
const phase8DecisionRecord = args.includes("--phase-8-decision-record");
|
|
821
|
+
const phase8DecisionResolution = args.includes("--phase-8-decision-resolution");
|
|
822
|
+
const phase8ExternalResultImportRuntime = args.includes("--phase-8-external-result-import-runtime");
|
|
823
|
+
const phase8ExternalReceiptImportRuntime = args.includes("--phase-8-external-receipt-import-runtime");
|
|
824
|
+
const phase8ProofBundleNormalizationRuntime = args.includes("--phase-8-proof-bundle-normalization-runtime");
|
|
825
|
+
const phase9 = args.includes("--phase-9");
|
|
826
|
+
const phase9TreasuryContinuity = args.includes("--phase-9-treasury-continuity");
|
|
827
|
+
const phase9Completion = args.includes("--phase-9-completion");
|
|
828
|
+
const phase9FreezeBaseline = args.includes("--phase-9-freeze-baseline");
|
|
829
|
+
const phase9FreezeReview = args.includes("--phase-9-freeze-review");
|
|
830
|
+
const phase9Gate = args.includes("--phase-9-gate");
|
|
831
|
+
const phase9Closeout = args.includes("--phase-9-closeout");
|
|
832
|
+
const phase9DecisionRecord = args.includes("--phase-9-decision-record");
|
|
833
|
+
const phase9DecisionResolution = args.includes("--phase-9-decision-resolution");
|
|
834
|
+
const phase9TreasuryDestinationsRuntime = args.includes("--phase-9-treasury-destinations-runtime");
|
|
835
|
+
const phase9CustodyRefsRuntime = args.includes("--phase-9-custody-refs-runtime");
|
|
836
|
+
const phase9OperatorAccountingBridgesRuntime = args.includes("--phase-9-operator-accounting-bridges-runtime");
|
|
837
|
+
const phase10 = args.includes("--phase-10");
|
|
838
|
+
const phase10LongTailContinuity = args.includes("--phase-10-long-tail-continuity");
|
|
839
|
+
const phase10Completion = args.includes("--phase-10-completion");
|
|
840
|
+
const phase10FreezeBaseline = args.includes("--phase-10-freeze-baseline");
|
|
841
|
+
const phase10FreezeReview = args.includes("--phase-10-freeze-review");
|
|
842
|
+
const phase10Gate = args.includes("--phase-10-gate");
|
|
843
|
+
const phase10Closeout = args.includes("--phase-10-closeout");
|
|
844
|
+
const phase10DecisionRecord = args.includes("--phase-10-decision-record");
|
|
845
|
+
const phase10DecisionResolution = args.includes("--phase-10-decision-resolution");
|
|
846
|
+
const phase10DemandSignalAdaptersRuntime = args.includes("--phase-10-demand-signal-adapters-runtime");
|
|
847
|
+
const phase10NicheExtensionRegistryRuntime = args.includes("--phase-10-niche-extension-registry-runtime");
|
|
848
|
+
const phase10EcosystemBacklogTriageRuntime = args.includes("--phase-10-ecosystem-backlog-triage-runtime");
|
|
849
|
+
const publishPlan = args.includes("--publish-plan");
|
|
850
|
+
const ecosystem = args.includes("--ecosystem");
|
|
851
|
+
const narrative = args.includes("--narrative");
|
|
852
|
+
const outreachProof = args.includes("--outreach-proof");
|
|
853
|
+
const announcement = args.includes("--announcement");
|
|
854
|
+
const candidate = args.includes("--candidate");
|
|
855
|
+
const pretty = args.includes("--pretty") || summary;
|
|
856
|
+
let payload;
|
|
857
|
+
if (comparison && summary) {
|
|
858
|
+
payload = summarizeComparisonPack();
|
|
859
|
+
} else if (comparison) {
|
|
860
|
+
payload = buildComparisonPack();
|
|
861
|
+
} else if (adoption && summary) {
|
|
862
|
+
payload = summarizeAdoptionPack();
|
|
863
|
+
} else if (adoption) {
|
|
864
|
+
payload = buildAdoptionPack();
|
|
865
|
+
} else if (scenarios && summary) {
|
|
866
|
+
payload = summarizeScenarioPack();
|
|
867
|
+
} else if (scenarios) {
|
|
868
|
+
payload = buildScenarioPack();
|
|
869
|
+
} else if (launch && summary) {
|
|
870
|
+
payload = summarizeLaunchPack();
|
|
871
|
+
} else if (launch) {
|
|
872
|
+
payload = buildLaunchPack();
|
|
873
|
+
} else if (manifest && summary) {
|
|
874
|
+
payload = summarizeReleaseManifest();
|
|
875
|
+
} else if (manifest) {
|
|
876
|
+
payload = buildReleaseManifest();
|
|
877
|
+
} else if (notes && summary) {
|
|
878
|
+
payload = summarizeLaunchNotes();
|
|
879
|
+
} else if (notes) {
|
|
880
|
+
payload = buildLaunchNotes();
|
|
881
|
+
} else if (center && summary) {
|
|
882
|
+
payload = summarizeReleaseCenter();
|
|
883
|
+
} else if (center) {
|
|
884
|
+
payload = buildReleaseCenter();
|
|
885
|
+
} else if (history && summary) {
|
|
886
|
+
payload = summarizeReleaseHistory();
|
|
887
|
+
} else if (history) {
|
|
888
|
+
payload = buildReleaseHistory();
|
|
889
|
+
} else if (adapters && summary) {
|
|
890
|
+
payload = summarizeAdapterPack();
|
|
891
|
+
} else if (adapters) {
|
|
892
|
+
payload = buildAdapterPack();
|
|
893
|
+
} else if (adapterPromotion && summary) {
|
|
894
|
+
payload = summarizeAdapterPromotionPack();
|
|
895
|
+
} else if (adapterPromotion) {
|
|
896
|
+
payload = buildAdapterPromotionPack();
|
|
897
|
+
} else if (adapterPartners && summary) {
|
|
898
|
+
payload = summarizeAdapterPartnerPack();
|
|
899
|
+
} else if (adapterPartners) {
|
|
900
|
+
payload = buildAdapterPartnerPack();
|
|
901
|
+
} else if (softLaunch && summary) {
|
|
902
|
+
payload = summarizeSoftLaunchPack();
|
|
903
|
+
} else if (softLaunch) {
|
|
904
|
+
payload = buildSoftLaunchPack();
|
|
905
|
+
} else if (outreachCopy && summary) {
|
|
906
|
+
payload = summarizeOutreachCopyPack();
|
|
907
|
+
} else if (outreachCopy) {
|
|
908
|
+
payload = buildOutreachCopyPack();
|
|
909
|
+
} else if (outreachTargets && summary) {
|
|
910
|
+
payload = summarizeOutreachTargetPack();
|
|
911
|
+
} else if (outreachTargets) {
|
|
912
|
+
payload = buildOutreachTargetPack();
|
|
913
|
+
} else if (outreachMessages && summary) {
|
|
914
|
+
payload = summarizeOutreachMessagePack();
|
|
915
|
+
} else if (outreachMessages) {
|
|
916
|
+
payload = buildOutreachMessagePack();
|
|
917
|
+
} else if (phases && summary) {
|
|
918
|
+
payload = summarizePhaseProgramPack();
|
|
919
|
+
} else if (phases) {
|
|
920
|
+
payload = buildPhaseProgramPack();
|
|
921
|
+
} else if (phase1 && summary) {
|
|
922
|
+
payload = summarizePhase1EcosystemPack();
|
|
923
|
+
} else if (phase1) {
|
|
924
|
+
payload = buildPhase1EcosystemPack();
|
|
925
|
+
} else if (phase1OpenaiCodex && summary) {
|
|
926
|
+
payload = summarizePhase1OpenaiCodexPack();
|
|
927
|
+
} else if (phase1OpenaiCodex) {
|
|
928
|
+
payload = buildPhase1OpenaiCodexPack();
|
|
929
|
+
} else if (phase1OpenaiCodexRuntime && summary) {
|
|
930
|
+
payload = summarizePhase1OpenaiCodexRuntimePack();
|
|
931
|
+
} else if (phase1OpenaiCodexRuntime) {
|
|
932
|
+
payload = buildPhase1OpenaiCodexRuntimePack();
|
|
933
|
+
} else if (phase1ClaudeMcp && summary) {
|
|
934
|
+
payload = summarizePhase1ClaudeMcpPack();
|
|
935
|
+
} else if (phase1ClaudeMcp) {
|
|
936
|
+
payload = buildPhase1ClaudeMcpPack();
|
|
937
|
+
} else if (phase1ClaudeMcpRuntime && summary) {
|
|
938
|
+
payload = summarizePhase1ClaudeMcpRuntimePack();
|
|
939
|
+
} else if (phase1ClaudeMcpRuntime) {
|
|
940
|
+
payload = buildPhase1ClaudeMcpRuntimePack();
|
|
941
|
+
} else if (phase2 && summary) {
|
|
942
|
+
payload = summarizePhase2PaymentRailsPack();
|
|
943
|
+
} else if (phase2) {
|
|
944
|
+
payload = buildPhase2PaymentRailsPack();
|
|
945
|
+
} else if (phase2Completion && summary) {
|
|
946
|
+
payload = summarizePhase2CompletionPack();
|
|
947
|
+
} else if (phase2Completion) {
|
|
948
|
+
payload = buildPhase2CompletionPack();
|
|
949
|
+
} else if (phase2FreezeReview && summary) {
|
|
950
|
+
payload = summarizePhase2FreezeReviewPack();
|
|
951
|
+
} else if (phase2FreezeReview) {
|
|
952
|
+
payload = buildPhase2FreezeReviewPack();
|
|
953
|
+
} else if (phase2Gate && summary) {
|
|
954
|
+
payload = summarizePhase2GatePack();
|
|
955
|
+
} else if (phase2Gate) {
|
|
956
|
+
payload = buildPhase2GatePack();
|
|
957
|
+
} else if (phase2Closeout && summary) {
|
|
958
|
+
payload = summarizePhase2CloseoutPack();
|
|
959
|
+
} else if (phase2Closeout) {
|
|
960
|
+
payload = buildPhase2CloseoutPack();
|
|
961
|
+
} else if (phase2DecisionRecord && summary) {
|
|
962
|
+
payload = summarizePhase2DecisionRecordPack();
|
|
963
|
+
} else if (phase2DecisionRecord) {
|
|
964
|
+
payload = buildPhase2DecisionRecordPack();
|
|
965
|
+
} else if (phase2DecisionResolution && summary) {
|
|
966
|
+
payload = summarizePhase2DecisionResolutionPack();
|
|
967
|
+
} else if (phase2DecisionResolution) {
|
|
968
|
+
payload = buildPhase2DecisionResolutionPack();
|
|
969
|
+
} else if (phase2FlipPreview && summary) {
|
|
970
|
+
payload = summarizePhase2FlipPreviewPack();
|
|
971
|
+
} else if (phase2FlipPreview) {
|
|
972
|
+
payload = buildPhase2FlipPreviewPack();
|
|
973
|
+
} else if (phase2EvmRuntime && summary) {
|
|
974
|
+
payload = summarizePhase2EvmRuntimePack();
|
|
975
|
+
} else if (phase2EvmRuntime) {
|
|
976
|
+
payload = buildPhase2EvmRuntimePack();
|
|
977
|
+
} else if (phase2EvmBaseRuntime && summary) {
|
|
978
|
+
payload = summarizePhase2EvmBaseRuntimePack();
|
|
979
|
+
} else if (phase2EvmBaseRuntime) {
|
|
980
|
+
payload = buildPhase2EvmBaseRuntimePack();
|
|
981
|
+
} else if (phase2BaseRuntime && summary) {
|
|
982
|
+
payload = summarizePhase2BaseRuntimePack();
|
|
983
|
+
} else if (phase2BaseRuntime) {
|
|
984
|
+
payload = buildPhase2BaseRuntimePack();
|
|
985
|
+
} else if (phase2UsdcRuntime && summary) {
|
|
986
|
+
payload = summarizePhase2UsdcRuntimePack();
|
|
987
|
+
} else if (phase2UsdcRuntime) {
|
|
988
|
+
payload = buildPhase2UsdcRuntimePack();
|
|
989
|
+
} else if (phase2BaseUsdcRuntime && summary) {
|
|
990
|
+
payload = summarizePhase2BaseUsdcRuntimePack();
|
|
991
|
+
} else if (phase2BaseUsdcRuntime) {
|
|
992
|
+
payload = buildPhase2BaseUsdcRuntimePack();
|
|
993
|
+
} else if (phase2EthRuntime && summary) {
|
|
994
|
+
payload = summarizePhase2EthRuntimePack();
|
|
995
|
+
} else if (phase2EthRuntime) {
|
|
996
|
+
payload = buildPhase2EthRuntimePack();
|
|
997
|
+
} else if (phase3 && summary) {
|
|
998
|
+
payload = summarizePhase3NativeBsvPack();
|
|
999
|
+
} else if (phase3) {
|
|
1000
|
+
payload = buildPhase3NativeBsvPack();
|
|
1001
|
+
} else if (phase3NativeContinuity && summary) {
|
|
1002
|
+
payload = summarizePhase3NativeContinuityPack();
|
|
1003
|
+
} else if (phase3NativeContinuity) {
|
|
1004
|
+
payload = buildPhase3NativeContinuityPack();
|
|
1005
|
+
} else if (phase3FreezeBaseline && summary) {
|
|
1006
|
+
payload = summarizePhase3FreezeBaselinePack();
|
|
1007
|
+
} else if (phase3FreezeBaseline) {
|
|
1008
|
+
payload = buildPhase3FreezeBaselinePack();
|
|
1009
|
+
} else if (phase3Completion && summary) {
|
|
1010
|
+
payload = summarizePhase3CompletionPack();
|
|
1011
|
+
} else if (phase3Completion) {
|
|
1012
|
+
payload = buildPhase3CompletionPack();
|
|
1013
|
+
} else if (phase3FreezeReview && summary) {
|
|
1014
|
+
payload = summarizePhase3FreezeReviewPack();
|
|
1015
|
+
} else if (phase3FreezeReview) {
|
|
1016
|
+
payload = buildPhase3FreezeReviewPack();
|
|
1017
|
+
} else if (phase3Gate && summary) {
|
|
1018
|
+
payload = summarizePhase3GatePack();
|
|
1019
|
+
} else if (phase3Gate) {
|
|
1020
|
+
payload = buildPhase3GatePack();
|
|
1021
|
+
} else if (phase3Closeout && summary) {
|
|
1022
|
+
payload = summarizePhase3CloseoutPack();
|
|
1023
|
+
} else if (phase3Closeout) {
|
|
1024
|
+
payload = buildPhase3CloseoutPack();
|
|
1025
|
+
} else if (phase3DecisionRecord && summary) {
|
|
1026
|
+
payload = summarizePhase3DecisionRecordPack();
|
|
1027
|
+
} else if (phase3DecisionRecord) {
|
|
1028
|
+
payload = buildPhase3DecisionRecordPack();
|
|
1029
|
+
} else if (phase3DecisionResolution && summary) {
|
|
1030
|
+
payload = summarizePhase3DecisionResolutionPack();
|
|
1031
|
+
} else if (phase3DecisionResolution) {
|
|
1032
|
+
payload = buildPhase3DecisionResolutionPack();
|
|
1033
|
+
} else if (phase3BsvTeranodeRuntime && summary) {
|
|
1034
|
+
payload = summarizePhase3BsvTeranodeRuntimePack();
|
|
1035
|
+
} else if (phase3BsvTeranodeRuntime) {
|
|
1036
|
+
payload = buildPhase3BsvTeranodeRuntimePack();
|
|
1037
|
+
} else if (phase3MetanetRuntime && summary) {
|
|
1038
|
+
payload = summarizePhase3MetanetRuntimePack();
|
|
1039
|
+
} else if (phase3MetanetRuntime) {
|
|
1040
|
+
payload = buildPhase3MetanetRuntimePack();
|
|
1041
|
+
} else if (phase3BrcRuntime && summary) {
|
|
1042
|
+
payload = summarizePhase3BrcRuntimePack();
|
|
1043
|
+
} else if (phase3BrcRuntime) {
|
|
1044
|
+
payload = buildPhase3BrcRuntimePack();
|
|
1045
|
+
} else if (phase4 && summary) {
|
|
1046
|
+
payload = summarizePhase4IdentityTrustPack();
|
|
1047
|
+
} else if (phase4) {
|
|
1048
|
+
payload = buildPhase4IdentityTrustPack();
|
|
1049
|
+
} else if (phase4TrustContinuity && summary) {
|
|
1050
|
+
payload = summarizePhase4TrustContinuityPack();
|
|
1051
|
+
} else if (phase4TrustContinuity) {
|
|
1052
|
+
payload = buildPhase4TrustContinuityPack();
|
|
1053
|
+
} else if (phase4Completion && summary) {
|
|
1054
|
+
payload = summarizePhase4CompletionPack();
|
|
1055
|
+
} else if (phase4Completion) {
|
|
1056
|
+
payload = buildPhase4CompletionPack();
|
|
1057
|
+
} else if (phase4FreezeBaseline && summary) {
|
|
1058
|
+
payload = summarizePhase4FreezeBaselinePack();
|
|
1059
|
+
} else if (phase4FreezeBaseline) {
|
|
1060
|
+
payload = buildPhase4FreezeBaselinePack();
|
|
1061
|
+
} else if (phase4FreezeReview && summary) {
|
|
1062
|
+
payload = summarizePhase4FreezeReviewPack();
|
|
1063
|
+
} else if (phase4FreezeReview) {
|
|
1064
|
+
payload = buildPhase4FreezeReviewPack();
|
|
1065
|
+
} else if (phase4Gate && summary) {
|
|
1066
|
+
payload = summarizePhase4GatePack();
|
|
1067
|
+
} else if (phase4Gate) {
|
|
1068
|
+
payload = buildPhase4GatePack();
|
|
1069
|
+
} else if (phase4Closeout && summary) {
|
|
1070
|
+
payload = summarizePhase4CloseoutPack();
|
|
1071
|
+
} else if (phase4Closeout) {
|
|
1072
|
+
payload = buildPhase4CloseoutPack();
|
|
1073
|
+
} else if (phase4DecisionRecord && summary) {
|
|
1074
|
+
payload = summarizePhase4DecisionRecordPack();
|
|
1075
|
+
} else if (phase4DecisionRecord) {
|
|
1076
|
+
payload = buildPhase4DecisionRecordPack();
|
|
1077
|
+
} else if (phase4DecisionResolution && summary) {
|
|
1078
|
+
payload = summarizePhase4DecisionResolutionPack();
|
|
1079
|
+
} else if (phase4DecisionResolution) {
|
|
1080
|
+
payload = buildPhase4DecisionResolutionPack();
|
|
1081
|
+
} else if (phase4Erc8004Runtime && summary) {
|
|
1082
|
+
payload = summarizePhase4Erc8004RuntimePack();
|
|
1083
|
+
} else if (phase4Erc8004Runtime) {
|
|
1084
|
+
payload = buildPhase4Erc8004RuntimePack();
|
|
1085
|
+
} else if (phase4IdentityRegistryRuntime && summary) {
|
|
1086
|
+
payload = summarizePhase4IdentityRegistryRuntimePack();
|
|
1087
|
+
} else if (phase4IdentityRegistryRuntime) {
|
|
1088
|
+
payload = buildPhase4IdentityRegistryRuntimePack();
|
|
1089
|
+
} else if (phase4AttestationRuntime && summary) {
|
|
1090
|
+
payload = summarizePhase4AttestationRuntimePack();
|
|
1091
|
+
} else if (phase4AttestationRuntime) {
|
|
1092
|
+
payload = buildPhase4AttestationRuntimePack();
|
|
1093
|
+
} else if (phase5 && summary) {
|
|
1094
|
+
payload = summarizePhase5MajorRailsPack();
|
|
1095
|
+
} else if (phase5) {
|
|
1096
|
+
payload = buildPhase5MajorRailsPack();
|
|
1097
|
+
} else if (phase5MajorRailsContinuity && summary) {
|
|
1098
|
+
payload = summarizePhase5MajorRailsContinuityPack();
|
|
1099
|
+
} else if (phase5MajorRailsContinuity) {
|
|
1100
|
+
payload = buildPhase5MajorRailsContinuityPack();
|
|
1101
|
+
} else if (phase5Completion && summary) {
|
|
1102
|
+
payload = summarizePhase5CompletionPack();
|
|
1103
|
+
} else if (phase5Completion) {
|
|
1104
|
+
payload = buildPhase5CompletionPack();
|
|
1105
|
+
} else if (phase5FreezeBaseline && summary) {
|
|
1106
|
+
payload = summarizePhase5FreezeBaselinePack();
|
|
1107
|
+
} else if (phase5FreezeBaseline) {
|
|
1108
|
+
payload = buildPhase5FreezeBaselinePack();
|
|
1109
|
+
} else if (phase5FreezeReview && summary) {
|
|
1110
|
+
payload = summarizePhase5FreezeReviewPack();
|
|
1111
|
+
} else if (phase5FreezeReview) {
|
|
1112
|
+
payload = buildPhase5FreezeReviewPack();
|
|
1113
|
+
} else if (phase5Gate && summary) {
|
|
1114
|
+
payload = summarizePhase5GatePack();
|
|
1115
|
+
} else if (phase5Gate) {
|
|
1116
|
+
payload = buildPhase5GatePack();
|
|
1117
|
+
} else if (phase5Closeout && summary) {
|
|
1118
|
+
payload = summarizePhase5CloseoutPack();
|
|
1119
|
+
} else if (phase5Closeout) {
|
|
1120
|
+
payload = buildPhase5CloseoutPack();
|
|
1121
|
+
} else if (phase5DecisionRecord && summary) {
|
|
1122
|
+
payload = summarizePhase5DecisionRecordPack();
|
|
1123
|
+
} else if (phase5DecisionRecord) {
|
|
1124
|
+
payload = buildPhase5DecisionRecordPack();
|
|
1125
|
+
} else if (phase5DecisionResolution && summary) {
|
|
1126
|
+
payload = summarizePhase5DecisionResolutionPack();
|
|
1127
|
+
} else if (phase5DecisionResolution) {
|
|
1128
|
+
payload = buildPhase5DecisionResolutionPack();
|
|
1129
|
+
} else if (phase5SolanaRuntime && summary) {
|
|
1130
|
+
payload = summarizePhase5SolanaRuntimePack();
|
|
1131
|
+
} else if (phase5SolanaRuntime) {
|
|
1132
|
+
payload = buildPhase5SolanaRuntimePack();
|
|
1133
|
+
} else if (phase5AntelopeRuntime && summary) {
|
|
1134
|
+
payload = summarizePhase5AntelopeRuntimePack();
|
|
1135
|
+
} else if (phase5AntelopeRuntime) {
|
|
1136
|
+
payload = buildPhase5AntelopeRuntimePack();
|
|
1137
|
+
} else if (phase5ProtonXprRuntime && summary) {
|
|
1138
|
+
payload = summarizePhase5ProtonXprRuntimePack();
|
|
1139
|
+
} else if (phase5ProtonXprRuntime) {
|
|
1140
|
+
payload = buildPhase5ProtonXprRuntimePack();
|
|
1141
|
+
} else if (phase6 && summary) {
|
|
1142
|
+
payload = summarizePhase6FrameworkRuntimePack();
|
|
1143
|
+
} else if (phase6) {
|
|
1144
|
+
payload = buildPhase6FrameworkRuntimePack();
|
|
1145
|
+
} else if (phase6FrameworkContinuity && summary) {
|
|
1146
|
+
payload = summarizePhase6FrameworkContinuityPack();
|
|
1147
|
+
} else if (phase6FrameworkContinuity) {
|
|
1148
|
+
payload = buildPhase6FrameworkContinuityPack();
|
|
1149
|
+
} else if (phase6Completion && summary) {
|
|
1150
|
+
payload = summarizePhase6CompletionPack();
|
|
1151
|
+
} else if (phase6Completion) {
|
|
1152
|
+
payload = buildPhase6CompletionPack();
|
|
1153
|
+
} else if (phase6FreezeBaseline && summary) {
|
|
1154
|
+
payload = summarizePhase6FreezeBaselinePack();
|
|
1155
|
+
} else if (phase6FreezeBaseline) {
|
|
1156
|
+
payload = buildPhase6FreezeBaselinePack();
|
|
1157
|
+
} else if (phase6FreezeReview && summary) {
|
|
1158
|
+
payload = summarizePhase6FreezeReviewPack();
|
|
1159
|
+
} else if (phase6FreezeReview) {
|
|
1160
|
+
payload = buildPhase6FreezeReviewPack();
|
|
1161
|
+
} else if (phase6Gate && summary) {
|
|
1162
|
+
payload = summarizePhase6GatePack();
|
|
1163
|
+
} else if (phase6Gate) {
|
|
1164
|
+
payload = buildPhase6GatePack();
|
|
1165
|
+
} else if (phase6Closeout && summary) {
|
|
1166
|
+
payload = summarizePhase6CloseoutPack();
|
|
1167
|
+
} else if (phase6Closeout) {
|
|
1168
|
+
payload = buildPhase6CloseoutPack();
|
|
1169
|
+
} else if (phase6DecisionRecord && summary) {
|
|
1170
|
+
payload = summarizePhase6DecisionRecordPack();
|
|
1171
|
+
} else if (phase6DecisionRecord) {
|
|
1172
|
+
payload = buildPhase6DecisionRecordPack();
|
|
1173
|
+
} else if (phase6DecisionResolution && summary) {
|
|
1174
|
+
payload = summarizePhase6DecisionResolutionPack();
|
|
1175
|
+
} else if (phase6DecisionResolution) {
|
|
1176
|
+
payload = buildPhase6DecisionResolutionPack();
|
|
1177
|
+
} else if (phase6LanggraphRuntime && summary) {
|
|
1178
|
+
payload = summarizePhase6LanggraphRuntimePack();
|
|
1179
|
+
} else if (phase6LanggraphRuntime) {
|
|
1180
|
+
payload = buildPhase6LanggraphRuntimePack();
|
|
1181
|
+
} else if (phase6LangchainRuntime && summary) {
|
|
1182
|
+
payload = summarizePhase6LangchainRuntimePack();
|
|
1183
|
+
} else if (phase6LangchainRuntime) {
|
|
1184
|
+
payload = buildPhase6LangchainRuntimePack();
|
|
1185
|
+
} else if (phase6AutogenRuntime && summary) {
|
|
1186
|
+
payload = summarizePhase6AutogenRuntimePack();
|
|
1187
|
+
} else if (phase6AutogenRuntime) {
|
|
1188
|
+
payload = buildPhase6AutogenRuntimePack();
|
|
1189
|
+
} else if (phase6SemanticKernelRuntime && summary) {
|
|
1190
|
+
payload = summarizePhase6SemanticKernelRuntimePack();
|
|
1191
|
+
} else if (phase6SemanticKernelRuntime) {
|
|
1192
|
+
payload = buildPhase6SemanticKernelRuntimePack();
|
|
1193
|
+
} else if (phase7 && summary) {
|
|
1194
|
+
payload = summarizePhase7EventSystemPack();
|
|
1195
|
+
} else if (phase7) {
|
|
1196
|
+
payload = buildPhase7EventSystemPack();
|
|
1197
|
+
} else if (phase7EventSystemContinuity && summary) {
|
|
1198
|
+
payload = summarizePhase7EventSystemContinuityPack();
|
|
1199
|
+
} else if (phase7EventSystemContinuity) {
|
|
1200
|
+
payload = buildPhase7EventSystemContinuityPack();
|
|
1201
|
+
} else if (phase7Completion && summary) {
|
|
1202
|
+
payload = summarizePhase7CompletionPack();
|
|
1203
|
+
} else if (phase7Completion) {
|
|
1204
|
+
payload = buildPhase7CompletionPack();
|
|
1205
|
+
} else if (phase7FreezeBaseline && summary) {
|
|
1206
|
+
payload = summarizePhase7FreezeBaselinePack();
|
|
1207
|
+
} else if (phase7FreezeBaseline) {
|
|
1208
|
+
payload = buildPhase7FreezeBaselinePack();
|
|
1209
|
+
} else if (phase7FreezeReview && summary) {
|
|
1210
|
+
payload = summarizePhase7FreezeReviewPack();
|
|
1211
|
+
} else if (phase7FreezeReview) {
|
|
1212
|
+
payload = buildPhase7FreezeReviewPack();
|
|
1213
|
+
} else if (phase7Gate && summary) {
|
|
1214
|
+
payload = summarizePhase7GatePack();
|
|
1215
|
+
} else if (phase7Gate) {
|
|
1216
|
+
payload = buildPhase7GatePack();
|
|
1217
|
+
} else if (phase7Closeout && summary) {
|
|
1218
|
+
payload = summarizePhase7CloseoutPack();
|
|
1219
|
+
} else if (phase7Closeout) {
|
|
1220
|
+
payload = buildPhase7CloseoutPack();
|
|
1221
|
+
} else if (phase7DecisionRecord && summary) {
|
|
1222
|
+
payload = summarizePhase7DecisionRecordPack();
|
|
1223
|
+
} else if (phase7DecisionRecord) {
|
|
1224
|
+
payload = buildPhase7DecisionRecordPack();
|
|
1225
|
+
} else if (phase7DecisionResolution && summary) {
|
|
1226
|
+
payload = summarizePhase7DecisionResolutionPack();
|
|
1227
|
+
} else if (phase7DecisionResolution) {
|
|
1228
|
+
payload = buildPhase7DecisionResolutionPack();
|
|
1229
|
+
} else if (phase7KafkaRuntime && summary) {
|
|
1230
|
+
payload = summarizePhase7KafkaRuntimePack();
|
|
1231
|
+
} else if (phase7KafkaRuntime) {
|
|
1232
|
+
payload = buildPhase7KafkaRuntimePack();
|
|
1233
|
+
} else if (phase7NatsRuntime && summary) {
|
|
1234
|
+
payload = summarizePhase7NatsRuntimePack();
|
|
1235
|
+
} else if (phase7NatsRuntime) {
|
|
1236
|
+
payload = buildPhase7NatsRuntimePack();
|
|
1237
|
+
} else if (phase7MqttRuntime && summary) {
|
|
1238
|
+
payload = summarizePhase7MqttRuntimePack();
|
|
1239
|
+
} else if (phase7MqttRuntime) {
|
|
1240
|
+
payload = buildPhase7MqttRuntimePack();
|
|
1241
|
+
} else if (phase7WebhookEventBusRuntime && summary) {
|
|
1242
|
+
payload = summarizePhase7WebhookEventBusRuntimePack();
|
|
1243
|
+
} else if (phase7WebhookEventBusRuntime) {
|
|
1244
|
+
payload = buildPhase7WebhookEventBusRuntimePack();
|
|
1245
|
+
} else if (phase8 && summary) {
|
|
1246
|
+
payload = summarizePhase8ProofBridgesPack();
|
|
1247
|
+
} else if (phase8) {
|
|
1248
|
+
payload = buildPhase8ProofBridgesPack();
|
|
1249
|
+
} else if (phase8ProofBridgeContinuity && summary) {
|
|
1250
|
+
payload = summarizePhase8ProofBridgeContinuityPack();
|
|
1251
|
+
} else if (phase8ProofBridgeContinuity) {
|
|
1252
|
+
payload = buildPhase8ProofBridgeContinuityPack();
|
|
1253
|
+
} else if (phase8Completion && summary) {
|
|
1254
|
+
payload = summarizePhase8CompletionPack();
|
|
1255
|
+
} else if (phase8Completion) {
|
|
1256
|
+
payload = buildPhase8CompletionPack();
|
|
1257
|
+
} else if (phase8FreezeBaseline && summary) {
|
|
1258
|
+
payload = summarizePhase8FreezeBaselinePack();
|
|
1259
|
+
} else if (phase8FreezeBaseline) {
|
|
1260
|
+
payload = buildPhase8FreezeBaselinePack();
|
|
1261
|
+
} else if (phase8FreezeReview && summary) {
|
|
1262
|
+
payload = summarizePhase8FreezeReviewPack();
|
|
1263
|
+
} else if (phase8FreezeReview) {
|
|
1264
|
+
payload = buildPhase8FreezeReviewPack();
|
|
1265
|
+
} else if (phase8Gate && summary) {
|
|
1266
|
+
payload = summarizePhase8GatePack();
|
|
1267
|
+
} else if (phase8Gate) {
|
|
1268
|
+
payload = buildPhase8GatePack();
|
|
1269
|
+
} else if (phase8Closeout && summary) {
|
|
1270
|
+
payload = summarizePhase8CloseoutPack();
|
|
1271
|
+
} else if (phase8Closeout) {
|
|
1272
|
+
payload = buildPhase8CloseoutPack();
|
|
1273
|
+
} else if (phase8DecisionRecord && summary) {
|
|
1274
|
+
payload = summarizePhase8DecisionRecordPack();
|
|
1275
|
+
} else if (phase8DecisionRecord) {
|
|
1276
|
+
payload = buildPhase8DecisionRecordPack();
|
|
1277
|
+
} else if (phase8DecisionResolution && summary) {
|
|
1278
|
+
payload = summarizePhase8DecisionResolutionPack();
|
|
1279
|
+
} else if (phase8DecisionResolution) {
|
|
1280
|
+
payload = buildPhase8DecisionResolutionPack();
|
|
1281
|
+
} else if (phase8ExternalResultImportRuntime && summary) {
|
|
1282
|
+
payload = summarizePhase8ExternalResultImportRuntimePack();
|
|
1283
|
+
} else if (phase8ExternalResultImportRuntime) {
|
|
1284
|
+
payload = buildPhase8ExternalResultImportRuntimePack();
|
|
1285
|
+
} else if (phase8ExternalReceiptImportRuntime && summary) {
|
|
1286
|
+
payload = summarizePhase8ExternalReceiptImportRuntimePack();
|
|
1287
|
+
} else if (phase8ExternalReceiptImportRuntime) {
|
|
1288
|
+
payload = buildPhase8ExternalReceiptImportRuntimePack();
|
|
1289
|
+
} else if (phase8ProofBundleNormalizationRuntime && summary) {
|
|
1290
|
+
payload = summarizePhase8ProofBundleNormalizationRuntimePack();
|
|
1291
|
+
} else if (phase8ProofBundleNormalizationRuntime) {
|
|
1292
|
+
payload = buildPhase8ProofBundleNormalizationRuntimePack();
|
|
1293
|
+
} else if (phase9 && summary) {
|
|
1294
|
+
payload = summarizePhase9TreasuryConnectivityPack();
|
|
1295
|
+
} else if (phase9) {
|
|
1296
|
+
payload = buildPhase9TreasuryConnectivityPack();
|
|
1297
|
+
} else if (phase9TreasuryContinuity && summary) {
|
|
1298
|
+
payload = summarizePhase9TreasuryContinuityPack();
|
|
1299
|
+
} else if (phase9TreasuryContinuity) {
|
|
1300
|
+
payload = buildPhase9TreasuryContinuityPack();
|
|
1301
|
+
} else if (phase9Completion && summary) {
|
|
1302
|
+
payload = summarizePhase9CompletionPack();
|
|
1303
|
+
} else if (phase9Completion) {
|
|
1304
|
+
payload = buildPhase9CompletionPack();
|
|
1305
|
+
} else if (phase9FreezeBaseline && summary) {
|
|
1306
|
+
payload = summarizePhase9FreezeBaselinePack();
|
|
1307
|
+
} else if (phase9FreezeBaseline) {
|
|
1308
|
+
payload = buildPhase9FreezeBaselinePack();
|
|
1309
|
+
} else if (phase9FreezeReview && summary) {
|
|
1310
|
+
payload = summarizePhase9FreezeReviewPack();
|
|
1311
|
+
} else if (phase9FreezeReview) {
|
|
1312
|
+
payload = buildPhase9FreezeReviewPack();
|
|
1313
|
+
} else if (phase9Gate && summary) {
|
|
1314
|
+
payload = summarizePhase9GatePack();
|
|
1315
|
+
} else if (phase9Gate) {
|
|
1316
|
+
payload = buildPhase9GatePack();
|
|
1317
|
+
} else if (phase9Closeout && summary) {
|
|
1318
|
+
payload = summarizePhase9CloseoutPack();
|
|
1319
|
+
} else if (phase9Closeout) {
|
|
1320
|
+
payload = buildPhase9CloseoutPack();
|
|
1321
|
+
} else if (phase9DecisionRecord && summary) {
|
|
1322
|
+
payload = summarizePhase9DecisionRecordPack();
|
|
1323
|
+
} else if (phase9DecisionRecord) {
|
|
1324
|
+
payload = buildPhase9DecisionRecordPack();
|
|
1325
|
+
} else if (phase9DecisionResolution && summary) {
|
|
1326
|
+
payload = summarizePhase9DecisionResolutionPack();
|
|
1327
|
+
} else if (phase9DecisionResolution) {
|
|
1328
|
+
payload = buildPhase9DecisionResolutionPack();
|
|
1329
|
+
} else if (phase9TreasuryDestinationsRuntime && summary) {
|
|
1330
|
+
payload = summarizePhase9TreasuryDestinationsRuntimePack();
|
|
1331
|
+
} else if (phase9TreasuryDestinationsRuntime) {
|
|
1332
|
+
payload = buildPhase9TreasuryDestinationsRuntimePack();
|
|
1333
|
+
} else if (phase9CustodyRefsRuntime && summary) {
|
|
1334
|
+
payload = summarizePhase9CustodyRefsRuntimePack();
|
|
1335
|
+
} else if (phase9CustodyRefsRuntime) {
|
|
1336
|
+
payload = buildPhase9CustodyRefsRuntimePack();
|
|
1337
|
+
} else if (phase9OperatorAccountingBridgesRuntime && summary) {
|
|
1338
|
+
payload = summarizePhase9OperatorAccountingBridgesRuntimePack();
|
|
1339
|
+
} else if (phase9OperatorAccountingBridgesRuntime) {
|
|
1340
|
+
payload = buildPhase9OperatorAccountingBridgesRuntimePack();
|
|
1341
|
+
} else if (phase10 && summary) {
|
|
1342
|
+
payload = summarizePhase10LongTailEcosystemPack();
|
|
1343
|
+
} else if (phase10) {
|
|
1344
|
+
payload = buildPhase10LongTailEcosystemPack();
|
|
1345
|
+
} else if (phase10LongTailContinuity && summary) {
|
|
1346
|
+
payload = summarizePhase10LongTailContinuityPack();
|
|
1347
|
+
} else if (phase10LongTailContinuity) {
|
|
1348
|
+
payload = buildPhase10LongTailContinuityPack();
|
|
1349
|
+
} else if (phase10Completion && summary) {
|
|
1350
|
+
payload = summarizePhase10CompletionPack();
|
|
1351
|
+
} else if (phase10Completion) {
|
|
1352
|
+
payload = buildPhase10CompletionPack();
|
|
1353
|
+
} else if (phase10FreezeBaseline && summary) {
|
|
1354
|
+
payload = summarizePhase10FreezeBaselinePack();
|
|
1355
|
+
} else if (phase10FreezeBaseline) {
|
|
1356
|
+
payload = buildPhase10FreezeBaselinePack();
|
|
1357
|
+
} else if (phase10FreezeReview && summary) {
|
|
1358
|
+
payload = summarizePhase10FreezeReviewPack();
|
|
1359
|
+
} else if (phase10FreezeReview) {
|
|
1360
|
+
payload = buildPhase10FreezeReviewPack();
|
|
1361
|
+
} else if (phase10Gate && summary) {
|
|
1362
|
+
payload = summarizePhase10GatePack();
|
|
1363
|
+
} else if (phase10Gate) {
|
|
1364
|
+
payload = buildPhase10GatePack();
|
|
1365
|
+
} else if (phase10Closeout && summary) {
|
|
1366
|
+
payload = summarizePhase10CloseoutPack();
|
|
1367
|
+
} else if (phase10Closeout) {
|
|
1368
|
+
payload = buildPhase10CloseoutPack();
|
|
1369
|
+
} else if (phase10DecisionRecord && summary) {
|
|
1370
|
+
payload = summarizePhase10DecisionRecordPack();
|
|
1371
|
+
} else if (phase10DecisionRecord) {
|
|
1372
|
+
payload = buildPhase10DecisionRecordPack();
|
|
1373
|
+
} else if (phase10DecisionResolution && summary) {
|
|
1374
|
+
payload = summarizePhase10DecisionResolutionPack();
|
|
1375
|
+
} else if (phase10DecisionResolution) {
|
|
1376
|
+
payload = buildPhase10DecisionResolutionPack();
|
|
1377
|
+
} else if (phase10DemandSignalAdaptersRuntime && summary) {
|
|
1378
|
+
payload = summarizePhase10DemandSignalAdaptersRuntimePack();
|
|
1379
|
+
} else if (phase10DemandSignalAdaptersRuntime) {
|
|
1380
|
+
payload = buildPhase10DemandSignalAdaptersRuntimePack();
|
|
1381
|
+
} else if (phase10NicheExtensionRegistryRuntime && summary) {
|
|
1382
|
+
payload = summarizePhase10NicheExtensionRegistryRuntimePack();
|
|
1383
|
+
} else if (phase10NicheExtensionRegistryRuntime) {
|
|
1384
|
+
payload = buildPhase10NicheExtensionRegistryRuntimePack();
|
|
1385
|
+
} else if (phase10EcosystemBacklogTriageRuntime && summary) {
|
|
1386
|
+
payload = summarizePhase10EcosystemBacklogTriageRuntimePack();
|
|
1387
|
+
} else if (phase10EcosystemBacklogTriageRuntime) {
|
|
1388
|
+
payload = buildPhase10EcosystemBacklogTriageRuntimePack();
|
|
1389
|
+
} else if (publishPlan && summary) {
|
|
1390
|
+
payload = summarizePublishPlan();
|
|
1391
|
+
} else if (publishPlan) {
|
|
1392
|
+
payload = buildPublishPlan();
|
|
1393
|
+
} else if (ecosystem && summary) {
|
|
1394
|
+
payload = summarizeEcosystemEntryPack();
|
|
1395
|
+
} else if (ecosystem) {
|
|
1396
|
+
payload = buildEcosystemEntryPack();
|
|
1397
|
+
} else if (narrative && summary) {
|
|
1398
|
+
payload = summarizeLaunchNarrativePack();
|
|
1399
|
+
} else if (narrative) {
|
|
1400
|
+
payload = buildLaunchNarrativePack();
|
|
1401
|
+
} else if (outreachProof && summary) {
|
|
1402
|
+
payload = summarizeOutreachProofPack();
|
|
1403
|
+
} else if (outreachProof) {
|
|
1404
|
+
payload = buildOutreachProofPack();
|
|
1405
|
+
} else if (announcement && summary) {
|
|
1406
|
+
payload = summarizeAnnouncementPack();
|
|
1407
|
+
} else if (announcement) {
|
|
1408
|
+
payload = buildAnnouncementPack();
|
|
1409
|
+
} else if (candidate && summary) {
|
|
1410
|
+
payload = summarizeReleaseCandidatePack();
|
|
1411
|
+
} else if (candidate) {
|
|
1412
|
+
payload = buildReleaseCandidatePack();
|
|
1413
|
+
} else {
|
|
1414
|
+
payload = summary ? summarizeReleasePack() : buildReleasePack();
|
|
1415
|
+
}
|
|
1416
|
+
process.stdout.write(JSON.stringify(payload, null, pretty ? 2 : 0));
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
main();
|