feat(terminal): add hey-intern LLM-powered shell command generator

Add a new shell function that uses an LLM API to generate shell commands
from natural language queries. The command displays the generated command
for user confirmation before execution and adds it to history.

- Generates shell commands from natural language via LLM
- Displays command for user review before execution
- Automatically adds executed commands to bash history
- Uses qwen3-coder-next-80b-instruct model
This commit is contained in:
2026-03-16 13:04:04 -04:00
parent 540506a45e
commit 7b6d15c850
2 changed files with 77 additions and 0 deletions

View File

@@ -47,6 +47,8 @@ in
fi
[[ -f ~/.bash_custom ]] && . ~/.bash_custom
source ${./config/hey-intern.sh}
'';
};