Only Working 2 Hours a Day? This Google Engineer Got His Job Done Using Claude for 80% of It
Original Title: Google engineer automated 80% of his work with Claude Code. here's the exact system he built.
Original Author: @noisyb0y1
Translation: Peggy, BlockBeats
Editor's Note: As "AI coding" gradually becomes an industry consensus, what truly enhances productivity is not the model itself, but how you set rules for the model, organize processes, and embed it into a sustainable system.
Starting from a simple CLAUDE.md file, moving to multi-agent collaboration, and then to an automated development loop, this approach has transformed the development process from "human-AI dialogue" to "management of an AI engineering team." In this process, errors are constrained upfront, processes are structured, and code generation, testing, and review gradually move away from manual execution to being taken over by the system.
Of particular note, the article also revealed an overlooked detail: in long contexts and complex systems, model behavior is not entirely controllable. Whether it's hidden token consumption or diluted instructions, they will subtly affect output quality. This makes "how to manage AI," not just "how to use AI," a new core competency.
At this point, developers are no longer centered around coding but around rule design, process scheduling, and result verification. Those who are the first to complete this step have already begun to shift from "doing things themselves" to "letting the system do things for them."
Below is the original text:
A Google engineer with 11 years of experience automated 80% of his work using Claude Code and a simple .NET application.
Today, he only needs to work 2–3 hours a day instead of the original 8 hours, spending the rest of his time mostly in a "relaxed" state, with the system running on its own, bringing him a passive income of $28,000 per month.
What he has mastered is the set of methods that you have yet to understand.
Part 1—Write CLAUDE.md Following the Karpathy Principle
Andrej Karpathy—one of the world's most influential AI researchers—has systematically summarized the most common errors of large language models when writing code: overdesign, ignoring existing patterns, and introducing unnecessary additional dependencies.

Andrej Karpathy used Claude Code and a simple .NET tool to automate the entire workflow, including task acquisition, feasibility assessment, code generation, PR submission, feedback incorporation, etc., delegating about 80% of the development work to the system. He only took care of final review and testing, reducing his work time from 8 hours a day to 2–3 hours, essentially transitioning from a "code writer" to a "manager of an automated development system."
Someone consolidated these observations into a unified CLAUDE.md file.
As a result, the project received 15,000 stars on GitHub within a week, implying that 15,000 individuals, in a way, altered their workflow because of this.
The core idea is actually quite simple: if errors are predictable, they can be preemptively avoided through explicit instructions. Just placing a markdown file in the code repository provides a structured set of behavioral rules for Claude Code, thereby standardizing decision-making and execution throughout the project.
Within this file, there are primarily four core principles:
· Think First, Code Later → Avoid mistaken assumptions and overlooked trade-offs
· Embrace Simplicity → Prevent over-engineering and bloated abstractions
· Surgical Modifications → Refrain from changing code that no one requested to change
· Goal-Driven Execution → Test first, then validate against clear success criteria
It doesn't rely on any framework, nor does it require complex tools—just one file can alter Claude's behavior at the project level.
The real difference lies in:
· Without using CLAUDE.md: Claude violated the standards in about 40% of cases
· With Karpathy's CLAUDE.md: Violation rate reduced to about 3%
· Setup time: Only 5 minutes
Command to auto-generate your own CLAUDE.md file:
claude -p "Read the entire project and create a CLAUDE.md based on:
Think Before Coding, Simplicity First, Surgical Changes, Goal-Driven Execution.
Adapt to the real architecture you see." --allowedTools Bash,Write,Read
It replaces what's known as a Claude: facing a simple task but overengineering it, introducing unnecessary dependencies, or even making arbitrary changes to files that should not be touched.
Part2 Everything Claude Code: A Full Engineering Team in a Repository
Everything Claude Code (with over 153k stars on GitHub)
This is not just a set of prompts but more like a complete AI operating system for building products.


30+ specialized agents: planner.md → Feature Planning architect.md → System Design Decision tdd-guide.md → Test-Driven Development code-reviewer.md → Code Quality and Security Review security-reviewer.md → Vulnerability Analysis loop-operator.md → Automated Loop Execution
180+ skills: TDD, Security, Research, Content Generation—all preconfigured
Built-in AgentShield: Configuration directly integrates 1282 security tests
Works across different tools like Claude, Codex, Cursor, OpenCode, Gemini—a unified system, everywhere.
Installation:
/plugin marketplace add affaan-m/everything-claude-code
Alternatively, manual installation—just copy the components you need to the .claude/ directory of your project. Do not load everything at once—loading 27 agents and 64 skills simultaneously will likely deplete your contextual quota before you even input your first prompt. Only keep the parts you truly need.
The real difference is:
· Before: You're conversing with AI
· After: You're managing an autonomously running AI engineering team
It replaces: you used to need to spend several weeks setting up your own agent system, configuring different tools for planning/review/security, and paying $200–$500 per month for various AI services.
Part3 A Hidden “Scandal”: Claude Code v2.1.100 Secretly Eating Your Tokens
Someone intercepted and analyzed full API requests of 4 different versions of Claude Code by setting up an HTTP proxy.
They discovered:
v2.1.98: 169,514 bytes request → 49,726 tokens charged
v2.1.100: 168,536 bytes request → 69,922 tokens charged
difference: -978 bytes but +20,196 tokens
Although v2.1.100 sent fewer data bytes, it charged an extra 20,000 tokens. This “inflation” occurred entirely on the server side—you cannot see it or verify it through the /context interface.

This image mainly reveals that certain versions of Claude Code (especially v2.1.100) exhibit “covert token consumption,” causing the usage quota to be abnormally depleted. Specifically, versions like Claude Code v2.1.100 quietly introduced around 20,000 “invisible tokens” on the server side. Even with less request data, the billing is higher, causing users’ context to be invisibly encroached upon, quotas to be consumed more quickly, and even weakening the model output. This issue was verified by comparing API requests using an HTTP proxy between different versions and fundamentally represents a type of “invisible consumption” that users find difficult to detect and self-audit.
Why this is more than just a billing issue is that the additional 20,000 tokens will be stuffed into Claude’s actual context window.
This means:
→ Your CLAUDE.md directives will be diluted by this additional 20,000 “hidden content”
→ In lengthy conversations, the output quality will deteriorate faster
→ When Claude disregards your rules, it’s hard to pinpoint the reason
→ Claude Max's usage quota will be consumed about 40% faster than normal
Fix in just 30 seconds: npx claude-code@2.1.98
This is a temporary solution before the official Anthropic fix, but in practical use, you can almost immediately feel the impact of the session.
It replaces the need to guess why Claude suddenly stopped following your commands.
Case Study: What a Full Automation System Looks Like
An engineer with 11 years of experience built a system consisting of three parts:

Result after one week:
· Before: Coding 8 hours a day
· After: Only needing 2–3 hours a day for code review and testing
· Code quality: Virtually unchanged—because he reviews each one
· Team status: Always online—mouse moves automatically every minute
· Remaining time: Free all day
It's not some "magic," but the result of CLAUDE.md + appropriate agents + a 15-minute loop cycle.
Full List:

What You Gain After Reading:
· Before: Claude would deviate from existing norms 40% of the time
· After: With Karpathy's CLAUDE.md, the violation rate drops to 3%
· Before: It would take you weeks to set up agents
· After: 27 agents are ready to use out of the box
· Before: Claude Max would deplete the quota in 2–3 hours
· After: Reverting to v2.1.98 can restore about 40% of the usage cap
· Before: Needing 8 hours a day for coding
· After: Only needing 2–3 hours for review, with the rest being automated by the system
· Setup Time: 15–20 Minutes
· Daily Savings: 5–6 Hours
· Monthly Savings: 100–120 Hours
If your time is valued at $30 per hour — you're actually "losing invisibly" $3000–$3600 per month.
If it's $100 per hour — that's $10,000–$12,000 flowing away each month, just because you're still manually writing code that Claude could have done on his own.
Most developers never reach this level — not because they can't, but because they think it's complicated. In reality, between you and "full automation," there are just three commands and one file.
The engineer I mentioned at the beginning is not a genius or a senior Google engineer. He just spent one evening setting up the system — since then, the system does the work, and he just enjoys life.
You can do the same thing tonight. While others are still debating whether AI will replace developers, those who have set up the system are just making money and relaxing.
The choice is actually quite clear. You are building your own life — so choose the right path.
You may also like

Why does SpaceX, with an annual loss of 5 billion dollars and a valuation of 2 trillion dollars, captivate crypto players so much?

Top AI Tokens to Watch in 2026: Which AI Coins Are Worth Accumulating Early?
Looking for the best AI crypto tokens to invest in before the next market cycle? This guide explains what AI coins are, why 2026 could be a key accumulation window, and which infrastructure, AI agent, and data-layer projects may have strong long-term growth potential.

Which AI Crypto Will Explode in 2026? Top AI Tokens With 1000× Potential Worth Watching
Explore the top AI crypto tokens that could surge in 2026. This guide analyzes leading AI infrastructure coins and high-growth low-cap projects with real utility, helping traders identify potential 100× opportunities while avoiding speculative narrative traps.

The "PayPal Mafia" of the AI era, from an internship to a net worth of billions

The Most Crypto-Knowledgeable Fed Chair in History: What Cryptocurrencies Does Kevin Warsh Hold?

X Launches Cashtag, Musk's Super App Most Concrete Landing

Educational | How Can the Average Person Quickly Identify Token Rug Pull and Trading Strategy?

Rhythm X Zhihu Event Guest Announcement, featuring experts from academia, institutions, and individuals covering all aspects of the AI Agent's transformative financial model.

Is It a Dead Cat Bounce or the Bull Market Revival? How Do Traders View It?

Why Can Bitcoin Rise Against the Tide of Turmoil?

OpenAI and Anthropic, both pre-IPO, want to keep brawling

Entry is Revenue, Is YouTube Turning into a Neobank?

NEET Reaches New High, Another Cultural Phenomenon of AI Meme

CROO officially releases the CROO Agent Protocol (CAP), building a decentralized business infrastructure for AI agents

Who is swimming naked, and who is breaking the waves? Analysis Report on the Comprehensive Ranking of Hong Kong Licensed Virtual Asset Trading Platforms (VATP)

Deconstructing RAVE Dealer Control Techniques

70x in a Month: When $RAVE Put Istanbul’s Dancefloor on the Chain
A Web3 project with zero VCs and no whitepaper started with a midnight party for 200 people. Eighteen months later, its token $RAVE is up 70x, and its contract liquidations briefly eclipsed Ethereum’s. Is this just pure speculation, or are we looking at a new breed of cultural asset?

Bearish Traders Continue to Short Bitcoin | Rewire News Morning Update
Why does SpaceX, with an annual loss of 5 billion dollars and a valuation of 2 trillion dollars, captivate crypto players so much?
Top AI Tokens to Watch in 2026: Which AI Coins Are Worth Accumulating Early?
Looking for the best AI crypto tokens to invest in before the next market cycle? This guide explains what AI coins are, why 2026 could be a key accumulation window, and which infrastructure, AI agent, and data-layer projects may have strong long-term growth potential.
Which AI Crypto Will Explode in 2026? Top AI Tokens With 1000× Potential Worth Watching
Explore the top AI crypto tokens that could surge in 2026. This guide analyzes leading AI infrastructure coins and high-growth low-cap projects with real utility, helping traders identify potential 100× opportunities while avoiding speculative narrative traps.
