claude-notification-plugin 1.1.81 → 1.1.83

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-notification-plugin",
3
- "version": "1.1.81",
3
+ "version": "1.1.83",
4
4
  "description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
5
5
  "author": {
6
6
  "name": "Viacheslav Makarov",
package/commit-sha CHANGED
@@ -1 +1 @@
1
- 5028775e89c41e96abd523526de5ff59ab1bb1e7
1
+ 0567928a0b6df6aaefebbb8e507bc8fef8ae5942
@@ -406,9 +406,10 @@ export class PtyRunner extends EventEmitter {
406
406
  // Filter out pipe-mode-specific args
407
407
  const args = claudeArgs.filter(a => a !== '-p' && a !== '--output-format' && a !== 'json');
408
408
 
409
- // Ensure --permission-mode is set (default: auto) to prevent interactive permission prompts
410
- if (!args.includes('--permission-mode')) {
411
- args.push('--permission-mode', 'auto');
409
+ // Ensure --permission-mode is set to prevent interactive permission prompts.
410
+ // Use bypassPermissions as default — "auto" is not available on all plans/providers.
411
+ if (!args.includes('--permission-mode') && !args.includes('--dangerously-skip-permissions')) {
412
+ args.push('--permission-mode', 'bypassPermissions');
412
413
  }
413
414
 
414
415
  // Reduce PTY output noise: disable animations, progress bar, tips
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claude-notification-plugin",
3
3
  "productName": "claude-notification-plugin",
4
- "version": "1.1.81",
4
+ "version": "1.1.83",
5
5
  "description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
6
6
  "type": "module",
7
7
  "engines": {