A terminal (also called command line or CLI) is a text-based interface for interacting with your computer using typed commands instead of clicking buttons. For vibe coders, the terminal is where you run development servers, install packages, manage version control, and execute AI tools — it's the backstage of every project.
The terminal looks intimidating at first — a blank screen with a blinking cursor. But for vibe coders, it quickly becomes the most-used tool in your workflow.
Most development tools are designed to be used from the terminal:
npm run devnpm install stripegit commit, git push| Command | What It Does |
|---|---|
cd folder-name | Move into a folder |
ls | List files in current folder |
pwd | Show where you are |
mkdir new-folder | Create a new folder |
clear | Clear the screen |
Most AI coding editors have a built-in terminal:
Ctrl+` You don't need a separate app — the terminal lives inside your editor.