@damper/cli 0.9.16 → 0.9.17

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.
@@ -92,8 +92,8 @@ function notifySessionEnd(label) {
92
92
  process.stdout.write('\x07');
93
93
  }
94
94
  if (process.platform === 'darwin') {
95
- // Play sound directly (reliable, doesn't need notification permissions)
96
- spawn('afplay', ['/System/Library/Sounds/Glass.aiff'], {
95
+ // Play system alert sound (uses whatever is set in System Settings > Sound)
96
+ spawn('osascript', ['-e', 'beep'], {
97
97
  stdio: 'ignore', detached: true,
98
98
  }).unref();
99
99
  // Desktop notification banner (needs notification permissions for Script Editor)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/cli",
3
- "version": "0.9.16",
3
+ "version": "0.9.17",
4
4
  "description": "CLI tool for orchestrating Damper task workflows with Claude Code",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {