Support IDE-level notifications for claude-code plugins (IntelliJ + VS Code)
Resolved 💬 2 comments Opened Aug 19, 2025 by shorn Closed Dec 13, 2025
Feature Request: Support IDE-level notifications for claude-code plugins (IntelliJ + VS Code)
Description
When using claude-code inside an IDE (e.g. IntelliJ IDEA with the plugin, installed globally via npm install -g), there is no built-in way to get notified when the tool is waiting for input or when a task is complete.
Many users resort to external scripts or workarounds for this. It would be more seamless if the IDE plugins themselves could handle notifications.
Proposal
- Add a mechanism in the plugins to listen for
claude-codeevents such as: - awaiting input
- task complete
- error occurred
- Forward these events to the IDE’s built-in notification system:
- IntelliJ → use the
NotificationsAPI (already integrates with system notifications). - VS Code → use
window.showInformationMessage/showWarningMessage/showErrorMessage, or the newerwindow.showNotificationAPI.
Benefits
- Consistent notification experience directly in the IDE.
- System-level integration (Windows/macOS/Linux) handled automatically by the IDE.
- Users can configure and customize notifications via standard IDE settings.
- Reduces need for external tooling or hacks.
Example Use Cases
- Long-running code generation finishes → IDE shows a notification with a link to the result.
claude-codepauses waiting for user input → notification prompts user attention.- Error occurs in a background task → clear, actionable notification in the IDE.
Suggested Labels
enhancement, plugin: intellij, plugin: vscode
This issue has 2 comments on GitHub. Read the full discussion on GitHub ↗