TubeSum ← Transcribe a video

Claude Code Crash Course for Beginners — Build an App

0h 28m video Published Mar 3, 2026 Transcribed Jul 31, 2026 C codebasics
Beginner 14 min read For: Aspiring developers without a technical background and software engineers wanting to leverage AI coding assistants on real projects.
AI Trust Score 74/100
⚠️ Average / Some Fluff

"Delivers a true crash course — builds a full app and explains advanced workflows, with minimal fluff."

AI Summary

This beginner-focused crash course demonstrates how to use Claude Code, an AI coding tool, to build a personal finance web application from scratch. It also covers using Claude Code on larger codebases, fixing bugs, configuring claude.md and skills.md files, and leveraging Git integration.

[00:02]
Claude Code as a game-changer

Metaphor of a crane vs hammer/nails: Claude Code lets anyone build complex applications (skyscrapers) without needing a technical background.

[00:47]
Subscription setup

Choose the $17 plan (Claude Code) from plans and pricing; heavy usage requires the $100 plan.

[01:42]
Using VS Code for preview

The Claude UI doesn't show previews for complex apps, so use VS Code with the Claude Code plugin.

[03:11]
Voice input with WhisperFlow

Install WhisperFlow to convert audio into text, minimizing typing during AI-first coding.

[03:23]
Brainstorming requirements

Ask Claude to build a simple personal finance app and brainstorm requirements before coding.

[04:37]
Creating a PRD

Ask Claude to write a PRD.md (product requirement document) to lock requirements, features, and database schema.

[06:52]
Iterative development

Build features one by one, test and verify each to avoid bugs and save tokens.

[09:52]
Switching to a database

The initial app stores data in browser local storage; upgrading to SQLite requires a Node.js backend.

[11:26]
Running the app

Run 'node server.js' to start the full-stack app; verify transactions persist in the finance.db database.

[13:28]
Speed of AI coding

What would take 1-2 days manually was completed in about 30 minutes with Claude Code.

[13:44]
Modes and models

Use plan mode, ask-before-edits, or automatic editing; switch between Opus 4.6, Sonnet, and Haiku models.

[15:26]
Working on large codebases

Load an existing repo, let Claude run it, and use @file to add context for bug fixing.

[18:44]
claude.md for standards

Create claude.md to enforce coding standards, package managers, and workflow expectations on every command.

[22:14]
Git integration

Run git commands like add and commit through Claude Code; reference commit IDs to replicate changes in other files.

[25:33]
skills.md for dynamic skills

skills.md loads task-specific instructions (e.g., PDF handling) only when needed, unlike claude.md which is always loaded.

Claude Code turns natural language into production-ready code, making app development accessible to beginners and boosting productivity for experienced engineers. The key is to iterate, verify, and give the agent explicit context and standards.

Mentioned in this Video

Tutorial Checklist

1 00:47 Subscribe to Claude Code ($17 plan) at the pricing page.
2 01:42 Create a new folder (e.g., personal-finance) and open it in VS Code.
3 02:13 Install Claude Code plugin from the VS Code marketplace.
4 02:44 Launch Claude Code from the plugin icon (restart VS Code if needed).
5 03:11 Install WhisperFlow to dictate prompts instead of typing.
6 03:23 Prompt: 'Build a simple personal finance app; brainstorm requirements first.'
7 04:37 Ask Claude to create a PRD.md and answer clarifying questions.
8 06:52 Instruct: 'Start building; implement features one by one; I'll test each.'
9 09:52 Request: 'Store data in a local SQLite database with a Node.js backend.'
10 11:26 Run the server: 'node server.js' and open the local URL.
11 12:58 Install SQLite viewer to inspect the finance.db transactions table.
12 14:13 Set mode to 'automatic edits' and choose a model (Opus/Sonnet/Haiku).
13 18:44 Create a claude.md file with coding standards and package manager rules.
14 22:14 Use Claude Code to git add/commit; reference commit IDs to apply similar changes elsewhere.
15 24:58 Add skills.md to dynamically load specialized knowledge (e.g., PDF skill).

Study Flashcards (14)

What is Claude Code?

easy Click to reveal answer

An AI tool that lets anyone write code and build applications without needing a technical background.

00:18

What are the subscription plans for Claude Code?

medium Click to reveal answer

A free chatbot plan, a $17 plan for coding, and a $100 plan for heavy usage.

01:00

Why does the tutorial prefer VS Code over the Claude UI?

medium Click to reveal answer

The Claude UI doesn't show a live preview for complex apps like mobile or software.

01:26

What is WhisperFlow used for?

easy Click to reveal answer

It converts audio into text, so you can speak prompts instead of typing.

03:11

What is a PRD in software development?

medium Click to reveal answer

A product requirement document listing requirements, features, and database schema, prepared before coding.

04:51

Why should you build features one by one with Claude Code?

medium Click to reveal answer

To test and verify each feature, avoid unexpected bugs, and waste fewer subscription tokens.

07:09

Where did the first version of the app store data?

easy Click to reveal answer

In the browser's local storage.

09:52

What stack was used for persistent storage?

medium Click to reveal answer

SQLite database with a Node.js backend.

10:18

What are Claude Code's three editing modes?

easy Click to reveal answer

Plan mode, ask before edits, and edit automatically.

13:44

Which Claude models are available in Claude Code?

easy Click to reveal answer

Opus 4.6 (most capable), Sonnet, and Haiku (fastest).

14:27

How do you add a file to Claude Code's context?

medium Click to reveal answer

Type @ followed by the filename, or click the file in the explorer.

14:44

What is the purpose of a claude.md file?

medium Click to reveal answer

It specifies coding standards, package management, and workflow expectations that Claude loads on every command.

18:44

How does claude.md differ from skills.md?

hard Click to reveal answer

claude.md is loaded for every command; skills.md is loaded dynamically only when needed for specific tasks.

25:33

How can you apply a previous Git commit's changes to a different file?

hard Click to reveal answer

Start a new chat, reference the commit ID, and name the target file; Claude follows the pattern.

23:35

💡 Key Takeaways

💡

AI as a crane

Memorable metaphor that reframes AI coding as an exponential capability shift, not just speed.

00:02
🔧

Iterate to save tokens

Practical token-saving strategy that prevents large-scale failures in AI-generated code.

06:53
📊

30 minutes vs 1-2 days

Concrete time saving from AI-first development shows tangible impact.

13:28
⚖️

claude.md standardizes output

By codifying team standards, claude.md makes AI agents comply with organizational practices.

19:02
💡

Dynamic skills loading

skills.md keeps context lean while enabling specialized behavior on demand — a nuanced best practice.

25:33

[00:02] Everyone has hammer, nails, and wood. Now, one person walks in with a crane. They're not just faster, they're playing a totally different game. While other people can build chairs, tables, and cupboard, this new person can build

[00:18] cupboard, this new person can build skyscrapers. That crane is Claude Code. Claude Code has completely changed the game of how we write code and build applications. With this amazing AI tool,

[00:32] anyone can code. You don't need to have a technical background. In this beginner-friendly tutorial, I'm going to first [music] build personal finance application using Claude Code. We'll walk through all the necessary steps,

[00:45] [music] and then we will see how you can use it on a large code base. All right, let's get started. Let's go ahead and set things up. In Google, type Claude Code subscription and go to this plans and pricing page.

[01:00] and pricing page. You have this free version of Claude.ai, which is ChatGPT-like chatbot, but if you want to write code, which is this option, it will open this particular UI. For

[01:12] it will open this particular UI. For this, you need $17 plan. If your usage is heavy, you need more tokens, then you can go ahead with $100 plan. Let's start with $17 plan, and if you want to build something complex, you can always

[01:26] upgrade it to max plan. Now, folks, you can write code here, but this UI doesn't show you a preview. Let's say if you're building a mobile app or any complex software, it will not show you a preview. Therefore, I like VS Code

[01:42] personally. If you are a programmer, you will have VS Code installed on your will have VS Code installed on your computer. Okay, so let's create a folder here in my C code directory. I'm going to go, and I will just create a folder

[01:57] called personal finance. We are going to build a personal finance app, okay? And build a personal finance app, okay? And open that folder here. So, I will open that folder here. All right, personal finance. Select that folder.

[02:13] It is an empty folder, and I'm going to now install the um plugin, okay? So, let's click on this and here type in Claude Code.

[02:29] So, there's a plugin uh that you can install to get Claude Code here, okay? So, just install this particular plugin. I already installed it. So, in my case, I will see this particular icon here. You might have to restart your VS Code.

[02:44] But, let's click on this, and let's start Claude Code here. So, it simply ran this Claude command, and I have Claude ready to accept my commands,

[02:56] okay? So, the setup is done. Other than this terminal, it also gives you this native chat, where you can type in your questions. So, I'm going to use native chat only. Let's go ahead and now install a software called WhisperFlow.

[03:11] install a software called WhisperFlow. WhisperFlow is a software that lets you convert your audio into text. And when it comes to AI uh first coding, I don't

[03:23] uh want to type too much, okay? So, let me I have installed it, by the way. I'm going to give my requirements. Please build a simple personal finance application. Uh before building it, give me uh

[03:38] requirements. Let's brainstorm. I want to keep the application very simple. It should be web application. Uh and let's not add any complex Uh and let's not add any complex features. Very simple applications.

[03:57] into text when I typed that in. Now, it will take my instructions, and it will brainstorm with me uh on what exactly I want to build.

[04:11] uh you have a feature to add transactions, mark as income, expense, delete a transaction, dashboard, categories, transaction list, and so on. We're going to leave out all this. Now, folks, we

[04:24] can do all of this, but it's a tutorial, and um if you have limited token in $17 subscription plan, so that is the reason I'm going ahead with simple application.

[04:37] You can also create a requirement document. So, I will say, "Can you create a uh PRD document, product requirement document first?" So, product requirement

[04:51] document, if you are a software engineer, you will know already. It's basically a list of your requirements, then database schema, etc. It is something that you prepare before you start writing code. What I like to do

[05:04] personally is lock my requirements and my brainstorming sessions into PRD file, so that later on, if I want to go back to my original stage and start all over to my original stage and start all over again, at least my product ideas, etc.,

[05:19] is locked into this particular document, okay? It will keep on asking this kind of questions, like you can just say, "Yes, yes, yes," and it will continue "Yes, yes, yes," and it will continue doing its work, okay? So, PRD.md

[05:32] file has been created. You can click on this, and see, here you see the file, okay? So, it's a markdown file. Any file which is uh MD file is essentially a markdown file,

[05:46] and what it is containing is see, this is the problem statement, target users. These are the features you are building. Summary dashboard, categories, and so on, okay? Now, it will also

[06:03] contain database schema sometimes. So, here it is asking you some clarifying questions. If you uh build a software using a software developer, they will ask you these clarifying questions, okay? So, here it is saying balance,

[06:17] show all-time total or just the current month's net. So, you here you can say,

[06:36] All right, my PRD is updated. Now, I want to start building, and for this, I will ask it again using WhisperFlow. Start building. Implement features one by one. Once you build a feature, I would like to test and verify it.

[06:53] Now, folks, I like to do this because once I started building a complex application, and I built a huge PRD, and I said, "Build the whole thing." It uh spent a lot of time in building it, and then it was not working. So, the

[07:09] lesson I learned is it is better that you build iteratively, so that it builds something, you verify it, and make sure it is up to your expectation, then you

[07:21] build the next feature. This way, you will avoid um these unintended bugs as well, and overall, you'll be wasting less tokens of your Claude subscription. Now, see, it has created this to-do list, okay? It

[07:36] is working on all this, and feature one is implemented. Then, it will work on feature two, and so on. Okay? So, now, this one is ready. You can click on this. So, see, I have this index.html. It's some simple HTML file.

[07:53] index.html. It's some simple HTML file. Here, I can add, let's say, expense. So, Here, I can add, let's say, expense. So, let's say I went out for lunch or let's say I went out for lunch or dinner, whatever.

[08:10] Okay, today's date, food and drink. You can say, "Okay." transaction, and your transaction is saved. Okay? You can change these

[08:23] saved. Okay? You can change these categories as well, shopping. will say that yes, let's build. Now, of course, you

[08:38] will build step by step, but I'm going to fast-track things. So, I will say that let's uh implement all other features. In real life, uh you will build step by

[08:53] step and verify it. Let me take a pause and talk about interesting trend we are and talk about interesting trend we are observing in the industry. Many software engineers nowadays are learning AI engineering skills because there is a

[09:05] huge demand for building AI engineering projects across many industries. To satisfy this upskilling need, we are launching a live AI engineering cohort exclusively for software engineers with minimum 2 years' experience. This will

[09:22] minimum 2 years' experience. This will be 75-day program with sessions on weekends, where we will learn how to build AI engineering projects in a most practical, industry-relevant way. When the cohort ends after 75 days, you will

[09:38] be able to build AI features in your current software application or transition to full-time AI engineering role. If you want to know more, I have placed a link of our page in a video description below. Now, let's go back to

[09:52] our video. Now, folks, in my folder, I saw only index.html file. So, I had this question, where are you storing your data? And it is saying it is storing it data? And it is saying it is storing it in a browser's local storage, which is

[10:05] fine because we asked it to build a simple application, but I would like to save it in a local database. So now I'm saying, can you save it in a local database? How about SQLite? If you're a programmer, you can give suggestions,

[10:18] SQLite, Postgres, whatever. And it is saying, okay, that is fine. Then it saying, okay, that is fine. Then it asked me if I want to build a Node.js based backend or something else. Because when you're storing data in a database,

[10:33] you need backend. Okay, backend can be Node.js, FastAPI. I will go ahead with Node.js. If you're a non-technical users, don't worry, it will give you suggestions, and it will say this is recommended. So you just

[10:46] have in-depth knowledge. If you have in-depth knowledge as a programmer, it can help on certain occasions. Okay, so I just say Node.js. It is working on it, and here it has built the backend. So let me just

[11:02] it has built the backend. So let me just check the code. So here, okay, index.html is a frontend, server.js, and it has created all these modules and so on. See, the data will go to

[11:14] finance.db. These are the rest endpoint. You can you can open finance.db to view your data. data. Um so now here is saying to run CD into

[11:26] Um so now here is saying to run CD into this and just say node So what I will do at this stage is I will open view terminal,

[11:39] And from this terminal, run this command, node server.js. So personal finance application is running at this particular

[11:52] location. See? It is running now. So let me add some transactions. So I'm going to add some expenses.

[12:12] it is showing up. Now let's let me add some income. So income, let's say some income. So income, let's say this is my salary.

[12:24] You can change them later. And see, these are the transactions that I have. Now I'm going to close this application. Essentially, when you launch it in a new new one,

[12:40] because now they are saved in our database. Wonderful. You just built frontend, backend, and database. You can verify your data here. Uh finance.db, see? To open this, you might need uh some extension. So um say

[12:58] might need uh some extension. So um say I'm going to install this SQLite viewer. And once the extension is installed, you can double click and you can view uh database. So in in my database, I have one table, which is transactions.

[13:13] have one table, which is transactions. It has all these fields, okay? And as you can see, there's a transaction ID, expense, amount, date, category, note, etc. Now you can go ahead and implement new features. Folks,

[13:28] you see the power of AI first coding. If you want to write code manually, this would have taken you probably one or two days. We just did it in like 30 minutes. It's like magic. Now let's talk about the different modes that you have. Here

[13:44] we have plan mode, which means Claude will explore the code and present a plan before editing. So if you're implementing a new feature, building a new app, you will have it in plan mode. Then ask before edits means it will

[14:00] ask you uh before it writes a block of code, okay? I generally keep it in the third mode, which is edit automatically, so that it will not prompt you too much, basically. You don't have to babysit it.

[14:13] You can also uh switch between the models. So here, when you type slash, see? You can switch different models that you You can switch different models that you have. This is most capable for complex

[14:27] work, Opus 4.6. Sonnet, you have Haiku for fastest, for quick answers, and so on, okay? So let's go back to slash. And here, you can see your account and usage. You can clear conversation. You

[14:44] usage. You can clear conversation. You can mention a file, okay? So here, for example, I want to when you say at, you know, if you want to make a change in any file, you can say at, and you can

[14:57] specify that file, let's say articles. dot py, okay? And here, if you type any anything, it knows that this articles.py is in the context, okay?

[15:10] Context is very important when it comes to AI first coding. So you should be folks, I have uh this another repository, which is kind of like a blogging platform. And I'm going to show you a bunch of

[15:26] things using this repository. So imagine you are working as a software engineer in some organization, and you have this huge codebase. And now you want to use Claude Code to fix issues, to implement new features, and so on. How would you

[15:40] new features, and so on. How would you do it, okay? So here, let's first uh run do it, okay? So here, let's first uh run this code to see what it is doing.

[15:54] frontend, and it is asking me to run this bash command, okay? So let's run it. So let's run it. Once you have clear uh readme.md file,

[16:07] Uh even if you don't have this, it will figure it out anyway. Uh but if you have readme.md, it will make things easier for this agent, okay? Just click on yes, yes, yes. And now it is saying that backend is running on

[16:23] is saying that backend is running on this particular port, and here you are this particular port, and here you are starting the frontend. Okay, so at this stage, my backend is running here, frontend is

[16:36] running here. So let me click on it. Okay, so here is a website where you can post your articles. So I'm just going to say publish, say publish, and publish few articles.

[17:02] let's say one article is on yoga. So I want to See, there is a bug here. So now I can talk to Claude Code, and I can say, okay, can you fix that bug? So here, I'm going to open a new session

[17:21] for Claude Code, okay? And I will say that articles, it gives you this particular error. So now it's going to

[17:35] take that error. It will start debugging it, and it will try to fix that error.

[17:49] saying it is mismatching the query parameter. If you're a programmer, you will review it. I reviewed it. It looks good, so I'm allowing all the edits. Now folks, let's go ahead and

[18:04] Now folks, let's go ahead and research that article, okay? So here, Haha, see? You see how easy is it to fix issues using Claude Code? Similarly, you can ask it to implement a

[18:18] feature. So folks, this is an exercise for you. Below the article, nowadays, um uh button where you can upvote, downvote. So go ahead and implement

[18:31] downvote. So go ahead and implement upvote, downvote button, or some other interesting feature that you want to try it out. Now let's talk about claude.md file. Many times, organizations have their coding

[18:44] standards, their own way of implementing things, some architecture patterns that they adhere to. You can specify all of that in claude.md file. So what you can that in claude.md file. So what you can do is go here and

[18:59] create this file called claude.md. And claude.md is short of like read MD file for your agent. And you can specify, for example, coding standards that you want to follow, okay? So here, I'm specifying my coding standards. You can preview it

[19:15] here, of course, see? So I want to have coding standards where for Python, use PEP 8, JavaScript use ES6 plus syntax, CSS, and so on. You can also give it instructions on,

[19:30] let's say, package management. How in this particular project, this is how we do package management. Some projects use pip, some projects use UV. Claude is not pip, some projects use UV. Claude is not going to know magically all of that. So

[19:44] in your organization, in your team, if you have a practice that you follow, then just specify it in this. You can also give some other instructions such as okay

[19:57] like a rule and tone, workflow expectations, and so on. So essentially the Claude agent will read these the Claude agent will read these instructions and then it will use them

[20:12] to implement features right and write code. You are essentially guiding the agent here, okay? Now let's say I have this particular file where I want to make some change, okay? In back end I have services and here in article

[20:27] service I want to make some change. Now note that when I click on this file here it is adding that in your context meaning whatever change you're doing now, it will consider this file

[20:44] in its main content. It can go ahead and make changes in other files also. You can also use this add, okay? You can say articles.py and here let's say I want to implement structured logging, okay? So this is a

[20:59] structured logging, okay? So this is a Python file. I don't have logging here. Python file. I don't have logging here. So I will just say add structured logging and that's it. It knows that it needs to add it to

[21:13] articles.py. It's not going to do it in all the files. It will just make change all the files. It will just make change in this particular file.

[21:33] py file now I am seeing structured logging, you see? logger.info logger.info Now it is adding these logs at the

[21:45] Now it is adding these logs at the beginning and end both. If you want to change it, you can say okay, add the logs only at the beginning. When I was working at Bloomberg and many other companies, this

[21:59] is a standard practice where you add logs usually at the beginning. And also end depends on the organization needs, but I used to do it only at the beginning, okay? Now let's look at the Git integration. Here let's say these

[22:14] changes look good. What you can do is now say uh commit this change. So now it is going to use Git. See Git

[22:26] status, Git log. Usually you will say Git add whatever Usually you will say Git add whatever then Git commit etc. Here with AI assisted coding, you don't need to do it. You can just run Git commands via

[22:41] this. See it is running this command Git add this and then it will run the add this and then it will run the uh commit command.

[22:53] instruction. So I'm saying yes and now when I do So I'm saying yes and now when I do Git log, see here. So when I do Git log here, I am seeing this commit ID.

[23:08] Look at this. This is so wonderful. Now you can take this commit ID, okay? Let me show you a different use case. I'm going to copy it. Now let's say you want to make similar change into some different file. I made

[23:22] this change in articles.py. I want to now make similar change in search.py, okay? See I can say add structured logging, but sometimes you have specific requirement. For example, you want to

[23:35] add logging only at the beginning and you want to log information in certain way. You have certain specifier. So if you have done all those changes in Git commit, now what you can do is you can start a new chat. It's recommended. You

[23:50] start a new chat. It's recommended. You can say that now in let's say users.py. Okay, users I think users.py I will say in API. So okay, so users.py. Let me

[24:04] Let me select the right one. Okay, users.py. Uh implement changes similar to this Git

[24:16] commit ID. So now it will look at that commit and in in this file. If you're a programmer, you would know that you're working on a big code base, somebody has made some changes and 1

[24:31] month down the road, you want to make similar changes in a different file. Usually what you do is go to Git, look at that commit and and you know, use your brain to transfer those changes in the new file. Now here

[24:45] you can do all of that through Claude code. Okay, so now see it is looking at the commit ID. I did not say add structured logging or whatever. It will follow the pattern and it will make those changes.

[24:58] There is another thing called skills.md file. So skills are folders of that Claude loads dynamically to improve performance on specific tasks. Now this term dynamically is important because

[25:15] Claude.md file that we added, okay? So we added this Claude.md file, correct? This file will be loaded for every command. It's like it gets added into your context in every command. It will make your context your prompt longer.

[25:33] If you have some instructions that you want Claude to load dynamically want Claude to load dynamically then you will use skills.md file, okay? then you will use skills.md file, okay? So here in in this Anthropic repository

[25:49] they have skills. It's like you know, people have different skills. Someone uh knows how to talk better, someone knows how to play sports. These are skills, okay? Common sense. Similarly, let's say um

[26:03] you are building a software for PDF, for example. Okay? example. Okay? And you have this PDF skill. Use this skill whenever the user wants to do anything with PDF file.

[26:17] It's like you're importing that skill into your project and it will guide your AI agent. Basically let's say AI agent wants to write some code on

[26:30] PDF. So now it will use let's say if you have this skills.md included in your project it skills.md included in your project it will use PyPDF. See? PyPDF.

[26:42] Uh if you don't have skills.md file, then it will use common general internet knowledge and it may end up using some other module that you don't want to use organization I have 20 different teams and we have

[26:59] decided our CTO of the company has decided uh organization has decided that we will use PyPDF. In that case, you can just include this file into your project. Also you can have multiple levels of Claude.md and

[27:13] skills.md. See, if you have Claude.md at this level, it will use this. Sometimes you have nested structure. You can have multiple of them and it will use the Claude.md file which is very closest to the project and then it can use

[27:29] uh any higher level files, okay? So that's that's the short preview of Claude.md and skills.md file. Now folks, let's say we have specific guidelines for adding logging. In that case, you have you can have a skills file for

[27:44] logging, okay? It is like logging skills. And here I can specify log only at the start of it. Always include timestamp. Use logging.info only. Do not add extra logs, okay? And you can give this kind of boilerplate code. So now it

[28:00] will use these instructions to add logging. And it will load skills.md file whenever it's needed dynamically. It will not load it all the time like Claude.md file. That's it, folks. If you have any questions, please post in the

[28:14] comment box below. In video description, you will find the code repository etc. you will find the code repository etc. Thank you very much for watching.

More from codebasics

View all

⚡ Saved you 0h 28m reading this? Transcribe any YouTube video for free — no signup needed.