Six months ago I was a skeptic. I'd tried ChatGPT for code, gotten back plausible-looking nonsense, and concluded the whole thing was overhyped. Then I tried an agentic tool — one that could read files, run commands, and iterate — and within an hour I was building things that would have taken me a full evening.

That gap — between "AI that suggests code" and "AI that actually builds things" — is the entire story of 2026 for developers.

The numbers are real

According to the 2026 Anthropic Agentic Coding Trends report, software development is shifting from an activity centered on writing code to one grounded in orchestrating agents that write code. 95% of developers now use AI tools weekly. 75% say they do more than half their work with AI. Claude Code became the #1 coding assistant within 8 months of launch.

These numbers sounded inflated to me six months ago. They don't anymore.

The good

The biggest win is speed — but not the kind you might expect. It's that I can explore three different approaches to a problem in the time it used to take me to commit to one. That changes how you think about architecture. You're not optimizing for getting it right the first time anymore. You're optimizing for learning fast.

For repetitive work — boilerplate, API endpoints, CRUD operations — the gain is enormous. I'd estimate 5-10x faster. The agent learns the pattern from one example and replicates it across a dozen files without complaint.

Debugging with full context is another genuine win. When the agent has read your codebase, it can diagnose bugs in seconds that I'd been staring at for an hour.

The frustrating part

Here's what nobody warns you about: agents are overconfident. They present everything with the same assured tone, whether it's a perfect implementation or a subtle bug waiting to bite you. The confidence doesn't correlate with correctness.

I've had agents generate clean-looking code with off-by-one errors, suggest unnecessary abstractions that turned a 10-line function into three files, delete working code during refactors, and invent plausible-sounding metrics that supported my hypothesis but were complete nonsense.

That last one is the most dangerous. An agent once generated a beautiful chart with equations that seemed rigorous — until I realized the formula was entirely made up. The output looked convincing. It simply wasn't true.

What changed my results

After a frustrating first month, I made three changes that transformed everything:

1. Write an AGENTS.md file. Without it, every session starts with the agent rediscovering your project. With a thin index — goals, stack, conventions, where the docs live — the agent has context from minute one. This alone cut my iteration time by half.

2. Force the agent to surface tradeoffs. The default is to silently choose an approach. I made it present options and explain why it picked one. Smaller changes, less surprise architecture rewrites, code I could actually review.

3. Use agents for what they're good at. Agents excel at implementation when you know what you want. They struggle when the destination is fuzzy. I stopped asking them to design architecture and started asking them to execute clearly specified plans. The quality jump was immediate.

Where we're heading

Gartner projects 40% of enterprise applications will incorporate task-specific AI agents by end of 2026. Anthropic predicts agents evolving from handling tasks that complete in minutes to working autonomously for days at a time.

The shift is real. But agentic coding doesn't replace developers — it changes what being a developer means. Your job shifts from writing every line to orchestrating agents, reviewing output, and making the strategic decisions agents can't.

As one developer put it: "The productivity gains are real. But I trust the agents far less than the evangelists do."

Six months in, that's exactly where I land. The future probably is agentic. The present still needs adult supervision.