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,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3NativeBsvPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-native-bsv-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
status: "active",
|
|
12
|
+
ecosystems: ["bsv", "teranode", "metanet", "brc"],
|
|
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
|
+
continuity_refs: [
|
|
19
|
+
"/v1/phases/phase-3/native-continuity/summary"
|
|
20
|
+
],
|
|
21
|
+
native_shape: {
|
|
22
|
+
rail_family: "bsv_native",
|
|
23
|
+
settlement_modes: ["bsv_teranode"],
|
|
24
|
+
identity_layers: ["metanet", "brc"],
|
|
25
|
+
native_depth: {
|
|
26
|
+
submission_modes: ["signed_submit", "operator_replay"],
|
|
27
|
+
finality_stages: ["accepted", "observed", "settled"],
|
|
28
|
+
graph_modes: ["node_linkage", "path_carry", "subject_continuity"],
|
|
29
|
+
registry_modes: ["record_linkage", "attestation_lookup", "subject_resolution"]
|
|
30
|
+
},
|
|
31
|
+
lane_coverage: {
|
|
32
|
+
settlement_lane_refs: ["/v1/phases/phase-3/bsv-teranode/summary"],
|
|
33
|
+
identity_lane_refs: [
|
|
34
|
+
"/v1/phases/phase-3/metanet/summary",
|
|
35
|
+
"/v1/phases/phase-3/brc/summary"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
operator_surfaces: [
|
|
39
|
+
"/v1/integrations/settlement-modes",
|
|
40
|
+
"/v1/release-center/summary",
|
|
41
|
+
"/v1/publish-plan/summary"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
completion_shape: {
|
|
45
|
+
completion_checks: [
|
|
46
|
+
"broad native BSV phase pack is public and inspectable",
|
|
47
|
+
"BSV plus Teranode, Metanet, and BRC runtime lanes are public and inspectable",
|
|
48
|
+
"native identity expansion is visible alongside native settlement work",
|
|
49
|
+
"native settlement and operator surfaces stay attached to the Phase 3 rail family",
|
|
50
|
+
"release-center summary reflects Phase 3 activation and the first native runtime lane"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
goal: "fully solidify the native differentiated BSV-centered rail family as the next active program slice",
|
|
54
|
+
done_means: [
|
|
55
|
+
"Phase 2 is no longer the active program slice",
|
|
56
|
+
"native BSV work has a public runtime-facing entry path",
|
|
57
|
+
"BSV, Teranode, Metanet, and BRC are visible as an explicit Phase 3 lane family",
|
|
58
|
+
"the first native lane family feels operational rather than like a placeholder"
|
|
59
|
+
]
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function summarizePhase3NativeBsvPack() {
|
|
64
|
+
const pack = buildPhase3NativeBsvPack();
|
|
65
|
+
return {
|
|
66
|
+
ok: true,
|
|
67
|
+
product: pack.product,
|
|
68
|
+
category: pack.category,
|
|
69
|
+
phase_ref: pack.phase_ref,
|
|
70
|
+
ecosystem_count: pack.ecosystems.length,
|
|
71
|
+
lane_count: pack.lane_refs.length,
|
|
72
|
+
continuity_ref_count: pack.continuity_refs.length,
|
|
73
|
+
settlement_mode_count: pack.native_shape.settlement_modes.length,
|
|
74
|
+
identity_layer_count: pack.native_shape.identity_layers.length,
|
|
75
|
+
submission_mode_count: pack.native_shape.native_depth.submission_modes.length,
|
|
76
|
+
finality_stage_count: pack.native_shape.native_depth.finality_stages.length,
|
|
77
|
+
graph_mode_count: pack.native_shape.native_depth.graph_modes.length,
|
|
78
|
+
registry_mode_count: pack.native_shape.native_depth.registry_modes.length,
|
|
79
|
+
settlement_lane_count: pack.native_shape.lane_coverage.settlement_lane_refs.length,
|
|
80
|
+
identity_lane_count: pack.native_shape.lane_coverage.identity_lane_refs.length,
|
|
81
|
+
operator_surface_count: pack.native_shape.operator_surfaces.length,
|
|
82
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
83
|
+
done_mean_count: pack.done_means.length,
|
|
84
|
+
first_ecosystem: pack.ecosystems[0] || null
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
module.exports = {
|
|
89
|
+
buildPhase3NativeBsvPack,
|
|
90
|
+
summarizePhase3NativeBsvPack
|
|
91
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase3NativeContinuityPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-3-native-continuity-pack",
|
|
10
|
+
phase_ref: "phase_3",
|
|
11
|
+
posture: "native_family_continuity",
|
|
12
|
+
lane_refs: [
|
|
13
|
+
"/v1/phases/phase-3/bsv-teranode/summary",
|
|
14
|
+
"/v1/phases/phase-3/metanet/summary",
|
|
15
|
+
"/v1/phases/phase-3/brc/summary"
|
|
16
|
+
],
|
|
17
|
+
continuity_shape: {
|
|
18
|
+
rail_family: "bsv_native",
|
|
19
|
+
settlement_lane_refs: ["/v1/phases/phase-3/bsv-teranode/summary"],
|
|
20
|
+
identity_lane_refs: [
|
|
21
|
+
"/v1/phases/phase-3/metanet/summary",
|
|
22
|
+
"/v1/phases/phase-3/brc/summary"
|
|
23
|
+
],
|
|
24
|
+
continuity_surfaces: [
|
|
25
|
+
"/v1/release-center/summary",
|
|
26
|
+
"/v1/integrations/settlement-modes",
|
|
27
|
+
"/v1/publish-plan/summary"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
completion_shape: {
|
|
31
|
+
completion_checks: [
|
|
32
|
+
"the native continuity family is public and inspectable",
|
|
33
|
+
"settlement and identity-native lanes remain attached to one Phase 3 family",
|
|
34
|
+
"Metanet and BRC stay legible as identity-continuity extensions of the BSV-native rail family",
|
|
35
|
+
"operator-facing native continuity review remains available from stable public routes"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
first_path: {
|
|
39
|
+
purpose: "show the native BSV family as one continuity path spanning settlement and identity-linked carry",
|
|
40
|
+
first_http_sequence: [
|
|
41
|
+
"/v1/phases/phase-3/summary",
|
|
42
|
+
"/v1/phases/phase-3/bsv-teranode/summary",
|
|
43
|
+
"/v1/phases/phase-3/metanet/summary",
|
|
44
|
+
"/v1/phases/phase-3/brc/summary"
|
|
45
|
+
],
|
|
46
|
+
first_cli_sequence: [
|
|
47
|
+
"xytara-release --phase-3-native-continuity --summary",
|
|
48
|
+
"xytara-release --phase-3 --summary"
|
|
49
|
+
],
|
|
50
|
+
expected_signals: [
|
|
51
|
+
"Phase 3 reads as one BSV-native family rather than disconnected lanes",
|
|
52
|
+
"native settlement and native identity expansion stay visibly linked",
|
|
53
|
+
"operators can inspect one continuity posture before drilling into lane-specific details",
|
|
54
|
+
"the differentiated native rail family feels more operational and coherent"
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function summarizePhase3NativeContinuityPack() {
|
|
61
|
+
const pack = buildPhase3NativeContinuityPack();
|
|
62
|
+
return {
|
|
63
|
+
ok: true,
|
|
64
|
+
product: pack.product,
|
|
65
|
+
category: pack.category,
|
|
66
|
+
phase_ref: pack.phase_ref,
|
|
67
|
+
lane_count: pack.lane_refs.length,
|
|
68
|
+
settlement_lane_count: pack.continuity_shape.settlement_lane_refs.length,
|
|
69
|
+
identity_lane_count: pack.continuity_shape.identity_lane_refs.length,
|
|
70
|
+
continuity_surface_count: pack.continuity_shape.continuity_surfaces.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
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = {
|
|
80
|
+
buildPhase3NativeContinuityPack,
|
|
81
|
+
summarizePhase3NativeContinuityPack
|
|
82
|
+
};
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase4AttestationRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-4-attestation-runtime-pack",
|
|
10
|
+
phase_ref: "phase_4",
|
|
11
|
+
ecosystem_ref: "attestation",
|
|
12
|
+
status: "active",
|
|
13
|
+
trust_shape: {
|
|
14
|
+
identity_layers: ["attestation"],
|
|
15
|
+
attestation_modes: ["subject_attestation", "attester_resolution", "review_carry"],
|
|
16
|
+
review_modes: ["subject_attestation", "attester_resolution", "review_carry"],
|
|
17
|
+
trust_artifacts: ["attestation_ref", "attester_ref", "review_ref"],
|
|
18
|
+
operator_surfaces: [
|
|
19
|
+
"/v1/release-center/summary",
|
|
20
|
+
"/v1/publish-plan/summary",
|
|
21
|
+
"/v1/phases/phase-4/summary"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
first_steps: {
|
|
25
|
+
http: [
|
|
26
|
+
"/v1/phases/phase-4/summary",
|
|
27
|
+
"/v1/phases/phase-4/attestation/summary",
|
|
28
|
+
"/v1/release-center/summary"
|
|
29
|
+
],
|
|
30
|
+
cli: [
|
|
31
|
+
"xytara-release --phase-4 --summary",
|
|
32
|
+
"xytara-release --phase-4-attestation-runtime --summary"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
success_signals: [
|
|
36
|
+
"attestation lane is public and inspectable",
|
|
37
|
+
"attester resolution and review carry are visible",
|
|
38
|
+
"trust artifacts stay explicit at lane level"
|
|
39
|
+
],
|
|
40
|
+
completion_shape: {
|
|
41
|
+
completion_checks: [
|
|
42
|
+
"attestation runtime lane is public and inspectable",
|
|
43
|
+
"attestation and attester resolution modes are visible",
|
|
44
|
+
"trust artifacts are explicit at lane level",
|
|
45
|
+
"operator surfaces stay attached to the lane"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function summarizePhase4AttestationRuntimePack() {
|
|
52
|
+
const pack = buildPhase4AttestationRuntimePack();
|
|
53
|
+
return {
|
|
54
|
+
ok: true,
|
|
55
|
+
product: pack.product,
|
|
56
|
+
category: pack.category,
|
|
57
|
+
phase_ref: pack.phase_ref,
|
|
58
|
+
ecosystem_count: pack.trust_shape.identity_layers.length,
|
|
59
|
+
identity_layer_count: pack.trust_shape.identity_layers.length,
|
|
60
|
+
attestation_mode_count: pack.trust_shape.attestation_modes.length,
|
|
61
|
+
review_mode_count: pack.trust_shape.review_modes.length,
|
|
62
|
+
trust_artifact_count: pack.trust_shape.trust_artifacts.length,
|
|
63
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
64
|
+
http_step_count: pack.first_steps.http.length,
|
|
65
|
+
cli_step_count: pack.first_steps.cli.length,
|
|
66
|
+
signal_count: pack.success_signals.length,
|
|
67
|
+
operator_surface_count: pack.trust_shape.operator_surfaces.length,
|
|
68
|
+
first_http_step: pack.first_steps.http[0] || null
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
module.exports = {
|
|
73
|
+
buildPhase4AttestationRuntimePack,
|
|
74
|
+
summarizePhase4AttestationRuntimePack
|
|
75
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase4CloseoutPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-4-closeout-pack",
|
|
10
|
+
phase_ref: "phase_4",
|
|
11
|
+
posture: "phase_closeout",
|
|
12
|
+
current_decision: "ready_for_phase_5",
|
|
13
|
+
blocking_actions: [],
|
|
14
|
+
action_steps: [
|
|
15
|
+
"confirm the current trust lane family remains the recorded Phase 4 baseline",
|
|
16
|
+
"confirm the gate review is recorded",
|
|
17
|
+
"recheck phase-4 gate summary for zero unsatisfied conditions",
|
|
18
|
+
"advance to Phase 5 only after the gate is explicitly ready"
|
|
19
|
+
],
|
|
20
|
+
completion_signals: [
|
|
21
|
+
"freeze baseline is recorded",
|
|
22
|
+
"gate review is recorded",
|
|
23
|
+
"phase-4 gate resolves to ready_for_phase_5"
|
|
24
|
+
]
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function summarizePhase4CloseoutPack() {
|
|
29
|
+
const pack = buildPhase4CloseoutPack();
|
|
30
|
+
return {
|
|
31
|
+
ok: true,
|
|
32
|
+
product: pack.product,
|
|
33
|
+
category: pack.category,
|
|
34
|
+
phase_ref: pack.phase_ref,
|
|
35
|
+
blocking_action_count: pack.blocking_actions.length,
|
|
36
|
+
action_step_count: pack.action_steps.length,
|
|
37
|
+
completion_signal_count: pack.completion_signals.length,
|
|
38
|
+
current_decision: pack.current_decision
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
module.exports = {
|
|
43
|
+
buildPhase4CloseoutPack,
|
|
44
|
+
summarizePhase4CloseoutPack
|
|
45
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase4CompletionPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-4-completion-pack",
|
|
10
|
+
phase_ref: "phase_4",
|
|
11
|
+
posture: "completion_review",
|
|
12
|
+
coverage: {
|
|
13
|
+
ecosystem_refs: ["erc8004", "identity_registry", "attestation"],
|
|
14
|
+
lane_refs: [
|
|
15
|
+
"/v1/phases/phase-4/erc8004/summary",
|
|
16
|
+
"/v1/phases/phase-4/identity-registry/summary",
|
|
17
|
+
"/v1/phases/phase-4/attestation/summary"
|
|
18
|
+
],
|
|
19
|
+
identity_layers: ["erc8004", "identity_registry"],
|
|
20
|
+
attestation_modes: ["subject_attestation", "registry_binding", "trust_resolution"],
|
|
21
|
+
erc8004_modes: ["subject_binding", "policy_carry", "wallet_resolution"],
|
|
22
|
+
registry_modes: ["registry_binding", "subject_resolution", "registry_lookup"],
|
|
23
|
+
review_modes: ["attester_resolution", "review_carry", "trust_resolution"],
|
|
24
|
+
trust_artifacts: ["subject_ref", "registry_binding_ref", "attestation_ref"],
|
|
25
|
+
operator_surfaces: [
|
|
26
|
+
"/v1/release-center/summary",
|
|
27
|
+
"/v1/publish-plan/summary",
|
|
28
|
+
"/v1/phases/phase-4/trust-continuity/summary"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
completion: {
|
|
32
|
+
checks: [
|
|
33
|
+
"broad Phase 4 trust pack is public and inspectable",
|
|
34
|
+
"all current Phase 4 trust lanes are public and inspectable",
|
|
35
|
+
"identity and attestation posture are visible at phase level",
|
|
36
|
+
"trust continuity is explicit across the trust family",
|
|
37
|
+
"release-center summary reflects Phase 4 breadth and lane coverage",
|
|
38
|
+
"Phase 4 closure criteria are explicit before opening Phase 5"
|
|
39
|
+
],
|
|
40
|
+
readiness_criteria: [
|
|
41
|
+
{ ref: "criterion.phase_surface_public", label: "Phase 4 broad summary is live and inspectable", satisfied: true },
|
|
42
|
+
{ ref: "criterion.trust_lane_coverage", label: "All current trust lanes are live and inspectable", satisfied: true },
|
|
43
|
+
{ ref: "criterion.trust_continuity_visible", label: "Trust continuity is visible at phase level", satisfied: true },
|
|
44
|
+
{ ref: "criterion.operator_surfaces_attached", label: "Operator surfaces remain attached to the trust family", satisfied: true },
|
|
45
|
+
{ ref: "criterion.freeze_shape_confirmed", label: "The final Phase 4 trust 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 5", satisfied: true }
|
|
47
|
+
],
|
|
48
|
+
ready_for_next_phase: true,
|
|
49
|
+
remaining_focus: []
|
|
50
|
+
},
|
|
51
|
+
first_path: {
|
|
52
|
+
purpose: "review whether Phase 4 is complete as a trust and identity program slice rather than just enumerated",
|
|
53
|
+
first_http_sequence: [
|
|
54
|
+
"/v1/phases/phase-4/summary",
|
|
55
|
+
"/v1/phases/phase-4/completion/summary",
|
|
56
|
+
"/v1/release-center/summary"
|
|
57
|
+
],
|
|
58
|
+
first_cli_sequence: [
|
|
59
|
+
"xytara-release --phase-4-completion --summary",
|
|
60
|
+
"xytara-release --phase-4 --summary"
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function summarizePhase4CompletionPack() {
|
|
67
|
+
const pack = buildPhase4CompletionPack();
|
|
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
|
+
identity_layer_count: pack.coverage.identity_layers.length,
|
|
76
|
+
attestation_mode_count: pack.coverage.attestation_modes.length,
|
|
77
|
+
erc8004_mode_count: pack.coverage.erc8004_modes.length,
|
|
78
|
+
registry_mode_count: pack.coverage.registry_modes.length,
|
|
79
|
+
review_mode_count: pack.coverage.review_modes.length,
|
|
80
|
+
trust_artifact_count: pack.coverage.trust_artifacts.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
|
+
buildPhase4CompletionPack,
|
|
93
|
+
summarizePhase4CompletionPack
|
|
94
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase4DecisionRecordPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-4-decision-record-pack",
|
|
10
|
+
phase_ref: "phase_4",
|
|
11
|
+
posture: "decision_record",
|
|
12
|
+
records: {
|
|
13
|
+
freeze_decision: {
|
|
14
|
+
status: "recorded",
|
|
15
|
+
description: "record the final trust lane shape as the frozen Phase 4 baseline"
|
|
16
|
+
},
|
|
17
|
+
gate_review: {
|
|
18
|
+
status: "recorded",
|
|
19
|
+
description: "record the final review that authorizes the move to Phase 5"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
record_steps: [
|
|
23
|
+
"confirm the current trust lane family is the final Phase 4 shape",
|
|
24
|
+
"record the freeze decision outcome",
|
|
25
|
+
"record the gate review outcome",
|
|
26
|
+
"recheck phase-4 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-4 gate can be flipped deliberately"
|
|
32
|
+
]
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function summarizePhase4DecisionRecordPack() {
|
|
37
|
+
const pack = buildPhase4DecisionRecordPack();
|
|
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
|
+
buildPhase4DecisionRecordPack,
|
|
53
|
+
summarizePhase4DecisionRecordPack
|
|
54
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase4DecisionResolutionPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-4-decision-resolution-pack",
|
|
10
|
+
phase_ref: "phase_4",
|
|
11
|
+
posture: "decision_resolution",
|
|
12
|
+
transitions: [
|
|
13
|
+
"freeze_decision: pending_record -> recorded",
|
|
14
|
+
"gate_review: pending_record -> recorded"
|
|
15
|
+
],
|
|
16
|
+
resolution_steps: [
|
|
17
|
+
"record the final trust-family freeze decision",
|
|
18
|
+
"record the final gate review",
|
|
19
|
+
"confirm freeze-review blockers are cleared",
|
|
20
|
+
"confirm gate unsatisfied count is zero",
|
|
21
|
+
"treat the gate result as the explicit signal to open Phase 5"
|
|
22
|
+
],
|
|
23
|
+
target_gate_decision: "ready_for_phase_5",
|
|
24
|
+
target_ready_for_next_phase: true
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function summarizePhase4DecisionResolutionPack() {
|
|
29
|
+
const pack = buildPhase4DecisionResolutionPack();
|
|
30
|
+
return {
|
|
31
|
+
ok: true,
|
|
32
|
+
product: pack.product,
|
|
33
|
+
category: pack.category,
|
|
34
|
+
phase_ref: pack.phase_ref,
|
|
35
|
+
transition_count: pack.transitions.length,
|
|
36
|
+
resolution_step_count: pack.resolution_steps.length,
|
|
37
|
+
target_gate_decision: pack.target_gate_decision,
|
|
38
|
+
target_ready_for_next_phase: pack.target_ready_for_next_phase
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
module.exports = {
|
|
43
|
+
buildPhase4DecisionResolutionPack,
|
|
44
|
+
summarizePhase4DecisionResolutionPack
|
|
45
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase4Erc8004RuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-4-erc8004-runtime-pack",
|
|
10
|
+
phase_ref: "phase_4",
|
|
11
|
+
ecosystem_refs: ["erc8004"],
|
|
12
|
+
posture: "runtime_path",
|
|
13
|
+
trust_shape: {
|
|
14
|
+
identity_layers: ["erc8004"],
|
|
15
|
+
attestation_modes: ["subject_attestation", "registry_binding", "trust_resolution"],
|
|
16
|
+
erc8004_modes: ["subject_binding", "policy_carry", "wallet_resolution"],
|
|
17
|
+
trust_artifacts: ["subject_ref", "attestation_ref", "registry_binding_ref"],
|
|
18
|
+
operator_surfaces: [
|
|
19
|
+
"/v1/release-center/summary",
|
|
20
|
+
"/v1/publish-plan/summary",
|
|
21
|
+
"/v1/phases/phase-4/summary"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
completion_shape: {
|
|
25
|
+
completion_checks: [
|
|
26
|
+
"the ERC8004 runtime lane is public and inspectable",
|
|
27
|
+
"trust and attestation posture stay attached to the runtime lane",
|
|
28
|
+
"operator surfaces remain available for trust review",
|
|
29
|
+
"Phase 4 begins from explicit identity and attestation legibility"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
first_path: {
|
|
33
|
+
purpose: "show the first public trust lane for ERC8004-linked identity and attestation",
|
|
34
|
+
first_http_sequence: [
|
|
35
|
+
"/v1/phases/phase-4/summary",
|
|
36
|
+
"/v1/release-center/summary",
|
|
37
|
+
"/v1/publish-plan/summary"
|
|
38
|
+
],
|
|
39
|
+
first_cli_sequence: [
|
|
40
|
+
"xytara-release --phase-4-erc8004-runtime --summary",
|
|
41
|
+
"xytara-release --phase-4 --summary"
|
|
42
|
+
],
|
|
43
|
+
expected_signals: [
|
|
44
|
+
"ERC8004 is visible as the first concrete Phase 4 trust lane",
|
|
45
|
+
"identity and attestation posture are inspectable from a stable route",
|
|
46
|
+
"Phase 4 starts from trust clarity rather than generic adapter naming"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function summarizePhase4Erc8004RuntimePack() {
|
|
53
|
+
const pack = buildPhase4Erc8004RuntimePack();
|
|
54
|
+
return {
|
|
55
|
+
ok: true,
|
|
56
|
+
product: pack.product,
|
|
57
|
+
category: pack.category,
|
|
58
|
+
phase_ref: pack.phase_ref,
|
|
59
|
+
ecosystem_count: pack.ecosystem_refs.length,
|
|
60
|
+
identity_layer_count: pack.trust_shape.identity_layers.length,
|
|
61
|
+
attestation_mode_count: pack.trust_shape.attestation_modes.length,
|
|
62
|
+
erc8004_mode_count: pack.trust_shape.erc8004_modes.length,
|
|
63
|
+
trust_artifact_count: pack.trust_shape.trust_artifacts.length,
|
|
64
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
65
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
66
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
67
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
68
|
+
operator_surface_count: pack.trust_shape.operator_surfaces.length,
|
|
69
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
module.exports = {
|
|
74
|
+
buildPhase4Erc8004RuntimePack,
|
|
75
|
+
summarizePhase4Erc8004RuntimePack
|
|
76
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase4FreezeBaselinePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-4-freeze-baseline-pack",
|
|
10
|
+
phase_ref: "phase_4",
|
|
11
|
+
posture: "frozen_baseline",
|
|
12
|
+
baseline: {
|
|
13
|
+
lane_refs: [
|
|
14
|
+
"/v1/phases/phase-4/erc8004/summary",
|
|
15
|
+
"/v1/phases/phase-4/identity-registry/summary",
|
|
16
|
+
"/v1/phases/phase-4/attestation/summary"
|
|
17
|
+
],
|
|
18
|
+
identity_layers: ["erc8004", "identity_registry"],
|
|
19
|
+
attestation_modes: ["subject_attestation", "registry_binding", "trust_resolution"],
|
|
20
|
+
baseline_status: "recorded",
|
|
21
|
+
frozen_outputs: [
|
|
22
|
+
"current trust lane family is the recorded Phase 4 baseline",
|
|
23
|
+
"trust family can now be judged against a stable shape rather than an open expansion set",
|
|
24
|
+
"only the final gate review remains before Phase 5"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
first_path: {
|
|
28
|
+
purpose: "show that the Phase 4 trust lane family is now treated as a frozen baseline",
|
|
29
|
+
first_http_sequence: [
|
|
30
|
+
"/v1/phases/phase-4/summary",
|
|
31
|
+
"/v1/phases/phase-4/freeze-baseline/summary",
|
|
32
|
+
"/v1/phases/phase-4/gate/summary"
|
|
33
|
+
],
|
|
34
|
+
first_cli_sequence: [
|
|
35
|
+
"xytara-release --phase-4-freeze-baseline --summary",
|
|
36
|
+
"xytara-release --phase-4 --summary"
|
|
37
|
+
],
|
|
38
|
+
expected_signals: [
|
|
39
|
+
"the trust lane family is now explicitly frozen",
|
|
40
|
+
"lane freeze is no longer part of the remaining Phase 4 uncertainty",
|
|
41
|
+
"the final open work is narrowed to gate review rather than shape definition"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function summarizePhase4FreezeBaselinePack() {
|
|
48
|
+
const pack = buildPhase4FreezeBaselinePack();
|
|
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
|
+
identity_layer_count: pack.baseline.identity_layers.length,
|
|
56
|
+
attestation_mode_count: pack.baseline.attestation_modes.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
|
+
buildPhase4FreezeBaselinePack,
|
|
66
|
+
summarizePhase4FreezeBaselinePack
|
|
67
|
+
};
|