heyeric is a command-line tool that takes plain English and turns it into a bash command you can review and run. "find all markdown files modified in the last week" becomes `find . -name "*.md" -mtime -7`. You confirm, then it executes.
It's built as an ESM Node package, distributed on npm. The LLM layer is pluggable, so you can point it at OpenAI, a local Ollama model, or any other provider with a chat-completions-shaped API.
The design bet is that the right unit of shell productivity for most people isn't "remember more flags" — it's "ask in English, read the diff, run." v1.8.0 added multi-turn clarification when the first translation is ambiguous.
