Skip to content

deltadigit

DeltaDigit
ServicesAIStackProcessWorkBlogGet in touch
All writing

//

Perspective

AI won't replace software engineers — it will reshape the job

Dušan Dević

March 12, 2026

7 min read


Every six months a fresh round of headlines declares software engineering dead. The argument always sounds reasonable: AI writes code, AI reads code, AI ships pull requests, ergo nobody needs a person to do those things. We have been hearing this for two years, and the industry has done what it always does — kept hiring, kept shipping, kept growing the surface area of what software touches.

That does not mean nothing has changed. The day-to-day of an engineer in 2026 looks markedly different from 2022. Some of it is faster, some of it is more interesting, some of it is harder. Here is the honest version of what AI is actually doing to our craft, based on building production systems with it every week.

What AI is genuinely good at right now

Boilerplate is mostly a solved problem. Translating a JSON schema into a typed client, scaffolding a CRUD module, writing a first-pass test suite for a pure function, mapping a SQL result into a DTO — none of this is interesting work, and AI handles it with high accuracy. A senior engineer can now skip most of the typing and spend that time on the parts of the system that actually require judgment.

Pattern recognition is the second big one. Why is this query slow? or what changed in this 4,000-line diff? or find every place we forgot to handle the null case. AI is genuinely useful as a second pair of eyes — not as the final word, but as a fast first pass. It catches things tired humans miss.

Documentation, finally, is having a renaissance. The cost of writing decent docs has dropped to near zero, and the quality of generated docs has gone from "useless and confidently wrong" to "needs light editing."

What it still cannot do

Building software is mostly not typing. The interesting questions show up before any code is written and after it is deployed: What problem are we actually solving? Who is this for? What is the failure mode at 2am? Which of these three reasonable architectures will we regret in two years?

AI is a poor substitute for a person sitting in a meeting deciding what not to build. It is worse at reading a room, reading a roadmap, or reading the emotional state of a customer who just lost data. None of those things are about syntax, and none of them are getting solved by a bigger model.

It also struggles with novelty. Implement this thing that has been built ten thousand times — easy. Reason about a weird interaction between three systems that nobody fully understands, including the people who built them — much harder. The further you get from well-trodden patterns, the more an experienced human matters.

The job is changing shape, not disappearing

A useful way to think about it: AI compresses the production phase of software, and expands every other phase. There is more time for design. More time for code review of AI-generated code, which is a distinct skill. More time for evaluation, telemetry, and incident response. More time, frankly, for thinking.

We are seeing engineers become more like editors and architects, less like typists. The senior person who used to write 800 lines a day now reviews 4,000 — most of it produced by an agent under their direction. The bar for "I shipped this" has not moved, but the path to shipping has.

The skills that compound

If you are early in your career, the temptation to skip the fundamentals because "AI does that part" is real and dangerous. Three areas have appreciated, not depreciated:

  • Systems thinking — understanding how distributed pieces fail together. AI is bad at this; humans who understand it are increasingly valuable.
  • Code review — reading code critically, asking the right questions, rejecting the plausible-but-wrong answer. Doing this well is now most of the job.
  • Product judgment — knowing what to build, when to stop, when to throw something away. AI has no taste.

The engineers we hire today need to understand the stack they are working in deeply enough to know when the model is hallucinating, lying, or just wrong. That is a higher bar than it used to be, not a lower one.

Tools change. The craft is staying the same — and getting more interesting.

We have watched this movie before, with compilers, with high-level languages, with the cloud. Every time the industry gets a productivity multiplier, it does not shrink — it expands. There is just always more software to build than there are engineers to build it. AI is the biggest multiplier we have seen in twenty years. It is going to make this field bigger, faster, and more demanding. Not smaller.

  • #AI
  • #careers
  • #engineering

// about the author

Dušan Dević

Founder · DeltaDigit. We design, build, and operate production software for ambitious teams across the EU and US.

Book a 15-min callMessage on WhatsApp

Keep reading

More from the workshop

All posts
Engineering

R.

May 1, 2026

6 min read

Chat with your documents is easy. Until you have a lot of documents.

A small RAG demo with 50 PDFs feels magic. Scale it to 500,000 and the same architecture starts producing confident, plausible, wrong answers. Here is why — and what actually fixes it.

by Dušan Dević

Engineering

A.

Apr 22, 2026

8 min read

Beyond the chatbot: AI agents that actually do things

Text replies are the smallest possible thing an agent can do. The shift to tool-using agents is small in code and huge in product implications — here is what production-ready looks like.

by Dušan Dević