Fast command generation
Translate intent like "create and switch to branch testing" into precise shell commands.
WELCOME TO THE TUTR COMMAND HUB
tutr translates plain English into shell commands and can run as an interactive wrapper in every terminal.
AI ASSISTANCE IN YOUR TERMINAL YOU STAY IN CHARGE
Install with uv:
uv tool install tutr
Need uv first? Install uv.
Translate intent like "create and switch to branch testing" into precise shell commands.
Run tutr as your shell wrapper with context cues in your prompt.
Configure Gemini, Anthropic, OpenAI, or local Ollama in a guided setup flow.
[tutr] > git create and switch to a new branch called testing
git: 'create' is not a git command. See 'git --help'.
The most similar command is
reset
tutr suggests:
$ git checkout -b testing
The 'git checkout -b' command creates a new branch named 'testing' and immediately switches to it.
source: man git-checkout
> tutr-cli git "create and switch to a new branch called testing"
$ git checkout -b testing
Creates a new branch named 'testing' and switches the current working directory to it.
source: man git-checkout