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
refactor(shell): address review feedback on background-shell wording
- Replace hardcoded `italic` tab styling with a semantic `tab-unviewed`
Tailwind utility (styles.css) so the intent — an unviewed tab — is named.
- Reword the auto-close prompt buttons: "Keep open" -> "Do not close",
"Close when done" -> "Close if successful" (and matching comments).
- Tighten the create_shell MCP `background` and `close_delay` arg
descriptions in mcp-bridge.js.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: resources/mcp-bridge.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -372,12 +372,12 @@ const TOOLS = [
372
372
background: {
373
373
type: 'boolean',
374
374
description:
375
-
'When true, the tab is created without switching the UI to it, and its title renders italic until selected. Use for commands you want to run without interrupting the user. Defaults to false.'
375
+
'When true, the tab is created in the background. Use for commands you want to run without interrupting the user. Defaults to false.'
376
376
},
377
377
close_delay: {
378
378
type: 'number',
379
379
description:
380
-
'Seconds (integer >= 0) to wait after the command finishes successfully before auto-closing the tab. 0 closes immediately on success. Failed commands never auto-close, and a tab the user is actively viewing will not close. Defaults to 30.'
380
+
'Seconds (integer >= 0) to wait after the command finishes successfully before closing the tab. 0 closes immediately on success. Defaults to 30.'
0 commit comments