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,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase7KafkaRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-7-kafka-runtime-pack",
|
|
10
|
+
phase_ref: "phase_7",
|
|
11
|
+
ecosystem_refs: ["kafka"],
|
|
12
|
+
posture: "runtime_path",
|
|
13
|
+
integration_shape: {
|
|
14
|
+
event_modes: ["topic_stream_ingest", "consumer_group_handoff", "offset_checkpoint_carry"],
|
|
15
|
+
stream_modes: ["partitioned_topic_flow", "consumer_group_flow", "offset_checkpoint_flow"],
|
|
16
|
+
event_artifacts: ["topic_ref", "consumer_ref", "offset_ref"],
|
|
17
|
+
operator_surfaces: [
|
|
18
|
+
"/v1/release-center/summary",
|
|
19
|
+
"/v1/publish-plan/summary",
|
|
20
|
+
"/v1/phases/phase-7/summary"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
completion_shape: {
|
|
24
|
+
completion_checks: [
|
|
25
|
+
"the Kafka runtime lane is public and inspectable",
|
|
26
|
+
"event ingestion posture stays attached to the lane",
|
|
27
|
+
"operator surfaces remain available for system-integration review",
|
|
28
|
+
"Phase 7 begins from explicit enterprise event legibility"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
first_path: {
|
|
32
|
+
purpose: "show the first public system-integration lane for enterprise event ingress and handoff carry",
|
|
33
|
+
first_http_sequence: [
|
|
34
|
+
"/v1/phases/phase-7/summary",
|
|
35
|
+
"/v1/release-center/summary",
|
|
36
|
+
"/v1/publish-plan/summary"
|
|
37
|
+
],
|
|
38
|
+
first_cli_sequence: [
|
|
39
|
+
"xytara-release --phase-7-kafka-runtime --summary",
|
|
40
|
+
"xytara-release --phase-7 --summary"
|
|
41
|
+
],
|
|
42
|
+
expected_signals: [
|
|
43
|
+
"Kafka is visible as the first concrete Phase 7 system-integration lane",
|
|
44
|
+
"event ingestion posture is inspectable from a stable route",
|
|
45
|
+
"Phase 7 starts from enterprise integration clarity rather than generic adapter naming"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function summarizePhase7KafkaRuntimePack() {
|
|
52
|
+
const pack = buildPhase7KafkaRuntimePack();
|
|
53
|
+
return {
|
|
54
|
+
ok: true,
|
|
55
|
+
product: pack.product,
|
|
56
|
+
category: pack.category,
|
|
57
|
+
phase_ref: pack.phase_ref,
|
|
58
|
+
ecosystem_count: pack.ecosystem_refs.length,
|
|
59
|
+
event_mode_count: pack.integration_shape.event_modes.length,
|
|
60
|
+
stream_mode_count: pack.integration_shape.stream_modes.length,
|
|
61
|
+
event_artifact_count: pack.integration_shape.event_artifacts.length,
|
|
62
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
63
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
64
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
65
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
66
|
+
operator_surface_count: pack.integration_shape.operator_surfaces.length,
|
|
67
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
module.exports = {
|
|
72
|
+
buildPhase7KafkaRuntimePack,
|
|
73
|
+
summarizePhase7KafkaRuntimePack
|
|
74
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase7MqttRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-7-mqtt-runtime-pack",
|
|
10
|
+
phase_ref: "phase_7",
|
|
11
|
+
ecosystem_refs: ["mqtt"],
|
|
12
|
+
posture: "runtime_path",
|
|
13
|
+
integration_shape: {
|
|
14
|
+
event_modes: ["topic_publish_ingest", "device_message_handoff", "qos_state_carry"],
|
|
15
|
+
qos_modes: ["device_session_flow", "qos_delivery_flow", "retained_state_flow"],
|
|
16
|
+
event_artifacts: ["topic_ref", "message_ref", "qos_ref"],
|
|
17
|
+
operator_surfaces: [
|
|
18
|
+
"/v1/release-center/summary",
|
|
19
|
+
"/v1/publish-plan/summary",
|
|
20
|
+
"/v1/phases/phase-7/summary"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
completion_shape: {
|
|
24
|
+
completion_checks: [
|
|
25
|
+
"the MQTT runtime lane is public and inspectable",
|
|
26
|
+
"device and message posture stays attached to the lane",
|
|
27
|
+
"operator surfaces remain available for system-integration review",
|
|
28
|
+
"Phase 7 includes device-oriented event ingress explicitly"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
first_path: {
|
|
32
|
+
purpose: "show the MQTT event path for device-linked ingress and qos-aware carry",
|
|
33
|
+
first_http_sequence: [
|
|
34
|
+
"/v1/phases/phase-7/summary",
|
|
35
|
+
"/v1/release-center/summary",
|
|
36
|
+
"/v1/publish-plan/summary"
|
|
37
|
+
],
|
|
38
|
+
first_cli_sequence: [
|
|
39
|
+
"xytara-release --phase-7-mqtt-runtime --summary",
|
|
40
|
+
"xytara-release --phase-7 --summary"
|
|
41
|
+
],
|
|
42
|
+
expected_signals: [
|
|
43
|
+
"MQTT is visible as a concrete Phase 7 device-event lane",
|
|
44
|
+
"message and qos posture are inspectable from a stable route",
|
|
45
|
+
"Phase 7 is broadening toward real system ingress diversity"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function summarizePhase7MqttRuntimePack() {
|
|
52
|
+
const pack = buildPhase7MqttRuntimePack();
|
|
53
|
+
return {
|
|
54
|
+
ok: true,
|
|
55
|
+
product: pack.product,
|
|
56
|
+
category: pack.category,
|
|
57
|
+
phase_ref: pack.phase_ref,
|
|
58
|
+
ecosystem_count: pack.ecosystem_refs.length,
|
|
59
|
+
event_mode_count: pack.integration_shape.event_modes.length,
|
|
60
|
+
qos_mode_count: pack.integration_shape.qos_modes.length,
|
|
61
|
+
event_artifact_count: pack.integration_shape.event_artifacts.length,
|
|
62
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
63
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
64
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
65
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
66
|
+
operator_surface_count: pack.integration_shape.operator_surfaces.length,
|
|
67
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
module.exports = {
|
|
72
|
+
buildPhase7MqttRuntimePack,
|
|
73
|
+
summarizePhase7MqttRuntimePack
|
|
74
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase7NatsRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-7-nats-runtime-pack",
|
|
10
|
+
phase_ref: "phase_7",
|
|
11
|
+
ecosystem_refs: ["nats"],
|
|
12
|
+
posture: "runtime_path",
|
|
13
|
+
integration_shape: {
|
|
14
|
+
event_modes: ["subject_stream_ingest", "consumer_handoff", "delivery_ack_carry"],
|
|
15
|
+
subject_modes: ["subject_mesh_flow", "queue_group_flow", "ack_commit_flow"],
|
|
16
|
+
event_artifacts: ["subject_ref", "consumer_ref", "ack_ref"],
|
|
17
|
+
operator_surfaces: [
|
|
18
|
+
"/v1/release-center/summary",
|
|
19
|
+
"/v1/publish-plan/summary",
|
|
20
|
+
"/v1/phases/phase-7/summary"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
completion_shape: {
|
|
24
|
+
completion_checks: [
|
|
25
|
+
"the NATS runtime lane is public and inspectable",
|
|
26
|
+
"event ingestion posture stays attached to the lane",
|
|
27
|
+
"operator surfaces remain available for system-integration review",
|
|
28
|
+
"Phase 7 broadens into enterprise messaging rather than a single bus"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
first_path: {
|
|
32
|
+
purpose: "show the NATS event path for subject-oriented ingress and durable handoff carry",
|
|
33
|
+
first_http_sequence: [
|
|
34
|
+
"/v1/phases/phase-7/summary",
|
|
35
|
+
"/v1/release-center/summary",
|
|
36
|
+
"/v1/publish-plan/summary"
|
|
37
|
+
],
|
|
38
|
+
first_cli_sequence: [
|
|
39
|
+
"xytara-release --phase-7-nats-runtime --summary",
|
|
40
|
+
"xytara-release --phase-7 --summary"
|
|
41
|
+
],
|
|
42
|
+
expected_signals: [
|
|
43
|
+
"NATS is visible as a concrete Phase 7 system-integration lane",
|
|
44
|
+
"subject-stream posture is inspectable from a stable route",
|
|
45
|
+
"Phase 7 broadens beyond a single event-bus shape"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function summarizePhase7NatsRuntimePack() {
|
|
52
|
+
const pack = buildPhase7NatsRuntimePack();
|
|
53
|
+
return {
|
|
54
|
+
ok: true,
|
|
55
|
+
product: pack.product,
|
|
56
|
+
category: pack.category,
|
|
57
|
+
phase_ref: pack.phase_ref,
|
|
58
|
+
ecosystem_count: pack.ecosystem_refs.length,
|
|
59
|
+
event_mode_count: pack.integration_shape.event_modes.length,
|
|
60
|
+
subject_mode_count: pack.integration_shape.subject_modes.length,
|
|
61
|
+
event_artifact_count: pack.integration_shape.event_artifacts.length,
|
|
62
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
63
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
64
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
65
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
66
|
+
operator_surface_count: pack.integration_shape.operator_surfaces.length,
|
|
67
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
module.exports = {
|
|
72
|
+
buildPhase7NatsRuntimePack,
|
|
73
|
+
summarizePhase7NatsRuntimePack
|
|
74
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase7WebhookEventBusRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-7-webhook-event-bus-runtime-pack",
|
|
10
|
+
phase_ref: "phase_7",
|
|
11
|
+
ecosystem_refs: ["webhook_event_bus"],
|
|
12
|
+
posture: "runtime_path",
|
|
13
|
+
integration_shape: {
|
|
14
|
+
event_modes: ["webhook_ingest", "signed_callback_handoff", "delivery_retry_carry"],
|
|
15
|
+
callback_modes: ["signed_callback_flow", "retry_schedule_flow", "endpoint_contract_flow"],
|
|
16
|
+
event_artifacts: ["endpoint_ref", "callback_ref", "retry_ref"],
|
|
17
|
+
operator_surfaces: [
|
|
18
|
+
"/v1/release-center/summary",
|
|
19
|
+
"/v1/publish-plan/summary",
|
|
20
|
+
"/v1/phases/phase-7/summary"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
completion_shape: {
|
|
24
|
+
completion_checks: [
|
|
25
|
+
"the webhook event-bus runtime lane is public and inspectable",
|
|
26
|
+
"callback posture stays attached to the lane",
|
|
27
|
+
"operator surfaces remain available for system-integration review",
|
|
28
|
+
"Phase 7 includes direct webhook ingress explicitly"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
first_path: {
|
|
32
|
+
purpose: "show the webhook event-bus path for callback ingress and retry-aware carry",
|
|
33
|
+
first_http_sequence: [
|
|
34
|
+
"/v1/phases/phase-7/summary",
|
|
35
|
+
"/v1/release-center/summary",
|
|
36
|
+
"/v1/publish-plan/summary"
|
|
37
|
+
],
|
|
38
|
+
first_cli_sequence: [
|
|
39
|
+
"xytara-release --phase-7-webhook-event-bus-runtime --summary",
|
|
40
|
+
"xytara-release --phase-7 --summary"
|
|
41
|
+
],
|
|
42
|
+
expected_signals: [
|
|
43
|
+
"webhook_event_bus is visible as a concrete Phase 7 ingress lane",
|
|
44
|
+
"callback and retry posture are inspectable from a stable route",
|
|
45
|
+
"Phase 7 includes direct external event delivery alongside message buses"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function summarizePhase7WebhookEventBusRuntimePack() {
|
|
52
|
+
const pack = buildPhase7WebhookEventBusRuntimePack();
|
|
53
|
+
return {
|
|
54
|
+
ok: true,
|
|
55
|
+
product: pack.product,
|
|
56
|
+
category: pack.category,
|
|
57
|
+
phase_ref: pack.phase_ref,
|
|
58
|
+
ecosystem_count: pack.ecosystem_refs.length,
|
|
59
|
+
event_mode_count: pack.integration_shape.event_modes.length,
|
|
60
|
+
callback_mode_count: pack.integration_shape.callback_modes.length,
|
|
61
|
+
event_artifact_count: pack.integration_shape.event_artifacts.length,
|
|
62
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
63
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
64
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
65
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
66
|
+
operator_surface_count: pack.integration_shape.operator_surfaces.length,
|
|
67
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
module.exports = {
|
|
72
|
+
buildPhase7WebhookEventBusRuntimePack,
|
|
73
|
+
summarizePhase7WebhookEventBusRuntimePack
|
|
74
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase8CloseoutPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-8-closeout-pack",
|
|
10
|
+
phase_ref: "phase_8",
|
|
11
|
+
posture: "closeout_plan",
|
|
12
|
+
current_decision: "ready_for_phase_9",
|
|
13
|
+
blocking_actions: [],
|
|
14
|
+
action_steps: [
|
|
15
|
+
"confirm the current proof-bridge lane family is the final Phase 8 shape",
|
|
16
|
+
"confirm the recorded freeze baseline still matches the intended final Phase 8 shape",
|
|
17
|
+
"record the gate review outcome",
|
|
18
|
+
"recheck phase-8 gate summary for zero unsatisfied conditions",
|
|
19
|
+
"advance only once phase-8 gate resolves to ready_for_phase_9"
|
|
20
|
+
],
|
|
21
|
+
completion_signals: [
|
|
22
|
+
"phase-8 completion shows no remaining focus",
|
|
23
|
+
"phase-8 decision record shows no pending records",
|
|
24
|
+
"phase-8 gate resolves to ready_for_phase_9"
|
|
25
|
+
]
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
function summarizePhase8CloseoutPack() {
|
|
30
|
+
const pack = buildPhase8CloseoutPack();
|
|
31
|
+
return {
|
|
32
|
+
ok: true,
|
|
33
|
+
product: pack.product,
|
|
34
|
+
category: pack.category,
|
|
35
|
+
phase_ref: pack.phase_ref,
|
|
36
|
+
blocking_action_count: pack.blocking_actions.length,
|
|
37
|
+
action_step_count: pack.action_steps.length,
|
|
38
|
+
completion_signal_count: pack.completion_signals.length,
|
|
39
|
+
current_decision: pack.current_decision
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
module.exports = {
|
|
44
|
+
buildPhase8CloseoutPack,
|
|
45
|
+
summarizePhase8CloseoutPack
|
|
46
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase8CompletionPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-8-completion-pack",
|
|
10
|
+
phase_ref: "phase_8",
|
|
11
|
+
posture: "completion_review",
|
|
12
|
+
coverage: {
|
|
13
|
+
ecosystem_refs: ["external_result_import", "external_receipt_import", "proof_bundle_normalization"],
|
|
14
|
+
lane_refs: [
|
|
15
|
+
"/v1/phases/phase-8/external-result-import/summary",
|
|
16
|
+
"/v1/phases/phase-8/external-receipt-import/summary",
|
|
17
|
+
"/v1/phases/phase-8/proof-bundle-normalization/summary"
|
|
18
|
+
],
|
|
19
|
+
import_modes: ["result_fact_capture", "receipt_handoff_capture", "proof_bundle_normalization"],
|
|
20
|
+
bridge_modes: ["result_ingest_bridge", "receipt_ingest_bridge", "bundle_normalization_bridge"],
|
|
21
|
+
result_modes: ["result_ingest_flow", "result_mapping_flow", "result_handoff_flow"],
|
|
22
|
+
receipt_modes: ["receipt_ingest_flow", "settlement_mapping_flow", "receipt_handoff_flow"],
|
|
23
|
+
normalization_modes: ["bundle_merge_flow", "shape_alignment_flow", "continuation_export_flow"],
|
|
24
|
+
normalization_artifacts: ["result_ref", "receipt_ref", "bundle_ref"],
|
|
25
|
+
operator_surfaces: [
|
|
26
|
+
"/v1/release-center/summary",
|
|
27
|
+
"/v1/publish-plan/summary",
|
|
28
|
+
"/v1/phases/phase-8/proof-bridge-continuity/summary"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
completion: {
|
|
32
|
+
checks: [
|
|
33
|
+
"broad Phase 8 proof-bridge pack is public and inspectable",
|
|
34
|
+
"all current Phase 8 proof-bridge lanes are public and inspectable",
|
|
35
|
+
"proof-bridge posture is visible at phase level",
|
|
36
|
+
"proof-bridge continuity is explicit across the lane family",
|
|
37
|
+
"release-center summary reflects Phase 8 breadth and lane coverage",
|
|
38
|
+
"Phase 8 closure criteria are explicit before opening Phase 9"
|
|
39
|
+
],
|
|
40
|
+
readiness_criteria: [
|
|
41
|
+
{ ref: "criterion.phase_surface_public", label: "Phase 8 broad summary is live and inspectable", satisfied: true },
|
|
42
|
+
{ ref: "criterion.bridge_lane_coverage", label: "All current proof-bridge lanes are live and inspectable", satisfied: true },
|
|
43
|
+
{ ref: "criterion.bridge_continuity_visible", label: "Proof-bridge continuity is visible at phase level", satisfied: true },
|
|
44
|
+
{ ref: "criterion.operator_surfaces_attached", label: "Operator surfaces remain attached to the proof-bridge family", satisfied: true },
|
|
45
|
+
{ ref: "criterion.freeze_shape_confirmed", label: "The final Phase 8 proof-bridge 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 9", satisfied: true }
|
|
47
|
+
],
|
|
48
|
+
ready_for_next_phase: true,
|
|
49
|
+
remaining_focus: []
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function summarizePhase8CompletionPack() {
|
|
55
|
+
const pack = buildPhase8CompletionPack();
|
|
56
|
+
return {
|
|
57
|
+
ok: true,
|
|
58
|
+
product: pack.product,
|
|
59
|
+
category: pack.category,
|
|
60
|
+
phase_ref: pack.phase_ref,
|
|
61
|
+
ecosystem_count: pack.coverage.ecosystem_refs.length,
|
|
62
|
+
lane_count: pack.coverage.lane_refs.length,
|
|
63
|
+
import_mode_count: pack.coverage.import_modes.length,
|
|
64
|
+
bridge_mode_count: pack.coverage.bridge_modes.length,
|
|
65
|
+
result_mode_count: pack.coverage.result_modes.length,
|
|
66
|
+
receipt_mode_count: pack.coverage.receipt_modes.length,
|
|
67
|
+
normalization_mode_count: pack.coverage.normalization_modes.length,
|
|
68
|
+
normalization_artifact_count: pack.coverage.normalization_artifacts.length,
|
|
69
|
+
operator_surface_count: pack.coverage.operator_surfaces.length,
|
|
70
|
+
completion_check_count: pack.completion.checks.length,
|
|
71
|
+
readiness_criteria_count: pack.completion.readiness_criteria.length,
|
|
72
|
+
satisfied_criteria_count: pack.completion.readiness_criteria.filter((criterion) => criterion.satisfied === true).length,
|
|
73
|
+
unsatisfied_criteria_count: pack.completion.readiness_criteria.filter((criterion) => criterion.satisfied !== true).length,
|
|
74
|
+
remaining_focus_count: pack.completion.remaining_focus.length,
|
|
75
|
+
ready_for_next_phase: pack.completion.ready_for_next_phase
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = {
|
|
80
|
+
buildPhase8CompletionPack,
|
|
81
|
+
summarizePhase8CompletionPack
|
|
82
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase8DecisionRecordPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-8-decision-record-pack",
|
|
10
|
+
phase_ref: "phase_8",
|
|
11
|
+
posture: "decision_record",
|
|
12
|
+
records: {
|
|
13
|
+
freeze_decision: {
|
|
14
|
+
status: "recorded",
|
|
15
|
+
description: "record the final proof-bridge lane shape as the frozen Phase 8 baseline"
|
|
16
|
+
},
|
|
17
|
+
gate_review: {
|
|
18
|
+
status: "recorded",
|
|
19
|
+
description: "record the final review that authorizes the move to Phase 9"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
record_steps: [
|
|
23
|
+
"confirm the current proof-bridge lane family matches the intended final Phase 8 shape",
|
|
24
|
+
"record the freeze decision outcome",
|
|
25
|
+
"record the gate review outcome",
|
|
26
|
+
"recheck phase-8 gate summary for zero unsatisfied conditions"
|
|
27
|
+
],
|
|
28
|
+
outputs: [
|
|
29
|
+
"freeze decision status moves out of pending_record",
|
|
30
|
+
"gate review status moves out of pending_record",
|
|
31
|
+
"phase-8 gate can be flipped deliberately"
|
|
32
|
+
]
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function summarizePhase8DecisionRecordPack() {
|
|
37
|
+
const pack = buildPhase8DecisionRecordPack();
|
|
38
|
+
return {
|
|
39
|
+
ok: true,
|
|
40
|
+
product: pack.product,
|
|
41
|
+
category: pack.category,
|
|
42
|
+
phase_ref: pack.phase_ref,
|
|
43
|
+
pending_record_count: Object.values(pack.records).filter((record) => record.status === "pending_record").length,
|
|
44
|
+
record_step_count: pack.record_steps.length,
|
|
45
|
+
output_count: pack.outputs.length,
|
|
46
|
+
freeze_decision_status: pack.records.freeze_decision.status,
|
|
47
|
+
gate_review_status: pack.records.gate_review.status
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
module.exports = {
|
|
52
|
+
buildPhase8DecisionRecordPack,
|
|
53
|
+
summarizePhase8DecisionRecordPack
|
|
54
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase8DecisionResolutionPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-8-decision-resolution-pack",
|
|
10
|
+
phase_ref: "phase_8",
|
|
11
|
+
posture: "decision_resolution",
|
|
12
|
+
transitions: [
|
|
13
|
+
{
|
|
14
|
+
ref: "freeze_decision",
|
|
15
|
+
from: "pending_record",
|
|
16
|
+
to: "recorded"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
ref: "gate_review",
|
|
20
|
+
from: "pending_record",
|
|
21
|
+
to: "recorded"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
resolution_steps: [
|
|
25
|
+
"confirm the proof-bridge lane family is the intended final Phase 8 shape",
|
|
26
|
+
"record the freeze decision outcome",
|
|
27
|
+
"record the gate review outcome",
|
|
28
|
+
"recheck phase-8 completion and freeze-review summaries",
|
|
29
|
+
"confirm phase-8 gate resolves to ready_for_phase_9"
|
|
30
|
+
],
|
|
31
|
+
target_gate_decision: "ready_for_phase_9",
|
|
32
|
+
target_ready_for_next_phase: true
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function summarizePhase8DecisionResolutionPack() {
|
|
37
|
+
const pack = buildPhase8DecisionResolutionPack();
|
|
38
|
+
return {
|
|
39
|
+
ok: true,
|
|
40
|
+
product: pack.product,
|
|
41
|
+
category: pack.category,
|
|
42
|
+
phase_ref: pack.phase_ref,
|
|
43
|
+
transition_count: pack.transitions.length,
|
|
44
|
+
resolution_step_count: pack.resolution_steps.length,
|
|
45
|
+
target_gate_decision: pack.target_gate_decision,
|
|
46
|
+
target_ready_for_next_phase: pack.target_ready_for_next_phase
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
module.exports = {
|
|
51
|
+
buildPhase8DecisionResolutionPack,
|
|
52
|
+
summarizePhase8DecisionResolutionPack
|
|
53
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase8ExternalReceiptImportRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-8-external-receipt-import-runtime-pack",
|
|
10
|
+
phase_ref: "phase_8",
|
|
11
|
+
posture: "runtime_path",
|
|
12
|
+
ecosystems: ["external_receipt_import"],
|
|
13
|
+
runtime_shape: {
|
|
14
|
+
import_modes: ["receipt_fact_capture", "settlement_receipt_handoff", "proof_bundle_normalization"],
|
|
15
|
+
receipt_modes: ["receipt_ingest_flow", "settlement_mapping_flow", "receipt_handoff_flow"],
|
|
16
|
+
normalization_artifacts: ["receipt_ref", "settlement_ref", "bundle_ref"],
|
|
17
|
+
operator_surfaces: [
|
|
18
|
+
"/v1/release-center/summary",
|
|
19
|
+
"/v1/publish-plan/summary",
|
|
20
|
+
"/v1/phases/phase-8/summary"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
first_path: {
|
|
24
|
+
purpose: "show the Phase 8 receipt-import bridge path from external receipts into normalized proof handoff",
|
|
25
|
+
first_http_sequence: [
|
|
26
|
+
"/v1/phases/phase-8/summary",
|
|
27
|
+
"/v1/phases/phase-8/external-receipt-import/summary",
|
|
28
|
+
"/v1/release-center/summary"
|
|
29
|
+
],
|
|
30
|
+
first_cli_sequence: [
|
|
31
|
+
"xytara-release --phase-8-external-receipt-import-runtime --summary",
|
|
32
|
+
"xytara-release --phase-8 --summary"
|
|
33
|
+
],
|
|
34
|
+
expected_signals: [
|
|
35
|
+
"external receipt import is a public Phase 8 lane",
|
|
36
|
+
"receipt normalization artifacts are explicit at the lane level",
|
|
37
|
+
"proof-bridge posture is visible across more than one bridge lane"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
completion: {
|
|
41
|
+
completion_checks: [
|
|
42
|
+
"external receipt import lane is public and inspectable",
|
|
43
|
+
"receipt normalization artifacts are visible at lane level",
|
|
44
|
+
"operator surfaces remain attached to the receipt-import lane",
|
|
45
|
+
"the lane is ready to deepen broader proof-bridge breadth"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function summarizePhase8ExternalReceiptImportRuntimePack() {
|
|
52
|
+
const pack = buildPhase8ExternalReceiptImportRuntimePack();
|
|
53
|
+
return {
|
|
54
|
+
ok: true,
|
|
55
|
+
product: pack.product,
|
|
56
|
+
category: pack.category,
|
|
57
|
+
phase_ref: pack.phase_ref,
|
|
58
|
+
ecosystem_count: pack.ecosystems.length,
|
|
59
|
+
import_mode_count: pack.runtime_shape.import_modes.length,
|
|
60
|
+
receipt_mode_count: pack.runtime_shape.receipt_modes.length,
|
|
61
|
+
normalization_artifact_count: pack.runtime_shape.normalization_artifacts.length,
|
|
62
|
+
completion_check_count: pack.completion.completion_checks.length,
|
|
63
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
64
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
65
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
66
|
+
operator_surface_count: pack.runtime_shape.operator_surfaces.length,
|
|
67
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
module.exports = {
|
|
72
|
+
buildPhase8ExternalReceiptImportRuntimePack,
|
|
73
|
+
summarizePhase8ExternalReceiptImportRuntimePack
|
|
74
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase8ExternalResultImportRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-8-external-result-import-runtime-pack",
|
|
10
|
+
phase_ref: "phase_8",
|
|
11
|
+
posture: "runtime_path",
|
|
12
|
+
ecosystems: ["external_result_import"],
|
|
13
|
+
runtime_shape: {
|
|
14
|
+
import_modes: ["result_fact_capture", "receipt_handoff_capture", "proof_bundle_normalization"],
|
|
15
|
+
result_modes: ["result_ingest_flow", "result_mapping_flow", "result_handoff_flow"],
|
|
16
|
+
normalization_artifacts: ["result_ref", "receipt_ref", "bundle_ref"],
|
|
17
|
+
operator_surfaces: [
|
|
18
|
+
"/v1/release-center/summary",
|
|
19
|
+
"/v1/publish-plan/summary",
|
|
20
|
+
"/v1/phases/phase-8/summary"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
first_path: {
|
|
24
|
+
purpose: "show the first Phase 8 proof-bridge import path from runtime-side facts into normalized proof handoff",
|
|
25
|
+
first_http_sequence: [
|
|
26
|
+
"/v1/phases/phase-8/summary",
|
|
27
|
+
"/v1/phases/phase-8/external-result-import/summary",
|
|
28
|
+
"/v1/release-center/summary"
|
|
29
|
+
],
|
|
30
|
+
first_cli_sequence: [
|
|
31
|
+
"xytara-release --phase-8-external-result-import-runtime --summary",
|
|
32
|
+
"xytara-release --phase-8 --summary"
|
|
33
|
+
],
|
|
34
|
+
expected_signals: [
|
|
35
|
+
"external result import is a public Phase 8 lane",
|
|
36
|
+
"normalization artifacts are explicit at the lane level",
|
|
37
|
+
"proof-bridge posture is visible before broader Phase 8 expansion"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
completion: {
|
|
41
|
+
completion_checks: [
|
|
42
|
+
"external result import lane is public and inspectable",
|
|
43
|
+
"normalization artifacts are visible at lane level",
|
|
44
|
+
"operator surfaces remain attached to the import lane",
|
|
45
|
+
"the lane is ready to anchor broader proof-bridge breadth"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function summarizePhase8ExternalResultImportRuntimePack() {
|
|
52
|
+
const pack = buildPhase8ExternalResultImportRuntimePack();
|
|
53
|
+
return {
|
|
54
|
+
ok: true,
|
|
55
|
+
product: pack.product,
|
|
56
|
+
category: pack.category,
|
|
57
|
+
phase_ref: pack.phase_ref,
|
|
58
|
+
ecosystem_count: pack.ecosystems.length,
|
|
59
|
+
import_mode_count: pack.runtime_shape.import_modes.length,
|
|
60
|
+
result_mode_count: pack.runtime_shape.result_modes.length,
|
|
61
|
+
normalization_artifact_count: pack.runtime_shape.normalization_artifacts.length,
|
|
62
|
+
completion_check_count: pack.completion.completion_checks.length,
|
|
63
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
64
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
65
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
66
|
+
operator_surface_count: pack.runtime_shape.operator_surfaces.length,
|
|
67
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
module.exports = {
|
|
72
|
+
buildPhase8ExternalResultImportRuntimePack,
|
|
73
|
+
summarizePhase8ExternalResultImportRuntimePack
|
|
74
|
+
};
|