@productbrain/mcp 0.0.1-beta.4042 → 0.0.1-beta.4057
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.
|
@@ -10016,7 +10016,7 @@ async function _handleOrient({ mode = "full", tier, task, scope, startupSignals,
|
|
|
10016
10016
|
lines.push("## Strategy highlights");
|
|
10017
10017
|
lines.push("_One-sentence strategy, positioning, moat, business model, GTM \u2014 high-level strategic context._");
|
|
10018
10018
|
lines.push("");
|
|
10019
|
-
fullStrategyHighlights.forEach((e) => lines.push(fmt(e)));
|
|
10019
|
+
fullStrategyHighlights.forEach((e) => lines.push(fmt(e) + (e.preview ? ` \u2014 ${e.preview}` : "")));
|
|
10020
10020
|
lines.push("");
|
|
10021
10021
|
}
|
|
10022
10022
|
const fullPlayingField = orientView.playingField ?? [];
|
|
@@ -10229,7 +10229,9 @@ async function _handleOrient({ mode = "full", tier, task, scope, startupSignals,
|
|
|
10229
10229
|
...orientView?._budget ? { _budget: orientView._budget } : {},
|
|
10230
10230
|
// WP-560/TEN-2532 post-merge review (Codex P2): the rendered shape-advisory
|
|
10231
10231
|
// line must reach structuredContent too, not just the text.
|
|
10232
|
-
...orientView?.shapeAdvisorySummary ? { shapeAdvisorySummary: orientView.shapeAdvisorySummary } : {}
|
|
10232
|
+
...orientView?.shapeAdvisorySummary ? { shapeAdvisorySummary: orientView.shapeAdvisorySummary } : {},
|
|
10233
|
+
// WP-622 (Copilot review PR #601 P2): was dropped from the full-mode machine payload.
|
|
10234
|
+
...orientView?.strategyHighlights?.length ? { strategyHighlights: orientView.strategyHighlights } : {}
|
|
10233
10235
|
}
|
|
10234
10236
|
)
|
|
10235
10237
|
};
|
|
@@ -16716,4 +16718,4 @@ export {
|
|
|
16716
16718
|
createProductBrainServer,
|
|
16717
16719
|
initFeatureFlags
|
|
16718
16720
|
};
|
|
16719
|
-
//# sourceMappingURL=chunk-
|
|
16721
|
+
//# sourceMappingURL=chunk-4MILDGN5.js.map
|