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,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3BsvTeranodeRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-bsv-teranode-runtime-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
ecosystem_refs: ["bsv", "teranode"],
|
|
12
|
+
posture: "runtime_path",
|
|
13
|
+
settlement_shape: {
|
|
14
|
+
rail_family: "bsv_native_with_teranode",
|
|
15
|
+
settlement_modes: ["bsv_teranode"],
|
|
16
|
+
submission_modes: ["signed_submit", "operator_replay"],
|
|
17
|
+
finality_stages: ["accepted", "observed", "settled"],
|
|
18
|
+
settlement_artifacts: ["txid", "settlement_ref", "operator_observation"],
|
|
19
|
+
continuity_refs: [
|
|
20
|
+
"/v1/phases/phase-3/native-continuity/summary",
|
|
21
|
+
"/v1/phases/phase-3/metanet/summary",
|
|
22
|
+
"/v1/phases/phase-3/brc/summary"
|
|
23
|
+
],
|
|
24
|
+
operator_surfaces: [
|
|
25
|
+
"/v1/integrations/settlement-modes",
|
|
26
|
+
"/v1/release-center/summary",
|
|
27
|
+
"/v1/publish-plan/summary"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
completion_shape: {
|
|
31
|
+
completion_checks: [
|
|
32
|
+
"the BSV plus Teranode runtime lane is public and inspectable",
|
|
33
|
+
"native settlement mode stays attached to the runtime lane",
|
|
34
|
+
"operator surfaces remain available while deeper native splits are still future work",
|
|
35
|
+
"Phase 3 begins from explicit native runtime legibility rather than hidden native assumptions"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
first_path: {
|
|
39
|
+
purpose: "show the first public native runtime lane for BSV plus Teranode settlement-aware machine commerce",
|
|
40
|
+
first_http_sequence: [
|
|
41
|
+
"/v1/phases/phase-3/summary",
|
|
42
|
+
"/v1/integrations/settlement-modes",
|
|
43
|
+
"/v1/release-center/summary"
|
|
44
|
+
],
|
|
45
|
+
first_cli_sequence: [
|
|
46
|
+
"xytara-release --phase-3-bsv-teranode-runtime --summary",
|
|
47
|
+
"xytara-release --phase-3 --summary"
|
|
48
|
+
],
|
|
49
|
+
expected_signals: [
|
|
50
|
+
"BSV and Teranode are visible as the first concrete native runtime lane",
|
|
51
|
+
"native settlement posture is inspectable from a stable public route",
|
|
52
|
+
"Phase 3 starts from native runtime and settlement clarity"
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function summarizePhase3BsvTeranodeRuntimePack() {
|
|
59
|
+
const pack = buildPhase3BsvTeranodeRuntimePack();
|
|
60
|
+
return {
|
|
61
|
+
ok: true,
|
|
62
|
+
product: pack.product,
|
|
63
|
+
category: pack.category,
|
|
64
|
+
phase_ref: pack.phase_ref,
|
|
65
|
+
ecosystem_count: pack.ecosystem_refs.length,
|
|
66
|
+
settlement_mode_count: pack.settlement_shape.settlement_modes.length,
|
|
67
|
+
submission_mode_count: pack.settlement_shape.submission_modes.length,
|
|
68
|
+
finality_stage_count: pack.settlement_shape.finality_stages.length,
|
|
69
|
+
settlement_artifact_count: pack.settlement_shape.settlement_artifacts.length,
|
|
70
|
+
continuity_ref_count: pack.settlement_shape.continuity_refs.length,
|
|
71
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
72
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
73
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
74
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
75
|
+
operator_surface_count: pack.settlement_shape.operator_surfaces.length,
|
|
76
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
module.exports = {
|
|
81
|
+
buildPhase3BsvTeranodeRuntimePack,
|
|
82
|
+
summarizePhase3BsvTeranodeRuntimePack
|
|
83
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3CloseoutPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-closeout-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
posture: "closeout_plan",
|
|
12
|
+
closeout: {
|
|
13
|
+
current_decision: "ready_for_phase_4",
|
|
14
|
+
blocking_actions: [],
|
|
15
|
+
action_sequence: [
|
|
16
|
+
"review phase-3 completion summary",
|
|
17
|
+
"review phase-3 freeze-review summary",
|
|
18
|
+
"flip ready_for_next_phase deliberately"
|
|
19
|
+
],
|
|
20
|
+
completion_signals: [
|
|
21
|
+
"gate review has been recorded",
|
|
22
|
+
"phase-3 gate summary shows zero unsatisfied gate conditions"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
sources: {
|
|
26
|
+
completion_summary: "/v1/phases/phase-3/completion/summary",
|
|
27
|
+
freeze_review_summary: "/v1/phases/phase-3/freeze-review/summary",
|
|
28
|
+
gate_summary: "/v1/phases/phase-3/gate/summary"
|
|
29
|
+
},
|
|
30
|
+
first_path: {
|
|
31
|
+
purpose: "show the exact remaining actions needed to close Phase 3 cleanly",
|
|
32
|
+
first_http_sequence: [
|
|
33
|
+
"/v1/phases/phase-3/gate/summary",
|
|
34
|
+
"/v1/phases/phase-3/closeout/summary",
|
|
35
|
+
"/v1/release-center/summary"
|
|
36
|
+
],
|
|
37
|
+
first_cli_sequence: [
|
|
38
|
+
"xytara-release --phase-3-closeout --summary",
|
|
39
|
+
"xytara-release --phase-3-gate --summary"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function summarizePhase3CloseoutPack() {
|
|
46
|
+
const pack = buildPhase3CloseoutPack();
|
|
47
|
+
return {
|
|
48
|
+
ok: true,
|
|
49
|
+
product: pack.product,
|
|
50
|
+
category: pack.category,
|
|
51
|
+
phase_ref: pack.phase_ref,
|
|
52
|
+
blocking_action_count: pack.closeout.blocking_actions.length,
|
|
53
|
+
action_step_count: pack.closeout.action_sequence.length,
|
|
54
|
+
completion_signal_count: pack.closeout.completion_signals.length,
|
|
55
|
+
current_decision: pack.closeout.current_decision
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
module.exports = {
|
|
60
|
+
buildPhase3CloseoutPack,
|
|
61
|
+
summarizePhase3CloseoutPack
|
|
62
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3CompletionPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-completion-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
posture: "completion_review",
|
|
12
|
+
coverage: {
|
|
13
|
+
ecosystem_refs: ["bsv", "teranode", "metanet", "brc"],
|
|
14
|
+
lane_refs: [
|
|
15
|
+
"/v1/phases/phase-3/bsv-teranode/summary",
|
|
16
|
+
"/v1/phases/phase-3/metanet/summary",
|
|
17
|
+
"/v1/phases/phase-3/brc/summary"
|
|
18
|
+
],
|
|
19
|
+
settlement_modes: ["bsv_teranode"],
|
|
20
|
+
identity_layers: ["metanet", "brc"],
|
|
21
|
+
submission_modes: ["signed_submit", "operator_replay"],
|
|
22
|
+
finality_stages: ["accepted", "observed", "settled"],
|
|
23
|
+
graph_modes: ["node_linkage", "path_carry", "subject_continuity"],
|
|
24
|
+
registry_modes: ["record_linkage", "attestation_lookup", "subject_resolution"],
|
|
25
|
+
operator_surfaces: [
|
|
26
|
+
"/v1/integrations/settlement-modes",
|
|
27
|
+
"/v1/release-center/summary",
|
|
28
|
+
"/v1/publish-plan/summary"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
completion: {
|
|
32
|
+
checks: [
|
|
33
|
+
"broad Phase 3 native BSV pack is public and inspectable",
|
|
34
|
+
"all current Phase 3 runtime lanes are public and inspectable",
|
|
35
|
+
"native settlement and identity-layer coverage are visible at phase level",
|
|
36
|
+
"operator surfaces remain attached to the native rail family",
|
|
37
|
+
"release-center summary reflects Phase 3 breadth and lane coverage",
|
|
38
|
+
"Phase 3 closure criteria are explicit before opening Phase 4"
|
|
39
|
+
],
|
|
40
|
+
readiness_criteria: [
|
|
41
|
+
{ ref: "criterion.phase_surface_public", label: "Phase 3 broad summary is live and inspectable", satisfied: true },
|
|
42
|
+
{ ref: "criterion.runtime_lane_coverage", label: "All current native runtime lanes are live and inspectable", satisfied: true },
|
|
43
|
+
{ ref: "criterion.identity_coverage_visible", label: "Native identity-layer coverage is visible at phase level", satisfied: true },
|
|
44
|
+
{ ref: "criterion.operator_surfaces_attached", label: "Native operator surfaces remain attached to the rail family", satisfied: true },
|
|
45
|
+
{ ref: "criterion.freeze_shape_confirmed", label: "The final Phase 3 lane shape is explicitly frozen", satisfied: true },
|
|
46
|
+
{ ref: "criterion.next_phase_gate_reviewed", label: "A final freeze review has been recorded before opening Phase 4", satisfied: true }
|
|
47
|
+
],
|
|
48
|
+
ready_for_next_phase: true,
|
|
49
|
+
remaining_focus: []
|
|
50
|
+
},
|
|
51
|
+
first_path: {
|
|
52
|
+
purpose: "review whether Phase 3 is complete as a native machine-commerce program slice rather than just enumerated",
|
|
53
|
+
first_http_sequence: [
|
|
54
|
+
"/v1/phases/phase-3/summary",
|
|
55
|
+
"/v1/phases/phase-3/completion/summary",
|
|
56
|
+
"/v1/release-center/summary"
|
|
57
|
+
],
|
|
58
|
+
first_cli_sequence: [
|
|
59
|
+
"xytara-release --phase-3-completion --summary",
|
|
60
|
+
"xytara-release --phase-3 --summary"
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function summarizePhase3CompletionPack() {
|
|
67
|
+
const pack = buildPhase3CompletionPack();
|
|
68
|
+
return {
|
|
69
|
+
ok: true,
|
|
70
|
+
product: pack.product,
|
|
71
|
+
category: pack.category,
|
|
72
|
+
phase_ref: pack.phase_ref,
|
|
73
|
+
ecosystem_count: pack.coverage.ecosystem_refs.length,
|
|
74
|
+
lane_count: pack.coverage.lane_refs.length,
|
|
75
|
+
settlement_mode_count: pack.coverage.settlement_modes.length,
|
|
76
|
+
identity_layer_count: pack.coverage.identity_layers.length,
|
|
77
|
+
submission_mode_count: pack.coverage.submission_modes.length,
|
|
78
|
+
finality_stage_count: pack.coverage.finality_stages.length,
|
|
79
|
+
graph_mode_count: pack.coverage.graph_modes.length,
|
|
80
|
+
registry_mode_count: pack.coverage.registry_modes.length,
|
|
81
|
+
operator_surface_count: pack.coverage.operator_surfaces.length,
|
|
82
|
+
completion_check_count: pack.completion.checks.length,
|
|
83
|
+
readiness_criteria_count: pack.completion.readiness_criteria.length,
|
|
84
|
+
satisfied_criteria_count: pack.completion.readiness_criteria.filter((criterion) => criterion.satisfied === true).length,
|
|
85
|
+
unsatisfied_criteria_count: pack.completion.readiness_criteria.filter((criterion) => criterion.satisfied !== true).length,
|
|
86
|
+
remaining_focus_count: pack.completion.remaining_focus.length,
|
|
87
|
+
ready_for_next_phase: pack.completion.ready_for_next_phase
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
module.exports = {
|
|
92
|
+
buildPhase3CompletionPack,
|
|
93
|
+
summarizePhase3CompletionPack
|
|
94
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3DecisionRecordPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-decision-record-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
posture: "decision_record",
|
|
12
|
+
records: {
|
|
13
|
+
freeze_decision: {
|
|
14
|
+
status: "recorded",
|
|
15
|
+
description: "record the final native lane shape as the frozen Phase 3 baseline"
|
|
16
|
+
},
|
|
17
|
+
gate_review: {
|
|
18
|
+
status: "recorded",
|
|
19
|
+
description: "record the final review that authorizes the move to Phase 4"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
record_steps: [
|
|
23
|
+
"confirm the current native lane family is the final Phase 3 shape",
|
|
24
|
+
"record the gate review outcome",
|
|
25
|
+
"recheck phase-3 gate summary for zero unsatisfied conditions"
|
|
26
|
+
],
|
|
27
|
+
outputs: [
|
|
28
|
+
"gate review status moves out of pending_record",
|
|
29
|
+
"phase-3 gate can be flipped deliberately"
|
|
30
|
+
],
|
|
31
|
+
first_path: {
|
|
32
|
+
purpose: "show the two unresolved records that still prevent the Phase 3 gate from flipping",
|
|
33
|
+
first_http_sequence: [
|
|
34
|
+
"/v1/phases/phase-3/closeout/summary",
|
|
35
|
+
"/v1/phases/phase-3/decision-record/summary",
|
|
36
|
+
"/v1/phases/phase-3/gate/summary"
|
|
37
|
+
],
|
|
38
|
+
first_cli_sequence: [
|
|
39
|
+
"xytara-release --phase-3-decision-record --summary",
|
|
40
|
+
"xytara-release --phase-3-closeout --summary"
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function summarizePhase3DecisionRecordPack() {
|
|
47
|
+
const pack = buildPhase3DecisionRecordPack();
|
|
48
|
+
return {
|
|
49
|
+
ok: true,
|
|
50
|
+
product: pack.product,
|
|
51
|
+
category: pack.category,
|
|
52
|
+
phase_ref: pack.phase_ref,
|
|
53
|
+
pending_record_count: Object.values(pack.records).filter((record) => record.status === "pending_record").length,
|
|
54
|
+
record_step_count: pack.record_steps.length,
|
|
55
|
+
output_count: pack.outputs.length,
|
|
56
|
+
freeze_decision_status: pack.records.freeze_decision.status,
|
|
57
|
+
gate_review_status: pack.records.gate_review.status
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
module.exports = {
|
|
62
|
+
buildPhase3DecisionRecordPack,
|
|
63
|
+
summarizePhase3DecisionRecordPack
|
|
64
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3DecisionResolutionPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-decision-resolution-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
posture: "decision_resolution",
|
|
12
|
+
transitions: [
|
|
13
|
+
{
|
|
14
|
+
record_ref: "freeze_decision",
|
|
15
|
+
from: "pending_record",
|
|
16
|
+
to: "recorded",
|
|
17
|
+
resolution_action: "record the final native lane freeze decision"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
record_ref: "gate_review",
|
|
21
|
+
from: "pending_record",
|
|
22
|
+
to: "recorded",
|
|
23
|
+
resolution_action: "record the final gate review authorizing Phase 4"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
resolution_sequence: [
|
|
27
|
+
"confirm the final Phase 3 native lane shape",
|
|
28
|
+
"change freeze_decision from pending_record to recorded",
|
|
29
|
+
"change gate_review from pending_record to recorded",
|
|
30
|
+
"recheck the phase-3 gate for zero unsatisfied conditions",
|
|
31
|
+
"flip ready_for_next_phase deliberately"
|
|
32
|
+
],
|
|
33
|
+
completion_result: {
|
|
34
|
+
target_gate_decision: "ready_for_phase_4",
|
|
35
|
+
target_ready_for_next_phase: true
|
|
36
|
+
},
|
|
37
|
+
first_path: {
|
|
38
|
+
purpose: "show the exact status transitions still needed before the phase gate can flip",
|
|
39
|
+
first_http_sequence: [
|
|
40
|
+
"/v1/phases/phase-3/decision-record/summary",
|
|
41
|
+
"/v1/phases/phase-3/decision-resolution/summary",
|
|
42
|
+
"/v1/phases/phase-3/gate/summary"
|
|
43
|
+
],
|
|
44
|
+
first_cli_sequence: [
|
|
45
|
+
"xytara-release --phase-3-decision-resolution --summary",
|
|
46
|
+
"xytara-release --phase-3-decision-record --summary"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function summarizePhase3DecisionResolutionPack() {
|
|
53
|
+
const pack = buildPhase3DecisionResolutionPack();
|
|
54
|
+
return {
|
|
55
|
+
ok: true,
|
|
56
|
+
product: pack.product,
|
|
57
|
+
category: pack.category,
|
|
58
|
+
phase_ref: pack.phase_ref,
|
|
59
|
+
transition_count: pack.transitions.length,
|
|
60
|
+
resolution_step_count: pack.resolution_sequence.length,
|
|
61
|
+
target_gate_decision: pack.completion_result.target_gate_decision,
|
|
62
|
+
target_ready_for_next_phase: pack.completion_result.target_ready_for_next_phase
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
module.exports = {
|
|
67
|
+
buildPhase3DecisionResolutionPack,
|
|
68
|
+
summarizePhase3DecisionResolutionPack
|
|
69
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3FreezeBaselinePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-freeze-baseline-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
posture: "frozen_baseline",
|
|
12
|
+
baseline: {
|
|
13
|
+
lane_refs: [
|
|
14
|
+
"/v1/phases/phase-3/bsv-teranode/summary",
|
|
15
|
+
"/v1/phases/phase-3/metanet/summary",
|
|
16
|
+
"/v1/phases/phase-3/brc/summary"
|
|
17
|
+
],
|
|
18
|
+
settlement_modes: ["bsv_teranode"],
|
|
19
|
+
identity_layers: ["metanet", "brc"],
|
|
20
|
+
baseline_status: "recorded",
|
|
21
|
+
frozen_outputs: [
|
|
22
|
+
"current native lane family is the recorded Phase 3 baseline",
|
|
23
|
+
"native family can now be judged against a stable shape rather than an open expansion set",
|
|
24
|
+
"only the final gate review remains before Phase 4"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
first_path: {
|
|
28
|
+
purpose: "show that the Phase 3 native lane family is now treated as a frozen baseline",
|
|
29
|
+
first_http_sequence: [
|
|
30
|
+
"/v1/phases/phase-3/summary",
|
|
31
|
+
"/v1/phases/phase-3/freeze-baseline/summary",
|
|
32
|
+
"/v1/phases/phase-3/gate/summary"
|
|
33
|
+
],
|
|
34
|
+
first_cli_sequence: [
|
|
35
|
+
"xytara-release --phase-3-freeze-baseline --summary",
|
|
36
|
+
"xytara-release --phase-3-summary"
|
|
37
|
+
],
|
|
38
|
+
expected_signals: [
|
|
39
|
+
"the native lane family is now explicitly frozen",
|
|
40
|
+
"lane freeze is no longer part of the remaining Phase 3 uncertainty",
|
|
41
|
+
"the final open work is narrowed to gate review rather than shape definition"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function summarizePhase3FreezeBaselinePack() {
|
|
48
|
+
const pack = buildPhase3FreezeBaselinePack();
|
|
49
|
+
return {
|
|
50
|
+
ok: true,
|
|
51
|
+
product: pack.product,
|
|
52
|
+
category: pack.category,
|
|
53
|
+
phase_ref: pack.phase_ref,
|
|
54
|
+
lane_count: pack.baseline.lane_refs.length,
|
|
55
|
+
settlement_mode_count: pack.baseline.settlement_modes.length,
|
|
56
|
+
identity_layer_count: pack.baseline.identity_layers.length,
|
|
57
|
+
baseline_status: pack.baseline.baseline_status,
|
|
58
|
+
frozen_output_count: pack.baseline.frozen_outputs.length,
|
|
59
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
60
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
module.exports = {
|
|
65
|
+
buildPhase3FreezeBaselinePack,
|
|
66
|
+
summarizePhase3FreezeBaselinePack
|
|
67
|
+
};
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3FreezeReviewPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-freeze-review-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
posture: "freeze_review",
|
|
12
|
+
current_shape: {
|
|
13
|
+
lane_refs: [
|
|
14
|
+
"/v1/phases/phase-3/bsv-teranode/summary",
|
|
15
|
+
"/v1/phases/phase-3/metanet/summary",
|
|
16
|
+
"/v1/phases/phase-3/brc/summary"
|
|
17
|
+
],
|
|
18
|
+
settlement_modes: ["bsv_teranode"],
|
|
19
|
+
identity_layers: ["metanet", "brc"]
|
|
20
|
+
},
|
|
21
|
+
freeze_review: {
|
|
22
|
+
decision_posture: "gate_review_recorded",
|
|
23
|
+
review_questions: [
|
|
24
|
+
"Is the current native lane split the exact shape we want to preserve for Phase 3?",
|
|
25
|
+
"Do settlement and identity lanes communicate the native family clearly without overlap confusion?",
|
|
26
|
+
"Is the current operator and native coverage sufficient before opening the next phase?",
|
|
27
|
+
"Would adding more native sub-lanes materially improve Phase 3, or just create sprawl?"
|
|
28
|
+
],
|
|
29
|
+
resolution_criteria: [
|
|
30
|
+
{ ref: "criterion.freeze_review_surface_public", label: "Freeze-review surface is public and inspectable", satisfied: true },
|
|
31
|
+
{ ref: "criterion.blockers_explicit", label: "Current blockers are explicit and bounded", satisfied: true },
|
|
32
|
+
{ ref: "criterion.freeze_decision_recorded", label: "Final native lane freeze has been explicitly recorded", satisfied: true },
|
|
33
|
+
{ ref: "criterion.gate_review_recorded", label: "Next-phase gate review has been explicitly recorded", satisfied: true }
|
|
34
|
+
],
|
|
35
|
+
blockers: [],
|
|
36
|
+
freeze_outputs: [
|
|
37
|
+
"freeze decision recorded",
|
|
38
|
+
"ready_for_next_phase flipped deliberately",
|
|
39
|
+
"Phase 3 native shape treated as stable baseline going forward"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
first_path: {
|
|
43
|
+
purpose: "review the last open questions before freezing the native Phase 3 lane family",
|
|
44
|
+
first_http_sequence: [
|
|
45
|
+
"/v1/phases/phase-3/completion/summary",
|
|
46
|
+
"/v1/phases/phase-3/freeze-review/summary",
|
|
47
|
+
"/v1/release-center/summary"
|
|
48
|
+
],
|
|
49
|
+
first_cli_sequence: [
|
|
50
|
+
"xytara-release --phase-3-freeze-review --summary",
|
|
51
|
+
"xytara-release --phase-3-completion --summary"
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function summarizePhase3FreezeReviewPack() {
|
|
58
|
+
const pack = buildPhase3FreezeReviewPack();
|
|
59
|
+
return {
|
|
60
|
+
ok: true,
|
|
61
|
+
product: pack.product,
|
|
62
|
+
category: pack.category,
|
|
63
|
+
phase_ref: pack.phase_ref,
|
|
64
|
+
lane_count: pack.current_shape.lane_refs.length,
|
|
65
|
+
settlement_mode_count: pack.current_shape.settlement_modes.length,
|
|
66
|
+
identity_layer_count: pack.current_shape.identity_layers.length,
|
|
67
|
+
review_question_count: pack.freeze_review.review_questions.length,
|
|
68
|
+
resolution_criteria_count: pack.freeze_review.resolution_criteria.length,
|
|
69
|
+
satisfied_resolution_count: pack.freeze_review.resolution_criteria.filter((criterion) => criterion.satisfied === true).length,
|
|
70
|
+
unsatisfied_resolution_count: pack.freeze_review.resolution_criteria.filter((criterion) => criterion.satisfied !== true).length,
|
|
71
|
+
blocker_count: pack.freeze_review.blockers.length,
|
|
72
|
+
freeze_output_count: pack.freeze_review.freeze_outputs.length,
|
|
73
|
+
decision_posture: pack.freeze_review.decision_posture
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
module.exports = {
|
|
78
|
+
buildPhase3FreezeReviewPack,
|
|
79
|
+
summarizePhase3FreezeReviewPack
|
|
80
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
const { summarizePhase3CompletionPack } = require("./phase_3_completion_pack");
|
|
5
|
+
const { summarizePhase3FreezeReviewPack } = require("./phase_3_freeze_review_pack");
|
|
6
|
+
|
|
7
|
+
function buildPhase3GatePack() {
|
|
8
|
+
const completion = summarizePhase3CompletionPack();
|
|
9
|
+
const freezeReview = summarizePhase3FreezeReviewPack();
|
|
10
|
+
const unsatisfiedGateCount =
|
|
11
|
+
completion.unsatisfied_criteria_count +
|
|
12
|
+
freezeReview.unsatisfied_resolution_count;
|
|
13
|
+
|
|
14
|
+
return {
|
|
15
|
+
ok: true,
|
|
16
|
+
product: packageJson.name,
|
|
17
|
+
category: "machine-commerce-phase-3-gate-pack",
|
|
18
|
+
phase_ref: "phase_3",
|
|
19
|
+
posture: "phase_gate",
|
|
20
|
+
gate: {
|
|
21
|
+
decision: unsatisfiedGateCount === 0 ? "ready_for_phase_4" : "hold_phase_3",
|
|
22
|
+
ready_for_next_phase: unsatisfiedGateCount === 0,
|
|
23
|
+
satisfied_gate_count:
|
|
24
|
+
completion.satisfied_criteria_count +
|
|
25
|
+
freezeReview.satisfied_resolution_count,
|
|
26
|
+
unsatisfied_gate_count: unsatisfiedGateCount,
|
|
27
|
+
blockers: unsatisfiedGateCount === 0 ? [] : [
|
|
28
|
+
"next-phase gate review has not been explicitly recorded"
|
|
29
|
+
],
|
|
30
|
+
advance_when: [
|
|
31
|
+
"freeze decision is explicitly recorded",
|
|
32
|
+
"gate review is explicitly recorded",
|
|
33
|
+
"completion and freeze-review surfaces both show no unsatisfied gate criteria"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
sources: {
|
|
37
|
+
completion_summary: "/v1/phases/phase-3/completion/summary",
|
|
38
|
+
freeze_review_summary: "/v1/phases/phase-3/freeze-review/summary",
|
|
39
|
+
release_center_summary: "/v1/release-center/summary"
|
|
40
|
+
},
|
|
41
|
+
first_path: {
|
|
42
|
+
purpose: "decide whether Phase 3 can be deliberately closed and Phase 4 can open",
|
|
43
|
+
first_http_sequence: [
|
|
44
|
+
"/v1/phases/phase-3/completion/summary",
|
|
45
|
+
"/v1/phases/phase-3/freeze-review/summary",
|
|
46
|
+
"/v1/phases/phase-3/gate/summary"
|
|
47
|
+
],
|
|
48
|
+
first_cli_sequence: [
|
|
49
|
+
"xytara-release --phase-3-gate --summary",
|
|
50
|
+
"xytara-release --phase-3-completion --summary",
|
|
51
|
+
"xytara-release --phase-3-freeze-review --summary"
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function summarizePhase3GatePack() {
|
|
58
|
+
const pack = buildPhase3GatePack();
|
|
59
|
+
return {
|
|
60
|
+
ok: true,
|
|
61
|
+
product: pack.product,
|
|
62
|
+
category: pack.category,
|
|
63
|
+
phase_ref: pack.phase_ref,
|
|
64
|
+
satisfied_gate_count: pack.gate.satisfied_gate_count,
|
|
65
|
+
unsatisfied_gate_count: pack.gate.unsatisfied_gate_count,
|
|
66
|
+
blocker_count: pack.gate.blockers.length,
|
|
67
|
+
advance_when_count: pack.gate.advance_when.length,
|
|
68
|
+
decision: pack.gate.decision,
|
|
69
|
+
ready_for_next_phase: pack.gate.ready_for_next_phase
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
module.exports = {
|
|
74
|
+
buildPhase3GatePack,
|
|
75
|
+
summarizePhase3GatePack
|
|
76
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3MetanetRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-metanet-runtime-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
ecosystem_refs: ["metanet"],
|
|
12
|
+
posture: "runtime_path",
|
|
13
|
+
identity_shape: {
|
|
14
|
+
rail_family: "bsv_native_identity",
|
|
15
|
+
identity_layers: ["metanet"],
|
|
16
|
+
graph_modes: ["node_linkage", "path_carry", "subject_continuity"],
|
|
17
|
+
continuity_artifacts: ["subject_ref", "metanet_path", "handoff_ref"],
|
|
18
|
+
continuity_refs: [
|
|
19
|
+
"/v1/phases/phase-3/native-continuity/summary",
|
|
20
|
+
"/v1/phases/phase-3/bsv-teranode/summary",
|
|
21
|
+
"/v1/phases/phase-3/brc/summary"
|
|
22
|
+
],
|
|
23
|
+
operator_surfaces: [
|
|
24
|
+
"/v1/release-center/summary",
|
|
25
|
+
"/v1/publish-plan/summary",
|
|
26
|
+
"/v1/phases/phase-3/summary"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
completion_shape: {
|
|
30
|
+
completion_checks: [
|
|
31
|
+
"the Metanet runtime lane is public and inspectable",
|
|
32
|
+
"native identity-layer posture stays attached to the runtime lane",
|
|
33
|
+
"operator surfaces remain available for native identity review",
|
|
34
|
+
"Phase 3 shows native identity expansion beyond settlement-only work"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
first_path: {
|
|
38
|
+
purpose: "show the native Metanet runtime lane for BSV-linked identity and continuity",
|
|
39
|
+
first_http_sequence: [
|
|
40
|
+
"/v1/phases/phase-3/summary",
|
|
41
|
+
"/v1/release-center/summary",
|
|
42
|
+
"/v1/publish-plan/summary"
|
|
43
|
+
],
|
|
44
|
+
first_cli_sequence: [
|
|
45
|
+
"xytara-release --phase-3-metanet-runtime --summary",
|
|
46
|
+
"xytara-release --phase-3 --summary"
|
|
47
|
+
],
|
|
48
|
+
expected_signals: [
|
|
49
|
+
"Metanet is visible as a first-class native runtime lane",
|
|
50
|
+
"native identity continuity is inspectable from a stable route",
|
|
51
|
+
"Phase 3 broadens beyond settlement into native graph-linked posture"
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function summarizePhase3MetanetRuntimePack() {
|
|
58
|
+
const pack = buildPhase3MetanetRuntimePack();
|
|
59
|
+
return {
|
|
60
|
+
ok: true,
|
|
61
|
+
product: pack.product,
|
|
62
|
+
category: pack.category,
|
|
63
|
+
phase_ref: pack.phase_ref,
|
|
64
|
+
ecosystem_count: pack.ecosystem_refs.length,
|
|
65
|
+
identity_layer_count: pack.identity_shape.identity_layers.length,
|
|
66
|
+
graph_mode_count: pack.identity_shape.graph_modes.length,
|
|
67
|
+
continuity_artifact_count: pack.identity_shape.continuity_artifacts.length,
|
|
68
|
+
continuity_ref_count: pack.identity_shape.continuity_refs.length,
|
|
69
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
70
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
71
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
72
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
73
|
+
operator_surface_count: pack.identity_shape.operator_surfaces.length,
|
|
74
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
module.exports = {
|
|
79
|
+
buildPhase3MetanetRuntimePack,
|
|
80
|
+
summarizePhase3MetanetRuntimePack
|
|
81
|
+
};
|