
Could AI in the Terminal Make Us Worse Engineers?
Imagine this: an engineer with 10 years of experience builds a small script that translates natural language into shell commands. A month later, he can't write tar -xzf from memory. A command he's typed thousands of times. His brain, given the option, quietly stopped retaining what the tool could retrieve in under a second. Is this our future reality? I wanted to check whether AI in the terminal would negatively impact me, so I built a zsh plugin called zsh-ai-cmd to test it firsthand. A month of daily use gave me an answer — just not the simple one I was hoping for. The Convenience Trap The workflow is seductive. You type: # find all files larger than 100MB in home directory Press Enter. The plugin intercepts the line, gathers your environment context — OS, working directory, available tools, git status, recent commands — ships it to an AI model, and replaces your input with: find ~ -type f -size +100M -exec ls -lh {} \; Highlighted in green. Press Enter again to execute, Ctrl+C to ca
Continue reading on Dev.to
Opens in a new tab



