xytara 2.1.0 → 2.3.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.
Files changed (163) hide show
  1. package/.env.example +5 -1
  2. package/ADAPTER_START_HERE.md +56 -0
  3. package/CARRIED_HANDOFF_DEMO.md +60 -0
  4. package/EXAMPLE_PATHS.md +53 -0
  5. package/OPERATIONS_RUNBOOK.md +65 -0
  6. package/OPERATOR_START_HERE.md +63 -0
  7. package/PARTNER_READY_PATH.md +71 -0
  8. package/PROGRAM_COMPLETE_RELEASE.md +63 -0
  9. package/PROGRAM_STATUS.md +57 -0
  10. package/PUBLIC_DEMO_SCRIPT.md +78 -0
  11. package/PUBLISH_PLAN.md +7 -5
  12. package/README.md +66 -0
  13. package/RELEASE_CHECKLIST.md +8 -2
  14. package/RELEASE_NOTES.md +19 -8
  15. package/START_HERE.md +32 -0
  16. package/SUPABASE_RUNTIME_STATE_SETUP.md +61 -0
  17. package/WHY_XYTARA_XOONYA.md +63 -0
  18. package/adapters/examples/minimal-third-party-execution-adapter.js +61 -0
  19. package/adapters/examples/minimal-third-party-execution-adapter.manifest.json +79 -0
  20. package/adapters/examples/minimal-third-party-execution-registration.record.json +26 -0
  21. package/adapters/examples/minimal-third-party-execution.certification-pack.json +22 -0
  22. package/adapters/examples/minimal-third-party-execution.submission-bundle.json +126 -0
  23. package/bin/xytara-release.js +1251 -1
  24. package/examples/adapter_review_walkthrough.js +53 -0
  25. package/examples/export_carried_handoff.js +80 -0
  26. package/examples/funded_runtime_walkthrough.js +70 -0
  27. package/examples/partner_launch_walkthrough.js +43 -0
  28. package/examples/quickstart.js +3255 -0
  29. package/index.js +7 -1
  30. package/lib/adapter_pack.js +118 -0
  31. package/lib/adapter_partner_pack.js +89 -0
  32. package/lib/adapter_promotion_pack.js +89 -0
  33. package/lib/commerce_client.js +38 -0
  34. package/lib/commerce_economics.js +304 -0
  35. package/lib/operator_intelligence.js +90 -0
  36. package/lib/outreach_copy_pack.js +51 -0
  37. package/lib/outreach_message_pack.js +71 -0
  38. package/lib/outreach_target_pack.js +60 -0
  39. package/lib/partner_intelligence.js +105 -0
  40. package/lib/phase_10_closeout_pack.js +45 -0
  41. package/lib/phase_10_completion_pack.js +76 -0
  42. package/lib/phase_10_decision_record_pack.js +54 -0
  43. package/lib/phase_10_decision_resolution_pack.js +53 -0
  44. package/lib/phase_10_demand_signal_adapters_runtime_pack.js +74 -0
  45. package/lib/phase_10_ecosystem_backlog_triage_runtime_pack.js +74 -0
  46. package/lib/phase_10_freeze_baseline_pack.js +67 -0
  47. package/lib/phase_10_freeze_review_pack.js +64 -0
  48. package/lib/phase_10_gate_pack.js +57 -0
  49. package/lib/phase_10_long_tail_continuity_pack.js +80 -0
  50. package/lib/phase_10_long_tail_ecosystem_pack.js +66 -0
  51. package/lib/phase_10_niche_extension_registry_runtime_pack.js +74 -0
  52. package/lib/phase_1_claude_mcp_pack.js +60 -0
  53. package/lib/phase_1_claude_mcp_runtime_pack.js +52 -0
  54. package/lib/phase_1_ecosystem_pack.js +67 -0
  55. package/lib/phase_1_openai_codex_pack.js +60 -0
  56. package/lib/phase_1_openai_codex_runtime_pack.js +52 -0
  57. package/lib/phase_2_base_runtime_pack.js +71 -0
  58. package/lib/phase_2_base_usdc_runtime_pack.js +72 -0
  59. package/lib/phase_2_closeout_pack.js +65 -0
  60. package/lib/phase_2_completion_pack.js +113 -0
  61. package/lib/phase_2_decision_record_pack.js +66 -0
  62. package/lib/phase_2_decision_resolution_pack.js +69 -0
  63. package/lib/phase_2_eth_runtime_pack.js +70 -0
  64. package/lib/phase_2_evm_base_runtime_pack.js +73 -0
  65. package/lib/phase_2_evm_runtime_pack.js +71 -0
  66. package/lib/phase_2_flip_preview_pack.js +60 -0
  67. package/lib/phase_2_freeze_review_pack.js +99 -0
  68. package/lib/phase_2_gate_pack.js +77 -0
  69. package/lib/phase_2_payment_rails_pack.js +71 -0
  70. package/lib/phase_2_usdc_runtime_pack.js +71 -0
  71. package/lib/phase_3_brc_runtime_pack.js +81 -0
  72. package/lib/phase_3_bsv_teranode_runtime_pack.js +83 -0
  73. package/lib/phase_3_closeout_pack.js +62 -0
  74. package/lib/phase_3_completion_pack.js +94 -0
  75. package/lib/phase_3_decision_record_pack.js +64 -0
  76. package/lib/phase_3_decision_resolution_pack.js +69 -0
  77. package/lib/phase_3_freeze_baseline_pack.js +67 -0
  78. package/lib/phase_3_freeze_review_pack.js +80 -0
  79. package/lib/phase_3_gate_pack.js +76 -0
  80. package/lib/phase_3_metanet_runtime_pack.js +81 -0
  81. package/lib/phase_3_native_bsv_pack.js +91 -0
  82. package/lib/phase_3_native_continuity_pack.js +82 -0
  83. package/lib/phase_4_attestation_runtime_pack.js +75 -0
  84. package/lib/phase_4_closeout_pack.js +45 -0
  85. package/lib/phase_4_completion_pack.js +94 -0
  86. package/lib/phase_4_decision_record_pack.js +54 -0
  87. package/lib/phase_4_decision_resolution_pack.js +45 -0
  88. package/lib/phase_4_erc8004_runtime_pack.js +76 -0
  89. package/lib/phase_4_freeze_baseline_pack.js +67 -0
  90. package/lib/phase_4_freeze_review_pack.js +68 -0
  91. package/lib/phase_4_gate_pack.js +58 -0
  92. package/lib/phase_4_identity_registry_runtime_pack.js +75 -0
  93. package/lib/phase_4_identity_trust_pack.js +73 -0
  94. package/lib/phase_4_trust_continuity_pack.js +86 -0
  95. package/lib/phase_5_antelope_runtime_pack.js +76 -0
  96. package/lib/phase_5_closeout_pack.js +44 -0
  97. package/lib/phase_5_completion_pack.js +82 -0
  98. package/lib/phase_5_decision_record_pack.js +54 -0
  99. package/lib/phase_5_decision_resolution_pack.js +45 -0
  100. package/lib/phase_5_freeze_baseline_pack.js +67 -0
  101. package/lib/phase_5_freeze_review_pack.js +68 -0
  102. package/lib/phase_5_gate_pack.js +58 -0
  103. package/lib/phase_5_major_rails_continuity_pack.js +86 -0
  104. package/lib/phase_5_major_rails_pack.js +74 -0
  105. package/lib/phase_5_proton_xpr_runtime_pack.js +76 -0
  106. package/lib/phase_5_solana_runtime_pack.js +76 -0
  107. package/lib/phase_6_autogen_runtime_pack.js +72 -0
  108. package/lib/phase_6_closeout_pack.js +46 -0
  109. package/lib/phase_6_completion_pack.js +77 -0
  110. package/lib/phase_6_decision_record_pack.js +54 -0
  111. package/lib/phase_6_decision_resolution_pack.js +53 -0
  112. package/lib/phase_6_framework_continuity_pack.js +81 -0
  113. package/lib/phase_6_framework_runtime_pack.js +68 -0
  114. package/lib/phase_6_freeze_baseline_pack.js +68 -0
  115. package/lib/phase_6_freeze_review_pack.js +65 -0
  116. package/lib/phase_6_gate_pack.js +59 -0
  117. package/lib/phase_6_langchain_runtime_pack.js +72 -0
  118. package/lib/phase_6_langgraph_runtime_pack.js +72 -0
  119. package/lib/phase_6_semantic_kernel_runtime_pack.js +72 -0
  120. package/lib/phase_7_closeout_pack.js +45 -0
  121. package/lib/phase_7_completion_pack.js +85 -0
  122. package/lib/phase_7_decision_record_pack.js +53 -0
  123. package/lib/phase_7_decision_resolution_pack.js +53 -0
  124. package/lib/phase_7_event_system_continuity_pack.js +89 -0
  125. package/lib/phase_7_event_system_pack.js +76 -0
  126. package/lib/phase_7_freeze_baseline_pack.js +74 -0
  127. package/lib/phase_7_freeze_review_pack.js +65 -0
  128. package/lib/phase_7_gate_pack.js +58 -0
  129. package/lib/phase_7_kafka_runtime_pack.js +74 -0
  130. package/lib/phase_7_mqtt_runtime_pack.js +74 -0
  131. package/lib/phase_7_nats_runtime_pack.js +74 -0
  132. package/lib/phase_7_webhook_event_bus_runtime_pack.js +74 -0
  133. package/lib/phase_8_closeout_pack.js +46 -0
  134. package/lib/phase_8_completion_pack.js +82 -0
  135. package/lib/phase_8_decision_record_pack.js +54 -0
  136. package/lib/phase_8_decision_resolution_pack.js +53 -0
  137. package/lib/phase_8_external_receipt_import_runtime_pack.js +74 -0
  138. package/lib/phase_8_external_result_import_runtime_pack.js +74 -0
  139. package/lib/phase_8_freeze_baseline_pack.js +71 -0
  140. package/lib/phase_8_freeze_review_pack.js +64 -0
  141. package/lib/phase_8_gate_pack.js +58 -0
  142. package/lib/phase_8_proof_bridge_continuity_pack.js +86 -0
  143. package/lib/phase_8_proof_bridges_pack.js +72 -0
  144. package/lib/phase_8_proof_bundle_normalization_runtime_pack.js +74 -0
  145. package/lib/phase_9_closeout_pack.js +46 -0
  146. package/lib/phase_9_completion_pack.js +82 -0
  147. package/lib/phase_9_custody_refs_runtime_pack.js +74 -0
  148. package/lib/phase_9_decision_record_pack.js +54 -0
  149. package/lib/phase_9_decision_resolution_pack.js +53 -0
  150. package/lib/phase_9_freeze_baseline_pack.js +71 -0
  151. package/lib/phase_9_freeze_review_pack.js +64 -0
  152. package/lib/phase_9_gate_pack.js +58 -0
  153. package/lib/phase_9_operator_accounting_bridges_runtime_pack.js +74 -0
  154. package/lib/phase_9_treasury_connectivity_pack.js +72 -0
  155. package/lib/phase_9_treasury_continuity_pack.js +86 -0
  156. package/lib/phase_9_treasury_destinations_runtime_pack.js +74 -0
  157. package/lib/phase_program_pack.js +120 -0
  158. package/lib/release_center.js +970 -0
  159. package/lib/release_history.js +1 -1
  160. package/lib/runtime_state_store.js +212 -27
  161. package/lib/soft_launch_pack.js +78 -0
  162. package/package.json +13 -1
  163. package/server.js +2110 -235
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase6FreezeBaselinePack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-6-freeze-baseline-pack",
10
+ phase_ref: "phase_6",
11
+ posture: "frozen_baseline",
12
+ baseline: {
13
+ lane_refs: [
14
+ "/v1/phases/phase-6/langgraph/summary",
15
+ "/v1/phases/phase-6/langchain/summary",
16
+ "/v1/phases/phase-6/autogen/summary",
17
+ "/v1/phases/phase-6/semantic-kernel/summary"
18
+ ],
19
+ runtime_modes: ["graph_orchestration", "tool_runtime_bridge", "stateful_execution_carry"],
20
+ framework_modes: ["graph_runtime", "chain_runtime", "multi_agent_runtime", "planner_plugin_runtime"],
21
+ baseline_status: "recorded",
22
+ frozen_outputs: [
23
+ "current framework lane family is the recorded Phase 6 baseline",
24
+ "framework family can now be judged against a stable shape rather than an open expansion set",
25
+ "only the final gate review remains before Phase 7"
26
+ ]
27
+ },
28
+ first_path: {
29
+ purpose: "show that the Phase 6 framework lane family is now treated as a frozen baseline",
30
+ first_http_sequence: [
31
+ "/v1/phases/phase-6/summary",
32
+ "/v1/phases/phase-6/freeze-baseline/summary",
33
+ "/v1/phases/phase-6/gate/summary"
34
+ ],
35
+ first_cli_sequence: [
36
+ "xytara-release --phase-6-freeze-baseline --summary",
37
+ "xytara-release --phase-6 --summary"
38
+ ],
39
+ expected_signals: [
40
+ "the framework lane family is now explicitly frozen",
41
+ "lane freeze is no longer part of the remaining Phase 6 uncertainty",
42
+ "the final open work is narrowed to gate review rather than shape definition"
43
+ ]
44
+ }
45
+ };
46
+ }
47
+
48
+ function summarizePhase6FreezeBaselinePack() {
49
+ const pack = buildPhase6FreezeBaselinePack();
50
+ return {
51
+ ok: true,
52
+ product: pack.product,
53
+ category: pack.category,
54
+ phase_ref: pack.phase_ref,
55
+ lane_count: pack.baseline.lane_refs.length,
56
+ runtime_mode_count: pack.baseline.runtime_modes.length,
57
+ framework_mode_count: pack.baseline.framework_modes.length,
58
+ baseline_status: pack.baseline.baseline_status,
59
+ frozen_output_count: pack.baseline.frozen_outputs.length,
60
+ signal_count: pack.first_path.expected_signals.length,
61
+ first_http_step: pack.first_path.first_http_sequence[0] || null
62
+ };
63
+ }
64
+
65
+ module.exports = {
66
+ buildPhase6FreezeBaselinePack,
67
+ summarizePhase6FreezeBaselinePack
68
+ };
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase6FreezeReviewPack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-6-freeze-review-pack",
10
+ phase_ref: "phase_6",
11
+ posture: "freeze_review",
12
+ freeze_review: {
13
+ lane_refs: [
14
+ "/v1/phases/phase-6/langgraph/summary",
15
+ "/v1/phases/phase-6/langchain/summary",
16
+ "/v1/phases/phase-6/autogen/summary",
17
+ "/v1/phases/phase-6/semantic-kernel/summary"
18
+ ],
19
+ runtime_modes: ["graph_orchestration", "tool_runtime_bridge", "stateful_execution_carry"],
20
+ review_questions: [
21
+ "Is the current framework lane family the intended final Phase 6 breadth?",
22
+ "Are runtime roles coherent across graph, chain, multi-agent, and planner/plugin lanes?",
23
+ "Do operator surfaces expose enough review posture for the framework family?",
24
+ "Is the family ready to freeze before opening Phase 7?"
25
+ ],
26
+ resolution_criteria: [
27
+ { ref: "criterion.framework_breadth_confirmed", label: "The final framework lane breadth is confirmed", satisfied: true },
28
+ { ref: "criterion.runtime_roles_confirmed", label: "Runtime roles are coherent across the family", satisfied: true },
29
+ { ref: "criterion.freeze_decision_recorded", label: "The freeze decision is explicitly recorded", satisfied: true },
30
+ { ref: "criterion.gate_review_recorded", label: "The next-phase gate review is explicitly recorded", satisfied: true }
31
+ ],
32
+ blockers: [],
33
+ outputs: [
34
+ "the final Phase 6 framework lane shape is frozen",
35
+ "the remaining gate blockers are explicit and inspectable",
36
+ "Phase 6 can be closed deliberately rather than implicitly"
37
+ ],
38
+ decision_posture: "freeze_review_recorded"
39
+ }
40
+ };
41
+ }
42
+
43
+ function summarizePhase6FreezeReviewPack() {
44
+ const pack = buildPhase6FreezeReviewPack();
45
+ return {
46
+ ok: true,
47
+ product: pack.product,
48
+ category: pack.category,
49
+ phase_ref: pack.phase_ref,
50
+ lane_count: pack.freeze_review.lane_refs.length,
51
+ runtime_mode_count: pack.freeze_review.runtime_modes.length,
52
+ review_question_count: pack.freeze_review.review_questions.length,
53
+ resolution_criteria_count: pack.freeze_review.resolution_criteria.length,
54
+ satisfied_resolution_count: pack.freeze_review.resolution_criteria.filter((criterion) => criterion.satisfied === true).length,
55
+ unsatisfied_resolution_count: pack.freeze_review.resolution_criteria.filter((criterion) => criterion.satisfied !== true).length,
56
+ blocker_count: pack.freeze_review.blockers.length,
57
+ freeze_output_count: pack.freeze_review.outputs.length,
58
+ decision_posture: pack.freeze_review.decision_posture
59
+ };
60
+ }
61
+
62
+ module.exports = {
63
+ buildPhase6FreezeReviewPack,
64
+ summarizePhase6FreezeReviewPack
65
+ };
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+ const { summarizePhase6CompletionPack } = require("./phase_6_completion_pack");
5
+ const { summarizePhase6FreezeReviewPack } = require("./phase_6_freeze_review_pack");
6
+
7
+ function buildPhase6GatePack() {
8
+ const completion = summarizePhase6CompletionPack();
9
+ const freezeReview = summarizePhase6FreezeReviewPack();
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-6-gate-pack",
18
+ phase_ref: "phase_6",
19
+ posture: "phase_gate",
20
+ gate: {
21
+ decision: unsatisfiedGateCount === 0 ? "ready_for_phase_7" : "hold_phase_6",
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
+ "freeze decision has not been explicitly recorded",
29
+ "next-phase gate review has not been explicitly recorded"
30
+ ],
31
+ advance_when: [
32
+ "freeze decision is explicitly recorded",
33
+ "gate review is explicitly recorded",
34
+ "completion and freeze-review surfaces both show no unsatisfied gate criteria"
35
+ ]
36
+ }
37
+ };
38
+ }
39
+
40
+ function summarizePhase6GatePack() {
41
+ const pack = buildPhase6GatePack();
42
+ return {
43
+ ok: true,
44
+ product: pack.product,
45
+ category: pack.category,
46
+ phase_ref: pack.phase_ref,
47
+ satisfied_gate_count: pack.gate.satisfied_gate_count,
48
+ unsatisfied_gate_count: pack.gate.unsatisfied_gate_count,
49
+ blocker_count: pack.gate.blockers.length,
50
+ advance_when_count: pack.gate.advance_when.length,
51
+ decision: pack.gate.decision,
52
+ ready_for_next_phase: pack.gate.ready_for_next_phase
53
+ };
54
+ }
55
+
56
+ module.exports = {
57
+ buildPhase6GatePack,
58
+ summarizePhase6GatePack
59
+ };
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase6LangchainRuntimePack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-6-langchain-runtime-pack",
10
+ phase_ref: "phase_6",
11
+ ecosystem_refs: ["langchain"],
12
+ posture: "runtime_path",
13
+ runtime_shape: {
14
+ runtime_modes: ["chain_orchestration", "tool_call_bridge", "context_state_carry"],
15
+ runtime_artifacts: ["chain_ref", "tool_trace_ref", "context_ref"],
16
+ operator_surfaces: [
17
+ "/v1/release-center/summary",
18
+ "/v1/publish-plan/summary",
19
+ "/v1/phases/phase-6/summary"
20
+ ]
21
+ },
22
+ completion_shape: {
23
+ completion_checks: [
24
+ "the LangChain runtime lane is public and inspectable",
25
+ "runtime and chain posture stay attached to the lane",
26
+ "operator surfaces remain available for runtime review",
27
+ "Phase 6 shows breadth beyond the first framework lane"
28
+ ]
29
+ },
30
+ first_path: {
31
+ purpose: "show an explicit chain-oriented runtime lane for framework-linked orchestration and state carry",
32
+ first_http_sequence: [
33
+ "/v1/phases/phase-6/summary",
34
+ "/v1/release-center/summary",
35
+ "/v1/publish-plan/summary"
36
+ ],
37
+ first_cli_sequence: [
38
+ "xytara-release --phase-6-langchain-runtime --summary",
39
+ "xytara-release --phase-6 --summary"
40
+ ],
41
+ expected_signals: [
42
+ "LangChain is visible as a concrete Phase 6 framework lane",
43
+ "runtime and chain posture are inspectable from a stable route",
44
+ "Phase 6 now reads as a framework family rather than a single-lane slice"
45
+ ]
46
+ }
47
+ };
48
+ }
49
+
50
+ function summarizePhase6LangchainRuntimePack() {
51
+ const pack = buildPhase6LangchainRuntimePack();
52
+ return {
53
+ ok: true,
54
+ product: pack.product,
55
+ category: pack.category,
56
+ phase_ref: pack.phase_ref,
57
+ ecosystem_count: pack.ecosystem_refs.length,
58
+ runtime_mode_count: pack.runtime_shape.runtime_modes.length,
59
+ runtime_artifact_count: pack.runtime_shape.runtime_artifacts.length,
60
+ completion_check_count: pack.completion_shape.completion_checks.length,
61
+ http_step_count: pack.first_path.first_http_sequence.length,
62
+ cli_step_count: pack.first_path.first_cli_sequence.length,
63
+ signal_count: pack.first_path.expected_signals.length,
64
+ operator_surface_count: pack.runtime_shape.operator_surfaces.length,
65
+ first_http_step: pack.first_path.first_http_sequence[0] || null
66
+ };
67
+ }
68
+
69
+ module.exports = {
70
+ buildPhase6LangchainRuntimePack,
71
+ summarizePhase6LangchainRuntimePack
72
+ };
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase6LanggraphRuntimePack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-6-langgraph-runtime-pack",
10
+ phase_ref: "phase_6",
11
+ ecosystem_refs: ["langgraph"],
12
+ posture: "runtime_path",
13
+ runtime_shape: {
14
+ runtime_modes: ["graph_orchestration", "node_execution_bridge", "state_checkpoint_carry"],
15
+ runtime_artifacts: ["graph_ref", "node_ref", "checkpoint_ref"],
16
+ operator_surfaces: [
17
+ "/v1/release-center/summary",
18
+ "/v1/publish-plan/summary",
19
+ "/v1/phases/phase-6/summary"
20
+ ]
21
+ },
22
+ completion_shape: {
23
+ completion_checks: [
24
+ "the LangGraph runtime lane is public and inspectable",
25
+ "runtime and orchestration posture stay attached to the lane",
26
+ "operator surfaces remain available for runtime review",
27
+ "Phase 6 begins from explicit framework/runtime legibility"
28
+ ]
29
+ },
30
+ first_path: {
31
+ purpose: "show the first public framework lane for graph-linked orchestration and runtime carry",
32
+ first_http_sequence: [
33
+ "/v1/phases/phase-6/summary",
34
+ "/v1/release-center/summary",
35
+ "/v1/publish-plan/summary"
36
+ ],
37
+ first_cli_sequence: [
38
+ "xytara-release --phase-6-langgraph-runtime --summary",
39
+ "xytara-release --phase-6 --summary"
40
+ ],
41
+ expected_signals: [
42
+ "LangGraph is visible as the first concrete Phase 6 framework lane",
43
+ "runtime and orchestration posture are inspectable from a stable route",
44
+ "Phase 6 starts from framework clarity rather than generic adapter naming"
45
+ ]
46
+ }
47
+ };
48
+ }
49
+
50
+ function summarizePhase6LanggraphRuntimePack() {
51
+ const pack = buildPhase6LanggraphRuntimePack();
52
+ return {
53
+ ok: true,
54
+ product: pack.product,
55
+ category: pack.category,
56
+ phase_ref: pack.phase_ref,
57
+ ecosystem_count: pack.ecosystem_refs.length,
58
+ runtime_mode_count: pack.runtime_shape.runtime_modes.length,
59
+ runtime_artifact_count: pack.runtime_shape.runtime_artifacts.length,
60
+ completion_check_count: pack.completion_shape.completion_checks.length,
61
+ http_step_count: pack.first_path.first_http_sequence.length,
62
+ cli_step_count: pack.first_path.first_cli_sequence.length,
63
+ signal_count: pack.first_path.expected_signals.length,
64
+ operator_surface_count: pack.runtime_shape.operator_surfaces.length,
65
+ first_http_step: pack.first_path.first_http_sequence[0] || null
66
+ };
67
+ }
68
+
69
+ module.exports = {
70
+ buildPhase6LanggraphRuntimePack,
71
+ summarizePhase6LanggraphRuntimePack
72
+ };
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase6SemanticKernelRuntimePack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-6-semantic-kernel-runtime-pack",
10
+ phase_ref: "phase_6",
11
+ ecosystem_refs: ["semantic_kernel"],
12
+ posture: "runtime_path",
13
+ runtime_shape: {
14
+ runtime_modes: ["planner_runtime_bridge", "plugin_execution_bridge", "memory_state_carry"],
15
+ runtime_artifacts: ["planner_ref", "plugin_ref", "memory_ref"],
16
+ operator_surfaces: [
17
+ "/v1/release-center/summary",
18
+ "/v1/publish-plan/summary",
19
+ "/v1/phases/phase-6/summary"
20
+ ]
21
+ },
22
+ completion_shape: {
23
+ completion_checks: [
24
+ "the Semantic Kernel runtime lane is public and inspectable",
25
+ "planner and plugin runtime posture stay attached to the lane",
26
+ "operator surfaces remain available for runtime review",
27
+ "Phase 6 shows explicit plugin-oriented runtime coverage"
28
+ ]
29
+ },
30
+ first_path: {
31
+ purpose: "show an explicit planner-and-plugin runtime lane for framework-linked execution and memory carry",
32
+ first_http_sequence: [
33
+ "/v1/phases/phase-6/summary",
34
+ "/v1/release-center/summary",
35
+ "/v1/publish-plan/summary"
36
+ ],
37
+ first_cli_sequence: [
38
+ "xytara-release --phase-6-semantic-kernel-runtime --summary",
39
+ "xytara-release --phase-6 --summary"
40
+ ],
41
+ expected_signals: [
42
+ "Semantic Kernel is visible as a concrete Phase 6 framework lane",
43
+ "planner and plugin runtime posture are inspectable from a stable route",
44
+ "Phase 6 now spans the intended framework/runtime family breadth"
45
+ ]
46
+ }
47
+ };
48
+ }
49
+
50
+ function summarizePhase6SemanticKernelRuntimePack() {
51
+ const pack = buildPhase6SemanticKernelRuntimePack();
52
+ return {
53
+ ok: true,
54
+ product: pack.product,
55
+ category: pack.category,
56
+ phase_ref: pack.phase_ref,
57
+ ecosystem_count: pack.ecosystem_refs.length,
58
+ runtime_mode_count: pack.runtime_shape.runtime_modes.length,
59
+ runtime_artifact_count: pack.runtime_shape.runtime_artifacts.length,
60
+ completion_check_count: pack.completion_shape.completion_checks.length,
61
+ http_step_count: pack.first_path.first_http_sequence.length,
62
+ cli_step_count: pack.first_path.first_cli_sequence.length,
63
+ signal_count: pack.first_path.expected_signals.length,
64
+ operator_surface_count: pack.runtime_shape.operator_surfaces.length,
65
+ first_http_step: pack.first_path.first_http_sequence[0] || null
66
+ };
67
+ }
68
+
69
+ module.exports = {
70
+ buildPhase6SemanticKernelRuntimePack,
71
+ summarizePhase6SemanticKernelRuntimePack
72
+ };
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase7CloseoutPack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-7-closeout-pack",
10
+ phase_ref: "phase_7",
11
+ posture: "closeout_plan",
12
+ current_decision: "ready_for_phase_8",
13
+ blocking_actions: [],
14
+ action_steps: [
15
+ "confirm the recorded freeze baseline still matches the intended final Phase 7 shape",
16
+ "record the gate review outcome",
17
+ "recheck phase-7 gate summary for zero unsatisfied conditions",
18
+ "advance only once phase-7 gate resolves to ready_for_phase_8"
19
+ ],
20
+ completion_signals: [
21
+ "phase-7 completion shows no remaining focus",
22
+ "phase-7 decision record shows no pending records",
23
+ "phase-7 gate resolves to ready_for_phase_8"
24
+ ]
25
+ };
26
+ }
27
+
28
+ function summarizePhase7CloseoutPack() {
29
+ const pack = buildPhase7CloseoutPack();
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
+ buildPhase7CloseoutPack,
44
+ summarizePhase7CloseoutPack
45
+ };
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase7CompletionPack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-7-completion-pack",
10
+ phase_ref: "phase_7",
11
+ posture: "completion_review",
12
+ coverage: {
13
+ ecosystem_refs: ["kafka", "nats", "mqtt", "webhook_event_bus"],
14
+ lane_refs: [
15
+ "/v1/phases/phase-7/kafka/summary",
16
+ "/v1/phases/phase-7/nats/summary",
17
+ "/v1/phases/phase-7/mqtt/summary",
18
+ "/v1/phases/phase-7/webhook-event-bus/summary"
19
+ ],
20
+ event_modes: ["topic_stream_ingest", "durable_queue_handoff", "system_event_normalization"],
21
+ event_system_modes: ["stream_backbone", "broker_mesh", "device_event_bus", "edge_callback_handoff"],
22
+ stream_modes: ["partitioned_topic_flow", "consumer_group_flow", "offset_checkpoint_flow"],
23
+ subject_modes: ["subject_mesh_flow", "queue_group_flow", "ack_commit_flow"],
24
+ qos_modes: ["device_session_flow", "qos_delivery_flow", "retained_state_flow"],
25
+ callback_modes: ["signed_callback_flow", "retry_schedule_flow", "endpoint_contract_flow"],
26
+ event_artifacts: ["topic_ref", "consumer_ref", "offset_ref", "delivery_ref"],
27
+ operator_surfaces: [
28
+ "/v1/release-center/summary",
29
+ "/v1/publish-plan/summary",
30
+ "/v1/phases/phase-7/event-system-continuity/summary"
31
+ ]
32
+ },
33
+ completion: {
34
+ checks: [
35
+ "broad Phase 7 event-system pack is public and inspectable",
36
+ "all current Phase 7 event-system lanes are public and inspectable",
37
+ "event posture is visible at phase level",
38
+ "event-system continuity is explicit across the lane family",
39
+ "release-center summary reflects Phase 7 breadth and lane coverage",
40
+ "Phase 7 closure criteria are explicit before opening Phase 8"
41
+ ],
42
+ readiness_criteria: [
43
+ { ref: "criterion.phase_surface_public", label: "Phase 7 broad summary is live and inspectable", satisfied: true },
44
+ { ref: "criterion.event_lane_coverage", label: "All current event-system lanes are live and inspectable", satisfied: true },
45
+ { ref: "criterion.event_continuity_visible", label: "Event-system continuity is visible at phase level", satisfied: true },
46
+ { ref: "criterion.operator_surfaces_attached", label: "Operator surfaces remain attached to the event-system family", satisfied: true },
47
+ { ref: "criterion.freeze_shape_confirmed", label: "The final Phase 7 event-system lane shape is explicitly frozen", satisfied: true },
48
+ { ref: "criterion.next_phase_gate_reviewed", label: "A final freeze review has been recorded before opening Phase 8", satisfied: true }
49
+ ],
50
+ ready_for_next_phase: true,
51
+ remaining_focus: []
52
+ }
53
+ };
54
+ }
55
+
56
+ function summarizePhase7CompletionPack() {
57
+ const pack = buildPhase7CompletionPack();
58
+ return {
59
+ ok: true,
60
+ product: pack.product,
61
+ category: pack.category,
62
+ phase_ref: pack.phase_ref,
63
+ ecosystem_count: pack.coverage.ecosystem_refs.length,
64
+ lane_count: pack.coverage.lane_refs.length,
65
+ event_mode_count: pack.coverage.event_modes.length,
66
+ event_system_mode_count: pack.coverage.event_system_modes.length,
67
+ stream_mode_count: pack.coverage.stream_modes.length,
68
+ subject_mode_count: pack.coverage.subject_modes.length,
69
+ qos_mode_count: pack.coverage.qos_modes.length,
70
+ callback_mode_count: pack.coverage.callback_modes.length,
71
+ event_artifact_count: pack.coverage.event_artifacts.length,
72
+ operator_surface_count: pack.coverage.operator_surfaces.length,
73
+ completion_check_count: pack.completion.checks.length,
74
+ readiness_criteria_count: pack.completion.readiness_criteria.length,
75
+ satisfied_criteria_count: pack.completion.readiness_criteria.filter((criterion) => criterion.satisfied === true).length,
76
+ unsatisfied_criteria_count: pack.completion.readiness_criteria.filter((criterion) => criterion.satisfied !== true).length,
77
+ remaining_focus_count: pack.completion.remaining_focus.length,
78
+ ready_for_next_phase: pack.completion.ready_for_next_phase
79
+ };
80
+ }
81
+
82
+ module.exports = {
83
+ buildPhase7CompletionPack,
84
+ summarizePhase7CompletionPack
85
+ };
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase7DecisionRecordPack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-7-decision-record-pack",
10
+ phase_ref: "phase_7",
11
+ posture: "decision_record",
12
+ records: {
13
+ freeze_decision: {
14
+ status: "recorded",
15
+ description: "record the final event-system lane shape as the frozen Phase 7 baseline"
16
+ },
17
+ gate_review: {
18
+ status: "recorded",
19
+ description: "record the final review that authorizes the move to Phase 8"
20
+ }
21
+ },
22
+ record_steps: [
23
+ "confirm the recorded freeze baseline still matches the intended final Phase 7 shape",
24
+ "record the gate review outcome",
25
+ "recheck phase-7 gate summary for zero unsatisfied conditions"
26
+ ],
27
+ outputs: [
28
+ "freeze decision status moves out of pending_record",
29
+ "gate review status moves out of pending_record",
30
+ "phase-7 gate can be flipped deliberately"
31
+ ]
32
+ };
33
+ }
34
+
35
+ function summarizePhase7DecisionRecordPack() {
36
+ const pack = buildPhase7DecisionRecordPack();
37
+ return {
38
+ ok: true,
39
+ product: pack.product,
40
+ category: pack.category,
41
+ phase_ref: pack.phase_ref,
42
+ pending_record_count: Object.values(pack.records).filter((record) => record.status === "pending_record").length,
43
+ record_step_count: pack.record_steps.length,
44
+ output_count: pack.outputs.length,
45
+ freeze_decision_status: pack.records.freeze_decision.status,
46
+ gate_review_status: pack.records.gate_review.status
47
+ };
48
+ }
49
+
50
+ module.exports = {
51
+ buildPhase7DecisionRecordPack,
52
+ summarizePhase7DecisionRecordPack
53
+ };
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+
3
+ const packageJson = require("../package.json");
4
+
5
+ function buildPhase7DecisionResolutionPack() {
6
+ return {
7
+ ok: true,
8
+ product: packageJson.name,
9
+ category: "machine-commerce-phase-7-decision-resolution-pack",
10
+ phase_ref: "phase_7",
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 event-system lane family is the intended final Phase 7 shape",
26
+ "record the freeze decision outcome",
27
+ "record the gate review outcome",
28
+ "recheck phase-7 completion and freeze-review summaries",
29
+ "confirm phase-7 gate resolves to ready_for_phase_8"
30
+ ],
31
+ target_gate_decision: "ready_for_phase_8",
32
+ target_ready_for_next_phase: true
33
+ };
34
+ }
35
+
36
+ function summarizePhase7DecisionResolutionPack() {
37
+ const pack = buildPhase7DecisionResolutionPack();
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
+ buildPhase7DecisionResolutionPack,
52
+ summarizePhase7DecisionResolutionPack
53
+ };