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,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"integration_id": "partner.execution.minimal_echo",
|
|
3
|
+
"adapter_id": "partner.execution.minimal_echo",
|
|
4
|
+
"adapter_class": "execution_adapter",
|
|
5
|
+
"registration_state": "staging_registered",
|
|
6
|
+
"integration_maturity": "staging_candidate",
|
|
7
|
+
"certification_state": "self_attested",
|
|
8
|
+
"bundled": false,
|
|
9
|
+
"default_selection_enabled": false,
|
|
10
|
+
"selection_priority": 600,
|
|
11
|
+
"requires_explicit_selection": true,
|
|
12
|
+
"registered_at": "2026-03-28T00:00:00.000Z",
|
|
13
|
+
"registered_by": "partner:minimal",
|
|
14
|
+
"verified_with": [
|
|
15
|
+
"npm run verify:adapters",
|
|
16
|
+
"minimal_smoke"
|
|
17
|
+
],
|
|
18
|
+
"task_refs": [
|
|
19
|
+
"task.execute"
|
|
20
|
+
],
|
|
21
|
+
"protocols": [],
|
|
22
|
+
"settlement_modes": [
|
|
23
|
+
"evm_payment"
|
|
24
|
+
],
|
|
25
|
+
"notes": "Minimal third-party execution registration record for adapter starter flow."
|
|
26
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"integration_id": "partner.execution.minimal_echo",
|
|
3
|
+
"adapter_id": "partner.execution.minimal_echo",
|
|
4
|
+
"adapter_class": "execution_adapter",
|
|
5
|
+
"certification_state": "self_attested",
|
|
6
|
+
"certification_scope": [
|
|
7
|
+
"self_attested_contract_shape",
|
|
8
|
+
"minimal_smoke"
|
|
9
|
+
],
|
|
10
|
+
"verified_with": [
|
|
11
|
+
"npm run verify:adapters",
|
|
12
|
+
"minimal_smoke"
|
|
13
|
+
],
|
|
14
|
+
"submitted_at": "2026-03-28T00:00:00Z",
|
|
15
|
+
"submitted_by": "partner:minimal",
|
|
16
|
+
"last_verified_contract_version": "xytara/v1",
|
|
17
|
+
"evidence_refs": [
|
|
18
|
+
"memory://minimal-execution/certification/schema-report",
|
|
19
|
+
"memory://minimal-execution/certification/smoke-report"
|
|
20
|
+
],
|
|
21
|
+
"notes": "Minimal third-party execution certification pack for adapter starter flow."
|
|
22
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bundle_version": "xytara/integration-submission-bundle/v1",
|
|
3
|
+
"manifest": {
|
|
4
|
+
"adapter_id": "partner.execution.minimal_echo",
|
|
5
|
+
"adapter_class": "execution_adapter",
|
|
6
|
+
"adapter_version": "0.1.0",
|
|
7
|
+
"interface_version": "commerce-adapter-interface/v1",
|
|
8
|
+
"display_name": "Minimal Third-Party Echo Adapter",
|
|
9
|
+
"description": "Minimal third-party execution adapter starter for external builders copying the public xytara contract.",
|
|
10
|
+
"capabilities": [
|
|
11
|
+
"task.execute",
|
|
12
|
+
"task.preview"
|
|
13
|
+
],
|
|
14
|
+
"required_secrets": [
|
|
15
|
+
"MINIMAL_EXECUTION_TOKEN"
|
|
16
|
+
],
|
|
17
|
+
"required_permissions": [
|
|
18
|
+
"network:outbound"
|
|
19
|
+
],
|
|
20
|
+
"supported_profiles": [
|
|
21
|
+
"partner"
|
|
22
|
+
],
|
|
23
|
+
"supported_regions": [
|
|
24
|
+
"global"
|
|
25
|
+
],
|
|
26
|
+
"supported_settlement_modes": [
|
|
27
|
+
"evm_payment"
|
|
28
|
+
],
|
|
29
|
+
"pricing_basis": "per_task",
|
|
30
|
+
"latency_class": "interactive",
|
|
31
|
+
"registration_contract": {
|
|
32
|
+
"integration_id": "partner.execution.minimal_echo",
|
|
33
|
+
"integration_maturity": "reference_example",
|
|
34
|
+
"bundled": false,
|
|
35
|
+
"default_selection_enabled": false,
|
|
36
|
+
"requires_explicit_selection": true
|
|
37
|
+
},
|
|
38
|
+
"certification_contract": {
|
|
39
|
+
"certification_state": "reference_example",
|
|
40
|
+
"certification_scope": [
|
|
41
|
+
"contract_shape",
|
|
42
|
+
"example_behavior"
|
|
43
|
+
],
|
|
44
|
+
"verified_with": [
|
|
45
|
+
"npm run verify:adapters"
|
|
46
|
+
],
|
|
47
|
+
"last_verified_contract_version": "xytara/v1"
|
|
48
|
+
},
|
|
49
|
+
"compatibility": {
|
|
50
|
+
"node": ">=18",
|
|
51
|
+
"commerce_contract": "xytara/v1",
|
|
52
|
+
"proof_contract": "xoonya/v1"
|
|
53
|
+
},
|
|
54
|
+
"health_contract": {
|
|
55
|
+
"check_kind": "self_reported",
|
|
56
|
+
"supports_readiness": true
|
|
57
|
+
},
|
|
58
|
+
"idempotency_contract": {
|
|
59
|
+
"strategy": "caller_supplied_key",
|
|
60
|
+
"scope": "task_execution"
|
|
61
|
+
},
|
|
62
|
+
"failure_contract": {
|
|
63
|
+
"categories": [
|
|
64
|
+
"invalid_input",
|
|
65
|
+
"timeout",
|
|
66
|
+
"upstream_unavailable"
|
|
67
|
+
],
|
|
68
|
+
"retryable_categories": [
|
|
69
|
+
"timeout",
|
|
70
|
+
"upstream_unavailable"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"proof_contract": {
|
|
74
|
+
"emits_proof_compatible_facts": true,
|
|
75
|
+
"proof_mode": "execution_facts_only"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"registration_record": {
|
|
79
|
+
"integration_id": "partner.execution.minimal_echo",
|
|
80
|
+
"adapter_id": "partner.execution.minimal_echo",
|
|
81
|
+
"adapter_class": "execution_adapter",
|
|
82
|
+
"registration_state": "staging_registered",
|
|
83
|
+
"integration_maturity": "staging_candidate",
|
|
84
|
+
"certification_state": "self_attested",
|
|
85
|
+
"bundled": false,
|
|
86
|
+
"default_selection_enabled": false,
|
|
87
|
+
"requires_explicit_selection": true,
|
|
88
|
+
"registered_at": "2026-03-28T00:00:00.000Z",
|
|
89
|
+
"registered_by": "partner:minimal",
|
|
90
|
+
"verified_with": [
|
|
91
|
+
"npm run verify:adapters",
|
|
92
|
+
"minimal_smoke"
|
|
93
|
+
],
|
|
94
|
+
"task_refs": [
|
|
95
|
+
"task.execute"
|
|
96
|
+
],
|
|
97
|
+
"protocols": [],
|
|
98
|
+
"settlement_modes": [
|
|
99
|
+
"evm_payment"
|
|
100
|
+
],
|
|
101
|
+
"notes": "Minimal third-party execution registration record for adapter starter flow."
|
|
102
|
+
},
|
|
103
|
+
"certification_pack": {
|
|
104
|
+
"integration_id": "partner.execution.minimal_echo",
|
|
105
|
+
"adapter_id": "partner.execution.minimal_echo",
|
|
106
|
+
"adapter_class": "execution_adapter",
|
|
107
|
+
"certification_state": "self_attested",
|
|
108
|
+
"certification_scope": [
|
|
109
|
+
"self_attested_contract_shape",
|
|
110
|
+
"minimal_smoke"
|
|
111
|
+
],
|
|
112
|
+
"verified_with": [
|
|
113
|
+
"npm run verify:adapters",
|
|
114
|
+
"minimal_smoke"
|
|
115
|
+
],
|
|
116
|
+
"submitted_at": "2026-03-28T00:00:00Z",
|
|
117
|
+
"submitted_by": "partner:minimal",
|
|
118
|
+
"last_verified_contract_version": "xytara/v1",
|
|
119
|
+
"evidence_refs": [
|
|
120
|
+
"memory://minimal-execution/certification/schema-report",
|
|
121
|
+
"memory://minimal-execution/certification/smoke-report"
|
|
122
|
+
],
|
|
123
|
+
"notes": "Minimal third-party execution certification pack for adapter starter flow."
|
|
124
|
+
},
|
|
125
|
+
"notes": "Minimal third-party execution submission bundle for copy-and-adapt onboarding."
|
|
126
|
+
}
|