Reference

The Vibe Coding Glossary

The words you'll hear, explained without the jargon.

๐ŸŒฑ Basics ๐Ÿ› ๏ธ Tooling โš ๏ธ Danger Zones

beginner start here intermediate worth knowing watch out handle with care

๐ŸŒฑ Basics

Vibe Coding

beginner

Building software by describing what you want in natural language and letting AI write the code. The vibe is the intuition; the code is the byproduct.

Prompt

beginner

The instruction you give the AI. A good prompt is clear, specific, and gives context. See Prompting for Vibe Coders.

LLM

beginner

Large Language Model โ€” the AI engine that predicts text. It's the brain behind the code generation, but it has no memory of your project unless you feed it back in.

Token

beginner

A chunk of text the model processes โ€” roughly a word or part of one. Models are billed and limited by token count, so bigger isn't always better.

Context Window

intermediate

How much text the model can "see" at once. Once you exceed it, older context falls off โ€” which is why the AI sometimes forgets earlier instructions.

๐Ÿ› ๏ธ Tooling

Agent

intermediate

An AI that can take actions โ€” not just answer, but run commands, edit files, and loop until a task is done. More powerful, and more able to make a mess.

Context

intermediate

The background info you give the AI so it understands your project: existing code, goals, constraints. Good context is the single biggest lever on output quality.

MCP

intermediate

Model Context Protocol โ€” a standard way to connect an AI to external tools and data sources so it can act on the real world, not just talk about it.

IDE / AI Editor

beginner

Where you write code. Modern AI editors (like Cursor) bake an assistant directly into the editor. See The Vibe Coder's Toolkit.

Diff

intermediate

A view of what changed โ€” line by line โ€” between two versions of code. Always read the diff before accepting an AI's edits.

Commit

beginner

Saving a snapshot of your code with version control (Git). Every commit is a save point you can return to when a prompt goes sideways.

โš ๏ธ Danger Zones

Hallucination

watch out

When the AI states something false with total confidence โ€” a fake library, a made-up API. Always verify before trusting. See Mistakes & How to Survive Them.

Scope Creep

watch out

When a small project balloons into a sprawling mess because the AI happily keeps adding features. The model never says "that's enough" โ€” you have to.

Secret / API Key

watch out

A password-like credential (database URL, API token). Never hardcode these in source files โ€” keep them in environment variables so they don't leak.

Big Rewrite

watch out

Asking the AI to "clean everything up" and getting back a broken codebase. Prefer targeted fixes over wholesale rewrites.

"Works On My Machine"

intermediate

Code that runs locally but breaks when deployed. The gap between "it works here" and "it works everywhere" is the whole job of shipping. See the shipping guide.

New to all this?

Start with the complete guide, then come back here whenever a term throws you.

Read The Guide โ†’