-
Notifications
You must be signed in to change notification settings - Fork 0
fix: usability items #5, #6, #8 #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -234,7 +234,7 @@ export function parseSetupArgs(argv: string[]): SetupOptions { | |
| cwd: homedir(), | ||
| notifyChatIds: [], | ||
| systemd: platform() === "linux", | ||
| voice: true, | ||
| voice: platform() === "linux", // Default off on macOS (whisper install is heavy) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Changing the default to Useful? React with 👍 / 👎. |
||
| psst: false, | ||
| nonInteractive: false, | ||
| force: false, | ||
|
|
@@ -902,6 +902,16 @@ async function stepPostflight(): Promise<void> { | |
| warn("ffmpeg not found (install for voice support)"); | ||
| } | ||
|
|
||
| // Whisper STT check (only if voice is enabled) | ||
| if (platform() === "linux" || process.env.ROUNDHOUSE_VOICE === "1") { | ||
| if (!whichSync("whisper")) { | ||
| warn("whisper not found — STT will auto-install on first voice message"); | ||
| log(" Pre-install: pip3 install openai-whisper"); | ||
| } else { | ||
| ok("whisper available"); | ||
| } | ||
| } | ||
|
|
||
| if (!process.env.TAVILY_API_KEY) { | ||
| warn("TAVILY_API_KEY not set — web search extension won't work"); | ||
| log(" Get a free key at https://tavily.com and add to ~/.roundhouse/.env"); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On Linux,
roundhouse installnow only prints guidance and exits successfully without creating/updating the service, config, or env file. That creates a functional dead end for users and automation because the CLI still points people toinstallin other flows (start,status,update), but following that advice does nothing while returning exit code 0. Either delegate tosetupor return a non-zero exit so callers don’t treat this as a successful install.Useful? React with 👍 / 👎.