Command line for the AI era. The terminal window is a powerful tool that lets you quickly verify what LLMs tell you that they have done
AI can generate 100 lines of code in seconds. It can also generate filenames that don’t exist, dependencies that were never installed, and paths that point at nothing. If you’re working entirely inside the chat window, you have no way to know the difference.
The terminal knows.
This series is about using the command line as a control plane for AI-assisted work. It is the one tool that pushes back against hallucinations and burns them away.
I grew up on DOS, got frustrated with UNIX, and found my way back to the Linux terminal after a few years. It turns out those skills matter more now than they ever did. The CLI is how you keep an LLM honest.
Developers who are building with AI but feel like they’re working without a net. People who have vibe-coded something and had it blow up in ways the model didn’t predict and couldn’t explain.
You don’t need to be a Linux person. You just need to be curious about what the AI is actually doing and be willing to check.
The Shell Switch
The Shell Switch: Setting Your Native Tongue The Veil When you open a terminal in VS Code, is it PowerShell blue? That default shell was chosen for you, not by you. The AI that’s helping you code assumes Bash. If your terminal doesn’t match, you’re not building. You’re translating.
The Dross The AI speaks Bash. Every path it gives you, every command it suggests, every script it writes – Bash. When your terminal is PowerShell, every / becomes a \ you have to fix by hand. You’re spending mental energy on translation instead of on the problem.
...
The VS Code Terminal Shortcut
The Veil Every time you move your hand to the mouse to find a terminal, you’re losing the race against your own AI. I was clicking through the View menu for months before I found this. VS Code has a terminal built in, and you can summon it without touching the mouse.
The Dross Vibe-coding is high-frequency work. You’re jumping between the code the AI gave you and the terminal where you need to run it. If that jump takes three clicks, you’ll stop doing it. You’ll start “guessing” if the code works instead of “knowing.”
...
The Anvil You are Missing
The Veil I was introduced to computing on a Commodore and then moved to a DOS-based PC. Both used a terminal window as the primary interface, and I figured out the basics of both. I was comfortable typing commands before I ever used a mouse. Then college introduced me to UNIX, and I hit a wall. I avoided it for years and lived safely in the comfort of the Windows GUI.
...