@productbrain/mcp 0.0.1-beta.4818 → 0.0.1-beta.4840
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.
|
@@ -8644,7 +8644,7 @@ function formatWorkstreamHealthLines(workstreams) {
|
|
|
8644
8644
|
if (!workstreams?.length) return [];
|
|
8645
8645
|
const lines = ["## Workstream Health", ""];
|
|
8646
8646
|
for (const ws of workstreams) {
|
|
8647
|
-
const betDetail = ws.activeBetNames?.length ? ws.activeBetNames.join(", ") : `${ws.
|
|
8647
|
+
const betDetail = ws.activeBetNames?.length ? ws.activeBetNames.join(", ") : `${ws.workPackageCount} work package(s)`;
|
|
8648
8648
|
lines.push(`- ${ws.name} \u2014 ${betDetail}`);
|
|
8649
8649
|
}
|
|
8650
8650
|
lines.push("");
|
|
@@ -9691,7 +9691,7 @@ async function _handleOrient({ mode = "full", tier, task, scope, startupSignals,
|
|
|
9691
9691
|
lines.push(`Playing field (${sc.playingFieldCount}): ${(sc.playingField ?? []).join(", ")}`);
|
|
9692
9692
|
}
|
|
9693
9693
|
const wpPlural = getCollectionLabel("work_package", "plural", vocabCtx);
|
|
9694
|
-
lines.push(`${sc.
|
|
9694
|
+
lines.push(`${sc.activeWorkPackageCount} active ${wpPlural}, ${sc.activeTensionCount} tension(s).`);
|
|
9695
9695
|
}
|
|
9696
9696
|
const briefStrategyHighlights = (orientView?.strategyHighlights ?? []).filter((e) => e != null && typeof e.name === "string" && e.name.length > 0);
|
|
9697
9697
|
if (briefStrategyHighlights.length > 0) {
|
|
@@ -9946,7 +9946,7 @@ async function _handleOrient({ mode = "full", tier, task, scope, startupSignals,
|
|
|
9946
9946
|
const currentWP = sc.currentWorkPackage;
|
|
9947
9947
|
const wpSingularFull = getCollectionLabel("work_package", "singular", vocabCtx);
|
|
9948
9948
|
const wpPluralFull = getCollectionLabel("work_package", "plural", vocabCtx);
|
|
9949
|
-
const betLine = currentWP ? `**Current ${wpSingularFull}:** ${currentWP}. ${sc.
|
|
9949
|
+
const betLine = currentWP ? `**Current ${wpSingularFull}:** ${currentWP}. ${sc.activeWorkPackageCount} active ${wpPluralFull}.` : `No active ${wpPluralFull}.`;
|
|
9950
9950
|
lines.push(`${betLine} ${sc.activeTensionCount} open tension(s).`);
|
|
9951
9951
|
lines.push("");
|
|
9952
9952
|
}
|
|
@@ -16577,4 +16577,4 @@ export {
|
|
|
16577
16577
|
createProductBrainServer,
|
|
16578
16578
|
initFeatureFlags
|
|
16579
16579
|
};
|
|
16580
|
-
//# sourceMappingURL=chunk-
|
|
16580
|
+
//# sourceMappingURL=chunk-U3LG62QG.js.map
|