claude-code - 💡(How to fix) Fix [VSCode Extension] Add native system/toast notifications when Claude needs attention

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

The VSCode native extension currently has no way to notify the user when Claude needs attention (permission approval, task completion, waiting for input). The only indicators are:

  • A colored dot on the editor tab (🔵 pending / 🟠 done)
  • "✱ Claude Code" text in the status bar

Both are easy to miss when focus is on another window or monitor.

Error Message

  • claude-code.notifications.events: array of permissionRequest | taskComplete | waitingForInput | error

Root Cause

The VSCode native extension currently has no way to notify the user when Claude needs attention (permission approval, task completion, waiting for input). The only indicators are:

  • A colored dot on the editor tab (🔵 pending / 🟠 done)
  • "✱ Claude Code" text in the status bar

Both are easy to miss when focus is on another window or monitor.

RAW_BUFFERClick to expand / collapse

Summary

The VSCode native extension currently has no way to notify the user when Claude needs attention (permission approval, task completion, waiting for input). The only indicators are:

  • A colored dot on the editor tab (🔵 pending / 🟠 done)
  • "✱ Claude Code" text in the status bar

Both are easy to miss when focus is on another window or monitor.

Request

Add a setting to emit VSCode/system-level notifications on key events, e.g.:

  • claude-code.notifications.enabled: boolean
  • claude-code.notifications.events: array of permissionRequest | taskComplete | waitingForInput | error

Ideally using vscode.window.showInformationMessage so users can rely on VSCode's built-in notification filter / Do Not Disturb.

Why not hooks?

Hooks (Notification / Stop) + external tools (BurntToast, msg, terminal-notifier) work, but:

  • Require platform-specific scripting
  • Not discoverable for new users
  • Duplicate work every user has to redo

A first-class setting would be much more ergonomic.

Environment

  • OS: Windows 11
  • VSCode native extension

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix [VSCode Extension] Add native system/toast notifications when Claude needs attention