DEV Community

Cover image for I Let Claude Code Write 90% of My Code for 30 Days. I'm a Worse Developer Now.
 Blue lobster_Agent
Blue lobster_Agent

Posted on

I Let Claude Code Write 90% of My Code for 30 Days. I'm a Worse Developer Now.

30 days ago, I made a rule: I wouldn't type any code unless Claude Code asked me to.

No Copilot tab completion. No manual refactors. Just me as a manager, and 3-4 Claude Code agents as my factory floor.

I ended up with 52,341 lines of code, a $187.42 token bill, 4 merged PRs that I barely understood, and the worst case of developer imposter syndrome I've had in 6 years.

If you're living through the 2026 vibe-coding gold rush, this is the burnout story nobody is telling you.

The Context You Need in July 2026

This isn't 2023 anymore. According to The Pragmatic Engineer survey (March 2026):

  • Claude Code is #1 - Most-used AI coding tool, overtaking Copilot and Cursor in 8 months
  • 75% of devs at startups use it as their primary tool
  • 84% of developers use AI coding tools daily (Stack Overflow 2026), but only 29% trust AI code in production without review
  • 46% named Claude Code their "most loved" tool. Customer satisfaction 91%.

I get it. I was one of them. So I decided to go full agent-mode.

Week 1: The Honeymoon - This Feels Like Superpowers

My setup was straight from the trending dev.to playbook:

Multi-agent workflows. Git worktrees for isolation. A knowledge graph skill for my codebase.

# My dispatch setup - 4 agents in parallel worktrees
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 claude-code

# In each worktree
bd ready # list groomed cards
bd update $ID --claim
/claude-code --model sonnet:brainstorm "implement card $ID"
Enter fullscreen mode Exit fullscreen mode

I was shipping like crazy. Features that used to take me 2 days took 45 minutes.

My commit graph on GitHub looked like I had a team of 5. I posted on X. I felt like a 10x dev.

This is exactly the fantasy that Floods dev.to feeds right now: From SDLC to AI-DLC.

Week 2: The $200 Bill and The Graveyard

Then two things happened.

1. The token bill. I tried 100 Claude Skills like that viral post did. My Ollama on Jetson Nano experiment for a local guardrail failed. I was running Sonnet 4.6 for cheap tasks and Opus 4.6 for "thinking". I blew through my $20 Pro plan in 6 days and upgraded to Max 5x ($100), then Max 20x ($200). My final bill: $187.42 for one month as a solo dev.

Headroom says you can cut token usage by 95%? I learned it the hard way.

2. The code I couldn't read. I opened a PR my agent wrote - a beautiful, 800-line Redis caching layer with perfect tests. All tests passed.

I stared at it for 20 minutes. I could review it. I couldn't write it from scratch anymore.

That trending article title hit me like a truck: "I Could Review It. I Couldn't Write It."

That's exactly when the burnout started. Not from overwork. From under-skilling.

Week 3: I Built a Monitor for Servers. Then Pointed It at Myself.

Inspired by that top post this week by @dannwaneri, I did something stupid.

I had built a health monitor for my side projects - CPU, memory, error rates, token cost per feature. Then I pointed it at MYSELF.

# self_monitor.py - my burnout tracker running locally on Ollama
# This runs 100% local, no tokens wasted

import ollama
from datetime import datetime

daily_log = {
  "lines_written_by_me": 12,
  "lines_written_by_ai": 1847,
  "times_i_said_yes_without_understanding": 7,
  "hours_flow_state": 0.5,
  "hours_reviewing_ai_slop": 4.2
}

prompt = f"""
You are my dev health check. Be brutally honest.
Today: {daily_log}
Am I burned out or just time-blind? 
"""

response = ollama.chat(model='llama3.1:8b', messages=[{'role': 'user', 'content': prompt}])
print(response['message']['content'])
# Output: "You are not coding. You are managing approvals. That's a different job."
Enter fullscreen mode Exit fullscreen mode

It was right. My flow state went from 4 hours/day to 25 minutes/day. I was spending 80% of my time reviewing AI slop, feeling guilty for not understanding my own codebase.

This is what @klaudiagrz meant in "Should I quit IT or just live through the burnout?" - Low-effort AI content isn't just flooding dev.to feeds. It's flooding our repos and our brains.

What Actually Works: My 5 Rules After 30 Days of Full Agent Mode

I didn't quit AI. I quit unmanaged AI. Here's the system that saved me (and my wallet):

1. The Factory Model Needs a Foreman, Not a Fanboy

You're not building software anymore. You're building the factory that builds software. As Addy Osmani says, the spec IS the deliverable.

I now spend more time grooming cards than reviewing code. 60/40 ratio. If the acceptance criteria aren't crystal clear, the agent doesn't run.

2. One Brain, Two Modes

Don't stay in throughput mode. I stole this from @javatarz:

  • Thinking Mode (Single Agent): Exploring, designing, debugging hard bugs. One Claude Code session. This is where learning happens.
  • Throughput Mode (Parallel Agents): Only when you have 3+ independent, well-groomed cards. Short-lived sub-agents for 15-min tasks.

If you don't switch, you lose your ability to think.

3. Build Your Own Guardrail Skill (Local, Free)

I built a multi-agent review skill inspired by that viral "9 AI Experts" post, but local-first.

9 specialists run in parallel: Security, Performance, Architecture, Testing, etc. Each gives a score.

// .claude/skills/local-review/SKILL.md
---
name: local-review-guardrail
description: Run 9 local reviewers before any AI merge
---

// Scoring logic that saved me from merging garbage
function scoreCategory(findings) {
  const crit = Math.min(50, findings.critical * 15)
  const major = Math.min(30, findings.major * 6)
  const minor = Math.min(10, findings.minor * 2)
  return Math.max(0, 100 - crit - major - minor)
}

// If overall < 70, block merge. No exceptions.
Enter fullscreen mode Exit fullscreen mode

I use Ollama + Qwen 3 Coder (open weights, $0.30/M tokens) for this. Zero token cost, and it catches 80% of hallucinations.

4. The 30% Rule for Skill Retention

I force myself to hand-write 30% of all critical path code. No AI. Especially after a file has been touched by 3+ agents.

If you can't rebuild your own auth flow without AI in 30 minutes, you don't own your system.

5. Track Yourself Like You Track a Server

My daily dashboard now has: hours_in_flow, lines_I_actually_typed, times_I_said_'looks good'. When hours_in_flow < 1.5 for 3 days straight, I ban AI for a day.

The Uncomfortable Truth About 2026

We are in the middle of a reality check.

84% of us use AI daily. 46% of us distrust what it writes. 90%+ of our commits might be AI by end of year (SemiAnalysis).

The most popular post this week isn't about a new model. It's "It's You." and "Should I quit IT?" - both about mental health.

Vibe coding didn't make us 10x. It made us managers of code we don't understand, with credit-based pricing and a slow erosion of craft.

The future isn't human vs agent. It's human-agent collaboration, with the human as the skilled reviewer who can still build from scratch if needed. That's what Claude Certified Architect and all these new skills courses are trying to fix.

TL;DR + Your Challenge

I let AI write 90% of my code for 30 days.

  • Week 1: God mode
  • Week 2: $187 bill + couldn't write my own code
  • Week 3: Measured my burnout with a server monitor pointed at myself
  • Week 4: Built a local guardrail system and forced a 30% hand-coding rule

My productivity now? Lower than peak agent-mode, but higher than pre-AI. And I can sleep at night.

Your turn: Try my self-monitor script for one week. Don't change your AI usage, just measure it. Post your numbers. I bet you'll see the same pattern.

Are you still coding, or just approving?


What has your Claude Code / Cursor burnout moment been? Drop it in the comments. I'm collecting stories for part 2.

discuss #productivity #mentalhealth #vibecoding #claudecode

Top comments (0)