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,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase6CompletionPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-6-completion-pack",
|
|
10
|
+
phase_ref: "phase_6",
|
|
11
|
+
posture: "completion_review",
|
|
12
|
+
coverage: {
|
|
13
|
+
ecosystem_refs: ["langgraph", "langchain", "autogen", "semantic_kernel"],
|
|
14
|
+
lane_refs: [
|
|
15
|
+
"/v1/phases/phase-6/langgraph/summary",
|
|
16
|
+
"/v1/phases/phase-6/langchain/summary",
|
|
17
|
+
"/v1/phases/phase-6/autogen/summary",
|
|
18
|
+
"/v1/phases/phase-6/semantic-kernel/summary"
|
|
19
|
+
],
|
|
20
|
+
runtime_modes: ["graph_orchestration", "tool_runtime_bridge", "stateful_execution_carry"],
|
|
21
|
+
framework_modes: ["graph_runtime", "chain_runtime", "multi_agent_runtime", "planner_plugin_runtime"],
|
|
22
|
+
runtime_artifacts: ["graph_ref", "tool_trace_ref", "agent_ref", "planner_ref"],
|
|
23
|
+
operator_surfaces: [
|
|
24
|
+
"/v1/release-center/summary",
|
|
25
|
+
"/v1/publish-plan/summary",
|
|
26
|
+
"/v1/phases/phase-6/framework-continuity/summary"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
completion: {
|
|
30
|
+
checks: [
|
|
31
|
+
"broad Phase 6 framework pack is public and inspectable",
|
|
32
|
+
"all current Phase 6 framework lanes are public and inspectable",
|
|
33
|
+
"runtime posture is visible at phase level",
|
|
34
|
+
"framework continuity is explicit across the lane family",
|
|
35
|
+
"release-center summary reflects Phase 6 breadth and lane coverage",
|
|
36
|
+
"Phase 6 closure criteria are explicit before opening Phase 7"
|
|
37
|
+
],
|
|
38
|
+
readiness_criteria: [
|
|
39
|
+
{ ref: "criterion.phase_surface_public", label: "Phase 6 broad summary is live and inspectable", satisfied: true },
|
|
40
|
+
{ ref: "criterion.framework_lane_coverage", label: "All current framework lanes are live and inspectable", satisfied: true },
|
|
41
|
+
{ ref: "criterion.framework_continuity_visible", label: "Framework continuity is visible at phase level", satisfied: true },
|
|
42
|
+
{ ref: "criterion.operator_surfaces_attached", label: "Operator surfaces remain attached to the framework family", satisfied: true },
|
|
43
|
+
{ ref: "criterion.freeze_shape_confirmed", label: "The final Phase 6 framework lane shape is explicitly frozen", satisfied: true },
|
|
44
|
+
{ ref: "criterion.next_phase_gate_reviewed", label: "A final freeze review has been recorded before opening Phase 7", satisfied: true }
|
|
45
|
+
],
|
|
46
|
+
ready_for_next_phase: true,
|
|
47
|
+
remaining_focus: []
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function summarizePhase6CompletionPack() {
|
|
53
|
+
const pack = buildPhase6CompletionPack();
|
|
54
|
+
return {
|
|
55
|
+
ok: true,
|
|
56
|
+
product: pack.product,
|
|
57
|
+
category: pack.category,
|
|
58
|
+
phase_ref: pack.phase_ref,
|
|
59
|
+
ecosystem_count: pack.coverage.ecosystem_refs.length,
|
|
60
|
+
lane_count: pack.coverage.lane_refs.length,
|
|
61
|
+
runtime_mode_count: pack.coverage.runtime_modes.length,
|
|
62
|
+
framework_mode_count: pack.coverage.framework_modes.length,
|
|
63
|
+
runtime_artifact_count: pack.coverage.runtime_artifacts.length,
|
|
64
|
+
operator_surface_count: pack.coverage.operator_surfaces.length,
|
|
65
|
+
completion_check_count: pack.completion.checks.length,
|
|
66
|
+
readiness_criteria_count: pack.completion.readiness_criteria.length,
|
|
67
|
+
satisfied_criteria_count: pack.completion.readiness_criteria.filter((criterion) => criterion.satisfied === true).length,
|
|
68
|
+
unsatisfied_criteria_count: pack.completion.readiness_criteria.filter((criterion) => criterion.satisfied !== true).length,
|
|
69
|
+
remaining_focus_count: pack.completion.remaining_focus.length,
|
|
70
|
+
ready_for_next_phase: pack.completion.ready_for_next_phase
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
module.exports = {
|
|
75
|
+
buildPhase6CompletionPack,
|
|
76
|
+
summarizePhase6CompletionPack
|
|
77
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase6DecisionRecordPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-6-decision-record-pack",
|
|
10
|
+
phase_ref: "phase_6",
|
|
11
|
+
posture: "decision_record",
|
|
12
|
+
records: {
|
|
13
|
+
freeze_decision: {
|
|
14
|
+
status: "recorded",
|
|
15
|
+
description: "record the final framework lane shape as the frozen Phase 6 baseline"
|
|
16
|
+
},
|
|
17
|
+
gate_review: {
|
|
18
|
+
status: "recorded",
|
|
19
|
+
description: "record the final review that authorizes the move to Phase 7"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
record_steps: [
|
|
23
|
+
"confirm the current framework lane family is the final Phase 6 shape",
|
|
24
|
+
"record the freeze decision outcome",
|
|
25
|
+
"record the gate review outcome",
|
|
26
|
+
"recheck phase-6 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-6 gate can be flipped deliberately"
|
|
32
|
+
]
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function summarizePhase6DecisionRecordPack() {
|
|
37
|
+
const pack = buildPhase6DecisionRecordPack();
|
|
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
|
+
buildPhase6DecisionRecordPack,
|
|
53
|
+
summarizePhase6DecisionRecordPack
|
|
54
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase6DecisionResolutionPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-6-decision-resolution-pack",
|
|
10
|
+
phase_ref: "phase_6",
|
|
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 framework lane family is the intended final Phase 6 shape",
|
|
26
|
+
"record the freeze decision outcome",
|
|
27
|
+
"record the gate review outcome",
|
|
28
|
+
"recheck phase-6 completion and freeze-review summaries",
|
|
29
|
+
"confirm phase-6 gate resolves to ready_for_phase_7"
|
|
30
|
+
],
|
|
31
|
+
target_gate_decision: "ready_for_phase_7",
|
|
32
|
+
target_ready_for_next_phase: true
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function summarizePhase6DecisionResolutionPack() {
|
|
37
|
+
const pack = buildPhase6DecisionResolutionPack();
|
|
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
|
+
buildPhase6DecisionResolutionPack,
|
|
52
|
+
summarizePhase6DecisionResolutionPack
|
|
53
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase6FrameworkContinuityPack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-6-framework-continuity-pack",
|
|
10
|
+
phase_ref: "phase_6",
|
|
11
|
+
posture: "continuity_review",
|
|
12
|
+
continuity: {
|
|
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
|
+
continuity_refs: ["/v1/phases/phase-6/summary"],
|
|
20
|
+
runtime_modes: ["graph_orchestration", "tool_runtime_bridge", "stateful_execution_carry"],
|
|
21
|
+
framework_modes: ["graph_runtime", "chain_runtime", "multi_agent_runtime", "planner_plugin_runtime"],
|
|
22
|
+
continuity_surfaces: [
|
|
23
|
+
"/v1/release-center/summary",
|
|
24
|
+
"/v1/publish-plan/summary",
|
|
25
|
+
"/v1/phases/phase-6/summary"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
completion_shape: {
|
|
29
|
+
completion_checks: [
|
|
30
|
+
"all current framework runtime lanes are public and inspectable",
|
|
31
|
+
"runtime posture is visible at phase level",
|
|
32
|
+
"cross-framework continuity is explicit across the Phase 6 lane family",
|
|
33
|
+
"release-center summary reflects the framework family as one coherent slice"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
first_path: {
|
|
37
|
+
purpose: "show that the framework family is coherent across runtime lanes rather than isolated summaries",
|
|
38
|
+
first_http_sequence: [
|
|
39
|
+
"/v1/phases/phase-6/summary",
|
|
40
|
+
"/v1/phases/phase-6/framework-continuity/summary",
|
|
41
|
+
"/v1/release-center/summary",
|
|
42
|
+
"/v1/publish-plan/summary"
|
|
43
|
+
],
|
|
44
|
+
first_cli_sequence: [
|
|
45
|
+
"xytara-release --phase-6-framework-continuity --summary",
|
|
46
|
+
"xytara-release --phase-6 --summary"
|
|
47
|
+
],
|
|
48
|
+
expected_signals: [
|
|
49
|
+
"LangGraph, LangChain, AutoGen, and Semantic Kernel are linked as one framework family",
|
|
50
|
+
"runtime roles are legible without collapsing into one lane",
|
|
51
|
+
"operator surfaces stay attached to the Phase 6 framework family",
|
|
52
|
+
"Phase 6 reads as one coherent framework/runtime slice"
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function summarizePhase6FrameworkContinuityPack() {
|
|
59
|
+
const pack = buildPhase6FrameworkContinuityPack();
|
|
60
|
+
return {
|
|
61
|
+
ok: true,
|
|
62
|
+
product: pack.product,
|
|
63
|
+
category: pack.category,
|
|
64
|
+
phase_ref: pack.phase_ref,
|
|
65
|
+
lane_count: pack.continuity.lane_refs.length,
|
|
66
|
+
continuity_ref_count: pack.continuity.continuity_refs.length,
|
|
67
|
+
runtime_mode_count: pack.continuity.runtime_modes.length,
|
|
68
|
+
framework_mode_count: pack.continuity.framework_modes.length,
|
|
69
|
+
continuity_surface_count: pack.continuity.continuity_surfaces.length,
|
|
70
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
71
|
+
http_step_count: pack.first_path.first_http_sequence.length,
|
|
72
|
+
cli_step_count: pack.first_path.first_cli_sequence.length,
|
|
73
|
+
signal_count: pack.first_path.expected_signals.length,
|
|
74
|
+
first_http_step: pack.first_path.first_http_sequence[0] || null
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
module.exports = {
|
|
79
|
+
buildPhase6FrameworkContinuityPack,
|
|
80
|
+
summarizePhase6FrameworkContinuityPack
|
|
81
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
|
|
5
|
+
function buildPhase6FrameworkRuntimePack() {
|
|
6
|
+
return {
|
|
7
|
+
ok: true,
|
|
8
|
+
product: packageJson.name,
|
|
9
|
+
category: "machine-commerce-phase-6-framework-runtime-pack",
|
|
10
|
+
phase_ref: "phase_6",
|
|
11
|
+
status: "active",
|
|
12
|
+
ecosystems: ["langgraph", "langchain", "autogen", "semantic_kernel"],
|
|
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_shape: {
|
|
20
|
+
runtime_modes: ["graph_orchestration", "tool_runtime_bridge", "stateful_execution_carry"],
|
|
21
|
+
operator_surfaces: [
|
|
22
|
+
"/v1/release-center/summary",
|
|
23
|
+
"/v1/publish-plan/summary",
|
|
24
|
+
"/v1/phases/phase-6/langgraph/summary",
|
|
25
|
+
"/v1/phases/phase-6/langchain/summary",
|
|
26
|
+
"/v1/phases/phase-6/autogen/summary",
|
|
27
|
+
"/v1/phases/phase-6/semantic-kernel/summary"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
completion_shape: {
|
|
31
|
+
completion_checks: [
|
|
32
|
+
"broad Phase 6 framework/runtime pack is public and inspectable",
|
|
33
|
+
"LangGraph, LangChain, AutoGen, and Semantic Kernel runtime lanes are public and inspectable",
|
|
34
|
+
"runtime posture is visible at phase level",
|
|
35
|
+
"operator surfaces stay attached to the Phase 6 framework family",
|
|
36
|
+
"release-center summary reflects Phase 6 activation and framework lane breadth"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
done_means: [
|
|
40
|
+
"Phase 5 is no longer the active program slice",
|
|
41
|
+
"Phase 6 has a public framework-facing entry path",
|
|
42
|
+
"LangGraph, LangChain, AutoGen, and Semantic Kernel are visible as explicit framework/runtime lanes",
|
|
43
|
+
"the framework family feels operational rather than like a placeholder"
|
|
44
|
+
]
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function summarizePhase6FrameworkRuntimePack() {
|
|
49
|
+
const pack = buildPhase6FrameworkRuntimePack();
|
|
50
|
+
return {
|
|
51
|
+
ok: true,
|
|
52
|
+
product: pack.product,
|
|
53
|
+
category: pack.category,
|
|
54
|
+
phase_ref: pack.phase_ref,
|
|
55
|
+
ecosystem_count: pack.ecosystems.length,
|
|
56
|
+
lane_count: pack.lane_refs.length,
|
|
57
|
+
runtime_mode_count: pack.runtime_shape.runtime_modes.length,
|
|
58
|
+
operator_surface_count: pack.runtime_shape.operator_surfaces.length,
|
|
59
|
+
completion_check_count: pack.completion_shape.completion_checks.length,
|
|
60
|
+
done_mean_count: pack.done_means.length,
|
|
61
|
+
first_ecosystem: pack.ecosystems[0] || null
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
module.exports = {
|
|
66
|
+
buildPhase6FrameworkRuntimePack,
|
|
67
|
+
summarizePhase6FrameworkRuntimePack
|
|
68
|
+
};
|
|
@@ -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
|
+
};
|