feat: Voice Dev Terminal — multi-turn voice-controlled terminal via Local Link - #369
Open
hassan1731996 wants to merge 1 commit into
Open
feat: Voice Dev Terminal — multi-turn voice-controlled terminal via Local Link#369hassan1731996 wants to merge 1 commit into
hassan1731996 wants to merge 1 commit into
Conversation
Foreground ability that opens a persistent terminal session over the
OpenHome Local Link bridge. Speaks into a shell command via LLM, runs it
with exec_local_command(), and summarizes raw output into natural language.
Keeps conversation history across commands for context-aware follow-ups
("do it again with verbose"). Dangerous tokens (rm, sudo, shutdown, kill
etc.) require voice confirmation before execution.
Contributor
🔀 Branch Merge CheckPR direction: ✅ Passed — |
Contributor
✅ Community PR Path Check — PassedAll changed files are inside the |
Contributor
✅ Ability Validation Passed |
Contributor
🔍 Lint Results✅
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What This Does
A voice-native developer terminal session for OpenHome. Say "terminal", then keep talking — run git commands, check disk space, find files, tail logs — all hands-free, staying in session across multiple commands.
Why It's Unique
Every other ability in this repo is either one-shot (execute one thing, exit) or uses external APIs. This is the only ability that uses
exec_local_command()via the Local Link bridge — voice → LLM-generated shell command → real terminal execution on the user's machine → spoken LLM summary of the output.Key Differentiators vs the
openhome-local-linkTemplateopenhome-local-linktemplateUX Flow
Technical Notes
exec_local_command(cmd, timeout=30.0)— requiresopenhome local startrunning on the user's machinetext_to_text_response) used twice per turn: command generation + output summarization{rm, rmdir, sudo, shutdown, reboot, dd, mkfs, kill, pkill}resume_normal_flow()called infinallycovering all exit pathsValidator