@debugg-ai/debugg-ai-mcp 3.9.3 → 3.10.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.
|
@@ -721,6 +721,11 @@ async function testPageChangesHandlerInner(input, context, rawProgressCallback)
|
|
|
721
721
|
// bug. Relay the logins verbatim, and when the caller named an account but
|
|
722
722
|
// an environment default was used anyway, say so explicitly rather than
|
|
723
723
|
// leaving the caller to infer it from a failed check.
|
|
724
|
+
// For "navigate and describe what you see", the answer IS the deliverable —
|
|
725
|
+
// and it reached callers only incidentally, buried in actionTrace[0].intent,
|
|
726
|
+
// which the verify-gate rewrites when it disagrees with the page. Surface it.
|
|
727
|
+
if (verdict.report)
|
|
728
|
+
responsePayload.report = verdict.report;
|
|
724
729
|
if (verdict.logins)
|
|
725
730
|
responsePayload.logins = verdict.logins;
|
|
726
731
|
if (verdict.loginError)
|
|
@@ -80,5 +80,7 @@ export function adaptVerdict(execution, opts = {}) {
|
|
|
80
80
|
if (evidence?.loginError && typeof evidence.loginError === 'object') {
|
|
81
81
|
relay.loginError = evidence.loginError;
|
|
82
82
|
}
|
|
83
|
+
if (typeof evidence?.report === 'string' && evidence.report)
|
|
84
|
+
relay.report = evidence.report;
|
|
83
85
|
return relay;
|
|
84
86
|
}
|