How you organize files matters more than you think. A well-structured project means Claude can find and edit the right file without breaking something else.
| Topic | Source | Time |
|---|---|---|
| How to structure a project's folders | Fireship — Project Structure | 8 min |
| Separation of concerns (one file = one job) | Web Dev Simplified — Clean Code | 12 min |
This is non-negotiable. Git is how you never lose working code. Before every AI session, you commit what works — so if Claude breaks something, you can roll back in one command.
| Topic | Source | Time |
|---|---|---|
| Git in 100 Seconds | Fireship — Git explained | 2 min |
| Git basics for beginners (commit, push, pull) | Fireship — Git it? Full Course | 15 min |
| GitHub crash course | Traversy Media — GitHub Crash Course | 32 min |
The single habit that saves you: Every time something works, run git commit. Treat it like hitting save in a video game before a hard boss fight.
This is where vibe coders accidentally leak API keys or break deployments. Understanding .env files keeps your secrets safe and your config clean.
| Topic | Source | Time |
|---|---|---|
| What are environment variables | Fireship — Environment Variables | 5 min |
The most underrated skill. If your files and variables are named well, Claude always knows what it's looking at. Bad naming = AI confusion = broken code.
The rules are simple:
authService.js, userRoutes.js, ProductCard.jsx)utils.js dumping grounds — split them up| Topic | Source | Time |
|---|---|---|
| Naming things in code | Web Dev Simplified — Naming Conventions | 8 min |
You're not writing comments for other developers — you're writing them for future-you and for Claude. A one-line comment at the top of each file explaining what it does saves enormous confusion later.
The format that works best when vibe coding:
// PURPOSE: Handles all authentication logic (login, logout, token refresh)
// DEPENDS ON: userService.js, database.js
// DO NOT EDIT: the token expiry logic without updating authMiddleware.js too
No video needed — just start doing this on your next project.
Every project should have a README.md in the root folder explaining what the project is, how to run it, and what each major folder does. This is what you paste to Claude at the start of every new session so it has full context instantly.
| Topic | Source | Time |
|---|---|---|
| How to write a good README | Fireship — README explained | 6 min |
These aren't from a video — they come from the patterns that actually keep AI-assisted projects from collapsing:
Total Watch Time: ~90 minutes
Git is the most important thing on this list by a wide margin. If you only do one thing from this entire plan, learn Git basics and start committing daily. Everything else compounds on top of that foundation.
Both EdgeClaw and EcoCell already have Git configured:
github.com/ecocellga/edgeclaw (private)github.com/ecocellga/ecocell (private)You're ahead of most people starting Git. The infrastructure is done — you just need the habit.
After something works, run these two commands:
git add -A
git commit -m "describe what you just did"
Example:
git add -A
git commit -m "fixed MLB prop edge scanner to read from correct table"
Do this every time something works. It's hitting save before a boss fight.
git diff
Shows every line that was added or removed. Green = added, red = removed.
git checkout -- filename.ts
Reverts that one file back to the last commit. Everything else stays.
git checkout .
Reverts everything back to the last commit. Use with caution — all unsaved changes are gone.
git log --oneline -10
Shows the last 10 commits (saves). Each one has a short ID and your message.
git push
Sends your commits to GitHub. This already happens automatically every 17 minutes, but you can force it.
The #1 rule: commit every time something works.
If Claude breaks something, you can always roll back:
git log --oneline -5 # find the last good commit
git checkout -- . # undo everything since last commit
Branches let you experiment without touching your working code. Think of it like making a copy of your save file before trying something crazy.
git checkout -b my-experiment
You're now on a separate copy. Main branch is untouched.
git checkout master
git checkout master
git merge my-experiment
git branch -d my-experiment
| What you want to do | Command |
|---|---|
| Save your work | git add -A && git commit -m "message" |
| See what changed | git diff |
| Undo one file | git checkout -- filename |
| Undo everything | git checkout . |
| See last 10 saves | git log --oneline -10 |
| Push to GitHub | git push |
| New branch | git checkout -b name |
| Switch branches | git checkout master |
| Check current status | git status |