Skip to content
Vibecoding Guide

First Steps with Claude CLI

  1. Open VS Code
  2. Go to File → Open Folder and select your project directory
  3. Open the integrated terminal: press Ctrl+` (backtick)

You should see a terminal at the bottom of the screen, inside your project folder.

Terminal window
claude

Claude opens in your terminal. You’ll see a welcome message and a prompt — Claude is now ready for input, scoped to your project directory.

Ask Claude to explain something in your project. Replace src/index.js with any file that exists:

Read src/index.js and explain what it does in plain English.

Claude will read the file and give you a plain-language summary. This is the fastest way to get oriented in an unfamiliar codebase.

Now try asking for a small edit:

Add a comment at the top of src/index.js describing what the file does.

Claude will propose the change and ask for confirmation before writing to disk.

When you’re done:

Terminal window
/quit

Or press Ctrl+C. Your terminal returns to normal.

Daily Workflow