@productbrain/mcp 0.0.1-beta.3439 → 0.0.1-beta.3449
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.
|
@@ -8524,6 +8524,7 @@ function buildRitualsSurfaceLines(view, opts) {
|
|
|
8524
8524
|
lines.push(view?.directionLine ?? "Direction: not computed yet \u2014 `pb direction refresh`");
|
|
8525
8525
|
if (view?.verdictAskLine) lines.push(view.verdictAskLine);
|
|
8526
8526
|
lines.push(view?.spineLine ?? "Spine check: not computed yet \u2014 `pb quality spine-check`");
|
|
8527
|
+
if (view?.atCapLine) lines.push(view.atCapLine);
|
|
8527
8528
|
return lines;
|
|
8528
8529
|
}
|
|
8529
8530
|
async function buildAlreadyOrientedResult(kernelQuery2, agentSessionId, taskGroundingWarningLines2) {
|
|
@@ -9327,6 +9328,7 @@ async function _handleOrient({ mode = "full", tier, task, scope, startupSignals,
|
|
|
9327
9328
|
"",
|
|
9328
9329
|
"Or tell me about your product and I'll start capturing knowledge directly."
|
|
9329
9330
|
];
|
|
9331
|
+
scanLines.push(...buildRitualsSurfaceLines(orientView, { fetchFailed: orientFetchFailed }));
|
|
9330
9332
|
let oriented = false;
|
|
9331
9333
|
let orientationStatus2 = "no_session";
|
|
9332
9334
|
if (agentSessionId) {
|
|
@@ -11843,6 +11845,7 @@ async function handleSpineCheck(story, refresh = false) {
|
|
|
11843
11845
|
if (s.visionConnectedToPurpose === false) lines.push("No vision informs any purpose.");
|
|
11844
11846
|
if (s.visionPurposeConnectivityTruncated) lines.push("Vision\u2192purpose connectivity unknown (relation set truncated).");
|
|
11845
11847
|
if (verdict.strategiesTruncated) lines.push("Strategy set truncated \u2014 not every strategy was graded this pass.");
|
|
11848
|
+
if (verdict.perStrategyEvaluationTruncated) lines.push("Per-strategy evaluation stopped on the wall-clock budget \u2014 not every fetched strategy was graded this pass.");
|
|
11846
11849
|
if (verdict.perStrategy.length > 0) {
|
|
11847
11850
|
lines.push("", `Per-strategy refusal heuristic (${verdict.perStrategy.length}):`);
|
|
11848
11851
|
for (const p of verdict.perStrategy) {
|
|
@@ -11855,7 +11858,7 @@ async function handleSpineCheck(story, refresh = false) {
|
|
|
11855
11858
|
lines.push("", `One-story judgment [unvalidated, on-demand]: ${verdict.story.passed ? "PASS" : "FAIL"}`);
|
|
11856
11859
|
if (!verdict.story.passed && verdict.story.failedCriterion) lines.push(`Failed criterion: ${verdict.story.failedCriterion}`);
|
|
11857
11860
|
} else if (row.includesStoryPass) {
|
|
11858
|
-
lines.push("", "One-story judgment: requested, but the LLM pass did not return a usable result (timeout or parse failure).
|
|
11861
|
+
lines.push("", "One-story judgment: requested, but the LLM pass did not return a usable result (timeout or parse failure). Pass refresh:true to retry \u2014 a plain re-run will not reschedule it.");
|
|
11859
11862
|
} else {
|
|
11860
11863
|
lines.push("", "One-story judgment: not run this pass \u2014 pass story=true to run it.");
|
|
11861
11864
|
}
|
|
@@ -13170,7 +13173,9 @@ async function handleClose() {
|
|
|
13170
13173
|
// genuine no-row arm.
|
|
13171
13174
|
...rituals?.directionLine !== void 0 ? { directionLine: rituals.directionLine } : {},
|
|
13172
13175
|
...rituals?.verdictAskLine !== void 0 ? { verdictAskLine: rituals.verdictAskLine } : {},
|
|
13173
|
-
...rituals?.spineLine !== void 0 ? { spineLine: rituals.spineLine } : {}
|
|
13176
|
+
...rituals?.spineLine !== void 0 ? { spineLine: rituals.spineLine } : {},
|
|
13177
|
+
...rituals?.atCapLine !== void 0 ? { atCapLine: rituals.atCapLine } : {}
|
|
13178
|
+
// D1 residue fix (named item c)
|
|
13174
13179
|
})
|
|
13175
13180
|
};
|
|
13176
13181
|
}
|
|
@@ -16461,4 +16466,4 @@ export {
|
|
|
16461
16466
|
createProductBrainServer,
|
|
16462
16467
|
initFeatureFlags
|
|
16463
16468
|
};
|
|
16464
|
-
//# sourceMappingURL=chunk-
|
|
16469
|
+
//# sourceMappingURL=chunk-N522WYJH.js.map
|