You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simplify MCP tools permission prompt copy
The dialog explaining each MCP tool request was verbose: a two-clause
description plus a full-sentence explanation of each of the three
buttons. Trim it to short, scannable copy that states what YakShaver
wants and why, and makes clear what happens if you don't allow it,
matching the terser tone used elsewhere (e.g. the screen recording
permission dialog).
Relates to #968
Co-authored-by: armada-lookout <armada-lookout@users.noreply.github.com>
return"YakShaver wants to capture a still frame from your screen recording so it can see what you're pointing at and keep working on your task accurately. It only runs when you say it's OK.";
55
+
return"YakShaver wants to grab a frame from your recording, so it can see what you're pointing at.";
? `To keep working on your task, YakShaver needs to use the "${readableToolInfo.tool}" tool (from ${readableToolInfo.server}). It only runs when you say it's OK.`
170
-
: `To keep working on your task, YakShaver needs to perform an action. It only runs when you say it's OK.`);
170
+
? `YakShaver needs to use "${readableToolInfo.tool}" (from ${readableToolInfo.server}) to keep going.`
171
+
: `YakShaver needs to perform an action to keep going.`);
0 commit comments