@productbrain/mcp 0.0.1-beta.2160 → 0.0.1-beta.2162
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.
|
@@ -3304,6 +3304,12 @@ No DB writes \u2014 call without \`preview:true\` to accept for real.` }],
|
|
|
3304
3304
|
`**${entry.name}** promoted to SSOT on the Chain.`,
|
|
3305
3305
|
`**Workspace:** ${wsCtx.workspaceSlug} (${wsCtx.workspaceId})`
|
|
3306
3306
|
];
|
|
3307
|
+
const autoVerified = result?.autoVerified;
|
|
3308
|
+
if (autoVerified?.strength) {
|
|
3309
|
+
const who = autoVerified.verifiedBy ? ` (${autoVerified.verifiedBy})` : "";
|
|
3310
|
+
lines.push("");
|
|
3311
|
+
lines.push(`_Auto-verified as part of promote \u2014 ${autoVerified.strength}${who}._`);
|
|
3312
|
+
}
|
|
3307
3313
|
}
|
|
3308
3314
|
if (advisoryWarnings.length > 0) {
|
|
3309
3315
|
lines.push("");
|
|
@@ -3398,7 +3404,10 @@ No DB writes \u2014 call without \`preview:true\` to accept for real.` }],
|
|
|
3398
3404
|
source: coachingResult?.source ?? void 0,
|
|
3399
3405
|
contradictions: advisoryWarnings.length,
|
|
3400
3406
|
...epistemic ? { epistemicStatus: epistemic } : {},
|
|
3401
|
-
...steeringAdvisory ? { steeringAdvisory } : {}
|
|
3407
|
+
...steeringAdvisory ? { steeringAdvisory } : {},
|
|
3408
|
+
// WP-B (attestation spec §4.3): mirror the auto-verify receipt into the
|
|
3409
|
+
// structured payload so --json/agent consumers see it too.
|
|
3410
|
+
...result?.autoVerified ? { autoVerified: result.autoVerified } : {}
|
|
3402
3411
|
},
|
|
3403
3412
|
next
|
|
3404
3413
|
);
|
|
@@ -14718,4 +14727,4 @@ export {
|
|
|
14718
14727
|
createProductBrainServer,
|
|
14719
14728
|
initFeatureFlags
|
|
14720
14729
|
};
|
|
14721
|
-
//# sourceMappingURL=chunk-
|
|
14730
|
+
//# sourceMappingURL=chunk-DAQYIF5L.js.map
|