oleg melnikovyoutube
free resource

your ai second brain on claude code

an Obsidian vault that Claude Code operates: you dump thoughts and documents in plain English, it does the filing, linking and remembering. about 10 minutes to set up, no technical experience.

setup guide

  1. open code.visualstudio.com
  2. press the big blue download button
  3. open the file it downloads and install it
  4. open VS Code and leave it open
what is this?

a free editor from Microsoft. you will not write code in it. it is the window Claude works inside, and the place you talk to it.

on a Mac, drag Visual Studio Code into Applications first, then open it from there.

if you get stuck

the things that actually go wrong, taken from the questions people ask under the video.

the terminal says “command not found: claude”

installing the Claude Code extension in VS Code does not give you the claude terminal command. the extension keeps a private copy for its own chat panel. that catches almost everyone, and it is not a broken setup.

to get the command, install Claude Code itself:

# macOS or Linux
curl -fsSL https://claude.ai/install.sh | bash

# Windows PowerShell
irm https://claude.ai/install.ps1 | iex

then close the terminal window completely and open a new one. skipping that is the second most common reason it still says not found. check it worked with claude --version.

still not found on a Mac? your PATH is missing the folder, so run these two lines:

echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc

claude doctor prints a full health report if you are still stuck. and if you would rather never touch a terminal, the Claude Code desktop app does the same job with buttons.

one thing worth knowing before you install anything: Claude Code needs a paid Claude plan (Pro or higher) or an API account. the free claude.ai plan does not include it, so it can install perfectly and still refuse to sign you in.

what does this actually cost to run?

Claude Code comes with a Claude subscription: Pro at $20/month, Max at $100 or $200/month. usage is included, there is no per-run charge. the free plan does not include Claude Code at all.

inside Claude Code, /status tells you whether you are on a subscription or an API key, and /usage shows how close you are to your plan limit.

prices and free tiers move. these were checked in August 2026.

is "--dangerously-skip-permissions" safe?

it does exactly what the name says: it turns off the ask-before-acting prompt, so Claude can edit files and run commands on your machine without checking with you each time. that is why it is fast, and that is the whole risk.

the honest version: in a project folder like this one, where you know what is inside and nothing valuable is nearby, it is a reasonable trade. pointed at your whole home folder, or at a repo you have not read, it is not.

the safer default is to drop the flag. claude "/prime" does the same work and asks first. you approve a few things at the start, then it stops asking about the same kinds of actions.