From 01be1879fd145023b55f6580a28e707673d6fb43 Mon Sep 17 00:00:00 2001 From: Elaine YIN Date: Mon, 6 Apr 2026 16:39:08 -0700 Subject: [PATCH] fix(speech): remove dead --sound-effect option The flag was defined in options but never read in run() and the SpeechRequest type has no sound_effect field. User input was silently discarded. Co-Authored-By: Claude Opus 4.6 --- src/commands/speech/synthesize.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands/speech/synthesize.ts b/src/commands/speech/synthesize.ts index c788087..479ce16 100644 --- a/src/commands/speech/synthesize.ts +++ b/src/commands/speech/synthesize.ts @@ -29,7 +29,6 @@ export default defineCommand({ { flag: '--language ', description: 'Language boost' }, { flag: '--subtitles', description: 'Include subtitle timing data' }, { flag: '--pronunciation ', description: 'Custom pronunciation (repeatable)', type: 'array' }, - { flag: '--sound-effect ', description: 'Add sound effect' }, { flag: '--out ', description: 'Save audio to file (uses hex decoding)' }, { flag: '--stream', description: 'Stream raw audio to stdout' }, ],