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

Bearish Traders Continue to Short Bitcoin | Rewire News Morning Update

Is Nasdaq About to Reach a New High, Is the Bull Market Back?

Goldman Sachs Applies for Bitcoin ETF, Wall Street's Final Bastion Falls

Interpreting Stanford's 423-page AI Report: US-China Gap Narrows to 2.7%, Tsinghua's DeepSeek Enters Global Top Ten

YouTube will become the next new type of bank

How to Reshape On-Chain Transaction Logic? Exploring the Rise of Stablecoin Execution Layers

Why AI Memecoins are Failing the Reality Test
From 90,000% gains to a 98% crash—discover why the AI Meme bubble is bursting and what the shift to "AI Utility" means for your portfolio.

Morning News | Kraken receives $200 million investment from Deutsche Börse; Goldman Sachs submits application for Bitcoin Premium Income ETF; Walsh discloses his cryptocurrency holdings

Hong Kong licensing, stablecoin landscape changes: Who is reshaping the next generation of the financial landscape?

IOSG: TAO is like the Elon Musk who invested in OpenAI, Subnet is like Sam Altman

Stablecoin License Battle Concludes: Anxiety-Ridden Hong Kong, Will Not Wait for the Next Tether

You can grasp a new field in half an hour, how to quickly establish a cognitive framework using AI?

Franklin Templeton's latest research: How to understand RWA tokenization

Espanyol vs FC Barcelona: A Derby Fought with Fire and Quality
The Espanyol vs FC Barcelona derby delivered high-intensity football as Barca won 4-1, moving nine points clear at the top of LALIGA. Lamine Yamal's masterclass, Ferran Torres' brace, and a passionate city rivalry on full display. WEEX, Official Regional Partner of LALIGA in Hong Kong and Taiwan celebrates the beautiful game.

DeAgentAI announced the establishment of the AIA Ecological Fund, focusing on the "AI Agent + Physical AI" track

Why is Crypto Up? Altcoins Lead Due to US Grand Deal
Key Takeaways: The “US Grand Deal” has beefed up crypto’s appeal, impacting assets like Ethereum and Solana. Altcoins,…

Polkadot Hyperbridge Breach Mints Over 1 Billion DOT Tokens
Key Takeaways: Over 1 billion fake DOT tokens were minted due to a vulnerability in Hyperbridge’s Ethereum gateway.…

ECB Endorses ESMA for Unified Crypto Oversight in EU
Key Takeaways: The ECB supports ESMA taking over the supervision of crypto-asset service providers across the EU. National…
