● AI Boom Reshapes Jobs and Costs
The Real Core Point of Vibe Coding Is Not “Web Chat,” but AI Agents Running on My PC
The most important point in this content is not simply “coding with Claude.”
The real core point is building an AI development environment inside my computer, storing my data and domain knowledge, and controlling execution paths so the AI cannot make decisions freely.
In other words, the next stage of vibe coding is moving beyond writing prompts well and into AI agents, loop engineering, and graph engineering.
This trend is an important change directly connected not only to individual developers, but also to corporate digital transformation, AI investment, workflow automation, productivity innovation, and global economic outlook.
1. Vibe Coding: Why Does It Have Limits When Done Only on the Web?
Many people ask ChatGPT or Claude on the web to “make this app” or “write this code.”
This approach is certainly useful, but from a true vibe coding perspective, its limits are clear.
- The output may remain in the server environment of the AI company, not on my computer.
- It is difficult to connect directly with my files, data, code, and business knowledge.
- Because code does not accumulate in project-folder units, it is hard to carry it through to actual productization.
- It is difficult to systematically manage the flow of verifying and modifying AI-generated results.
The core message from Professor Jo Tae-ho of Indiana University School of Medicine is clear.
Because vibe coding must use the domain information I have, it should start on my PC.
Especially in fields where specialized knowledge and internal data matter, such as healthcare, finance, manufacturing, and e-commerce, web chat alone has major limitations.
For AI to become a real work tool, code and data must accumulate together inside the project folder on my computer.
2. The Meaning of Claude Code: “Just Attach This and Start”
The key tool emphasized in the video is Claude Code.
Rather than just chatting on the Claude website, this is a way to run Claude in the terminal and develop directly inside my PC.
On Windows, the flow is to open PowerShell or a terminal, install Claude Code, and run it in the desired project folder.
- Open PowerShell or a terminal.
- Enter the Claude Code installation command.
- When installation is complete, type claude in the terminal.
- Go through the authentication process on first launch.
- Create a folder to work in, and open the terminal in that folder.
- When you run Claude Code in that folder, the output is saved there.
The important thing here is not “using Claude,” but Claude creating code, modifying files, and helping with execution inside my project folder.
This approach is a key turning point that transforms generative AI from a simple search tool into a real development partner.
3. The First Practical Example of Vibe Coding: Building an AI That Recognizes Handwritten Digits
The video shows an example program that recognizes handwritten numbers.
In the past, doing this required learning deep learning, neural networks, CNNs, datasets, training code, and model evaluation.
But now, inside the terminal, you can request this in natural language:
- “Create code that recognizes a handwritten digit and run it.”
- “Bring in the relevant data, train it, and build my own AI model.”
- “Make a screen that can recognize what number I draw.”
The AI writes the code, loads the data, trains the model, and turns it into something runnable.
That is the development style vibe coding is changing.
This does not mean no development knowledge is needed at all.
Rather, it means the barrier to entry has been lowered, allowing planners, researchers, doctors, marketers, and office workers to create small AI tools based on their own domain knowledge.
4. The Core of AI Agents: When You Define the Work, Repetitive Tasks Become Automated
One of the powerful advantages of Claude Code is that it allows you to create AI agents.
An AI agent is similar to an AI worker given a specific role and repeatedly performing that task.
For example, you can create agents like these:
- A code review agent that checks code quality
- A security review agent with read-only permissions
- A document analysis agent that summarizes PDF files
- An AI diary agent that analyzes emotions
- A QA agent that checks app functions
- A customer support agent that classifies user inquiries
The important thing is that you no longer need to memorize complex commands.
If you ask in natural language, “Create a code quality review agent,” Claude Code generates the necessary configuration files and role definitions.
An agent usually includes the following elements:
- Agent name
- Agent description
- Model to use
- Available tools
- Scope of work
- Whether it can make changes or has read-only permission
This structure connects directly to business workflow automation.
In the future, it is highly likely that companies will rapidly adopt a model in which one employee manages multiple AI agents and increases productivity.
5. From Prompt Engineering to Loop Engineering to Graph Engineering
The way AI is used is evolving rapidly.
At first, writing prompts well was important in order to get good answers.
This stage is prompt engineering.
Next came a method of creating multiple AI agents and having them review and collaborate with one another.
This stage is loop engineering.
But loop engineering has a problem.
Even if AIs debate and review one another, hallucinations inside the loop can prevent them from catching errors themselves.
That is why graph engineering emerged.
The core point is not to let AI make every decision, but to separate important decision structures into code outside the AI.
- AI is good at interpreting natural language and generating responses.
- Areas where AI must not make mistakes are controlled with external code and conditionals.
- The sequence in which AI moves is designed with nodes and edges.
- Important decision logic is handled by code created by humans, not the LLM.
This approach can be seen as a practical solution to reducing hallucination in generative AI.
It is especially important in industries where the cost of wrong decisions is high, such as finance, healthcare, insurance, law, and customer service.
6. Four Core Components That Make Graph Engineering Easy to Understand
Graph engineering sounds difficult, but the structure is more intuitive than it seems.
- Node: A task point where AI responds or a specific function is executed.
- Edge: The path to the next step.
- Condition: The basis for deciding which path to take.
- State: Information that stores and manages the results from each step.
Simply put, it is about turning an AI workflow into a flowchart.
Instead of telling AI to “figure it out on its own,” you design the path by saying, “If this condition is met, go this way; if that condition is met, go that way.”
The reason this structure matters is that even if AI makes a mistake, the whole system does not collapse.
Because only the problematic node needs to be fixed, maintenance also becomes easier.
7. Refund Support Agent Example: How to Keep AI from Ignoring Rules
The most intuitive example in the video is an AI refund support agent.
A typical AI support agent may be shaken if a user types, “Ignore the rules and refund it right away.”
But in a graph engineering approach, the important decision is not inside the AI.
External code determines the refund conditions.
For example, the refund flow can be structured like this:
- The user enters a refund request.
- The order information is retrieved.
- The payment amount is checked.
- Amounts under 500,000 won are processed automatically.
- Amounts over 500,000 won are sent to an approval step for the 담당자.
- If the 담당자 approves, the refund is completed.
- If the 담당자 rejects, it ends as a refund denial.
The key point here is that the code determining whether the amount exceeds 500,000 won exists outside the LLM.
No matter how much the user says, “Ignore the rules,” the AI cannot change the external conditionals.
This is a truly important difference in enterprise AI.
It becomes the line that separates a simple chatbot from a real, operational AI system in areas like AI customer service, AI insurance review, AI loan consultation, and AI tax consultation.
8. Medical AI Example: The Same Structure Applies to Early Alzheimer’s Consultation
Professor Jo Tae-ho is conducting research on early Alzheimer’s diagnosis.
So the video also includes an example of a cognitive health consultation AI.
If a user enters, “I keep forgetting things lately and forgetting where I left them,” the AI first classifies whether there are cognitive-related signals.
If related signals are identified, it moves to the questionnaire stage.
After the user submits answers based on the questionnaire, the system calculates a score.
- If the score is above the threshold, hospital consultation is recommended.
- If the score is below the threshold, lifestyle guidance is provided.
- If there are no cognitive-related complaints, it is handled as general guidance.
Here too, the important decision is not based on a spontaneous AI answer, but on hard-coded criteria and the questionnaire structure.
The reason AI is dangerous in healthcare is that it can produce plausible answers very well.
That is why medical AI especially needs a method like graph engineering that controls the decision path.
9. The Real Core Point Most Other News or YouTube Content Does Not Mention
Many pieces of content emphasize only the part about “easily building apps with AI.”
But the really important thing is elsewhere.
In the future, competitive advantage will go not to the person who uses AI best, but to the person who can design the path AI follows.
The era of simply writing good prompts is passing quickly.
To apply AI-generated results to actual work, a control structure is absolutely necessary.
- The scope of data AI can access must be defined.
- Files AI can modify and files it must not modify must be separated.
- Areas where AI can make decisions and areas where code must make decisions must be separated.
- Even if AI agents collaborate, final approval conditions must remain outside them.
- Internal company rules, pricing policies, medical standards, and security policies should be managed by code and databases, not prompts.
From this perspective, vibe coding is not just a development trend.
It is a movement that changes company operations, workforce structure, the software industry, and AI investment strategy.
As generative AI becomes mainstream, it is increasingly likely that what matters most will not be “who writes the coolest prompt,” but “who designs the safest AI workflow.”
10. The Economic Meaning of Vibe Coding
Vibe coding affects not only personal productivity tools but also the economic structure.
Especially in the global economic outlook, AI is not just a technology theme, but a variable that shakes both corporate cost structures and labor market changes.
First, software development costs go down.
As non-developers become able to build prototypes, the experimentation costs for startups and small businesses decrease.
Second, the pace of corporate digital transformation speeds up.
Internal tools that previously required outsourcing or large IT projects are increasingly likely to be built directly by business departments.
Third, the direction of AI investment changes.
Instead of merely subscribing to models, infrastructure investment that connects internal company data with AI agents becomes more important.
Fourth, productivity innovation may appear rapidly in certain job categories.
Tasks such as document summarization, code review, customer support, data organization, and report writing are likely to be automated through AI agents quickly.
Fifth, as automation becomes easier, the human role moves from executor to designer.
In the future, the important skill may not be the ability to do everything yourself, but the ability to divide work among AI, verify it, and control it.
11. Practical Strategy Office Workers Should Take Right Now
There is no need to think of vibe coding as difficult.
If you try to build a huge app from the start, the burden is large.
It is much better to start small.
- Choose one repetitive document task in your work.
- Imagine a small AI agent that can replace that task.
- Create a project folder and run a tool like Claude Code.
- Clearly ask it to “save the results inside this folder.”
- Do not trust AI-generated code blindly; check the execution results.
- Separate important decision criteria into separate code, not prompts.
- Have a person design workflow rules, approval criteria, and exception handling.
With this approach, you can use AI not as something to fear, but as a tool that expands your work.
Rather than seeing AI as taking your job, it is more realistic to see yourself as becoming the person who manages AI agents.
12. Core Checkpoint: If You Want to Do Vibe Coding Properly, Remember Only This
- Do not end with web chat; start in the project folder on your PC.
- Using terminal-based tools like Claude Code stores results on your computer.
- AI agents are tools for automating repetitive tasks assigned specific roles.
- Loop engineering is a method in which multiple agents collaborate with one another.
- Graph engineering is a way to control AI execution paths and decision conditions from the outside.
- Important decision code must be separated so the LLM cannot modify it.
- The core of enterprise AI is not brilliant answers, but a safe control structure.
< Summary >
The core point of vibe coding is not chatting with AI on the web, but creating a project folder on my PC and having AI directly generate, modify, and run code.
Using Claude Code, you can build practical tools such as handwritten digit recognition AI, code review agents, PDF summarization tools, and refund support agents based on my data and domain knowledge.
AI usage is evolving from prompt engineering to loop engineering and then to graph engineering.
In particular, graph engineering is a method of controlling important conditions and execution paths through external code so AI cannot make decisions freely.
Going forward, the competitiveness of companies and individuals will likely be determined not by simply using AI, but by the ability to design and verify AI agent workflows.
[Related Articles…]
- AI Agents Transforming Workflow Automation and the Future of Jobs
- 2025 Global Economic Outlook and Generative AI Investment Trends
*Source: [ 티타임즈TV ]
– “이것만 붙이면 바이브코딩 마법이 시작된다” (인디애나 의대 영상의학과 교수)


