<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jeel Vankhede</title>
    <description>The latest articles on DEV Community by Jeel Vankhede (@jeelvankhede).</description>
    <link>https://dev.to/jeelvankhede</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1050284%2F6055714a-b46c-4a13-b353-b6c807eba6ff.jpeg</url>
      <title>DEV Community: Jeel Vankhede</title>
      <link>https://dev.to/jeelvankhede</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jeelvankhede"/>
    <language>en</language>
    <item>
      <title>The Agent Did Exactly What I Asked And That Was the Problem.</title>
      <dc:creator>Jeel Vankhede</dc:creator>
      <pubDate>Thu, 18 Jun 2026 13:45:24 +0000</pubDate>
      <link>https://dev.to/jeelvankhede/the-agent-did-exactly-what-i-asked-and-that-was-the-problem-1hek</link>
      <guid>https://dev.to/jeelvankhede/the-agent-did-exactly-what-i-asked-and-that-was-the-problem-1hek</guid>
      <description>&lt;p&gt;Back in 2022, working with an AI coding assistant meant keeping a browser tab open.&lt;/p&gt;

&lt;p&gt;You typed a question. You got a code block. You figured out where it belonged. That was it.&lt;/p&gt;

&lt;p&gt;The suggestions were useful in the way a dictionary is useful. Technically correct. Completely unaware of what you were actually building. You stitched the outputs together yourself and moved on.&lt;/p&gt;

&lt;h2&gt;
  
  
  The context problem started to close
&lt;/h2&gt;

&lt;p&gt;Then came late 2024.&lt;/p&gt;

&lt;p&gt;MCPs arrived. Context pipelines. Codebase-aware agents that could read your patterns, follow your naming conventions, understand the domain you were working in. The agent was not just answering questions anymore. It knew the project, the structure, the terminology you had already established.&lt;/p&gt;

&lt;p&gt;This was a genuine step change. Not hype.&lt;/p&gt;

&lt;p&gt;But something still did not work on complex tasks.&lt;/p&gt;

&lt;p&gt;Single-feature work was fine. Isolated changes landed cleanly. When the scope crossed modules, crossed boundaries, crossed the full surface area of a codebase, the agent started drifting. It solved the visible problem and left behind the invisible ones.&lt;/p&gt;

&lt;p&gt;I noticed this. I assumed I needed a better plan.&lt;/p&gt;

&lt;p&gt;I was right about that. I was wrong about almost everything else.&lt;/p&gt;

&lt;h2&gt;
  
  
  The agent did exactly what I asked. That was the problem.
&lt;/h2&gt;

&lt;p&gt;The task: a global event mechanism and component communication layer across an entire React Native application.&lt;/p&gt;

&lt;p&gt;This was not a small task. Done by hand, with a focused engineer, it would take two weeks minimum. The agent understood the domain well. I handed it the work, expecting two weeks to become two days.&lt;/p&gt;

&lt;p&gt;I created a plan. I reviewed it. I approved it.&lt;/p&gt;

&lt;p&gt;Neither the agent nor I noticed what the plan did not cover: conditionally-loaded passive components that lived outside the event mitigation scope. No impact map. No blast radius analysis. No verification scenarios. A proper engineering sprint would have treated this as a one to two sprint production artifact. We treated it as a chat output.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The agent implemented the approved plan. Correctly.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That sentence should sound like a success. It is not.&lt;/p&gt;

&lt;p&gt;It looked finished. It was not.&lt;/p&gt;

&lt;p&gt;Passive and conditional components were outside the event mitigation scope entirely. State changes in those sections did not render correctly. The UI broke in places no one had thought to check, which meant I only found them by using the parts of the app the plan had quietly skipped.&lt;/p&gt;

&lt;p&gt;The duplication was worse because it was invisible. Event handling had been wired in across several locations. I only caught it after adding console logs to trace the event flow and watching the same event fire more than once.&lt;/p&gt;

&lt;p&gt;The third failure was different. The agent used a combination of Context and Redux for event-driven architecture. It added boilerplate that was never asked for, invented an implementation pattern that was not in scope, not in the plan, and not something I wanted. I had to go back to plain text, explain how it should actually work, and ask it to correct.&lt;/p&gt;

&lt;p&gt;That raised a question I kept coming back to: &lt;strong&gt;why would AI do something not asked, not in scope?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The answer is not a defect. It is the absence of a constraint. There was no rule saying otherwise. The agent filled the gap with its best guess. The best guess was wrong.&lt;/p&gt;

&lt;h2&gt;
  
  
  No tracking. No checkpoints. No floor.
&lt;/h2&gt;

&lt;p&gt;No task tracking existed. No verification log. No regression checkpoints.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Each observation I fed back got implemented immediately.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Code layered on top of code. The chat thread grew too long.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I summarised and started a new chat. Picked up from there.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;It worked briefly. Then introduced new issues.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The pattern kept repeating.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;By day three, the implementation was 70-75% aligned with the original plan. No clear record of what had been verified, what had not, and what still needed a human decision. Just a long sequence of chat messages and fragile code.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I made it work by the end of day three. Satisfactory,&lt;/em&gt; &lt;strong&gt;&lt;em&gt;not clean.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Coding was never the problem
&lt;/h2&gt;

&lt;p&gt;I went in assuming the failures would be about code quality. Complex logic, edge cases, missed conditions.&lt;/p&gt;

&lt;p&gt;It was not that.&lt;/p&gt;

&lt;p&gt;The agent had good context. It could write the code. What it could not do is decide what the work actually is. That is not a tool limitation. It is a role boundary.&lt;/p&gt;

&lt;p&gt;Not during the process. Not at the end. At the beginning.&lt;/p&gt;

&lt;p&gt;During the process, human review catches mistakes after they happen. At the beginning, human judgment defines the surface area before anything starts.&lt;/p&gt;

&lt;p&gt;That realization sent me looking. After three days, I researched existing solutions and tested a few. &lt;em&gt;They work.&lt;/em&gt; They are well thought through. But they are built for the general case. To use them seriously, you adapt them to your stack, your conventions, your project's specific constraints. That gap is the part nobody packages for you.&lt;/p&gt;

&lt;p&gt;I did not want to recommend something I had not built and broken and rebuilt. I did not want to write about a workflow I had read about rather than lived. I was not sure the workflow would hold.&lt;/p&gt;

&lt;p&gt;The thing I was missing was not a better tool. It was a contract.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Seven phases&lt;/strong&gt;. A human approves every handoff before the next phase begins.&lt;/p&gt;

&lt;p&gt;That is what the next part covers.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>softwareengineering</category>
      <category>developertools</category>
    </item>
    <item>
      <title>Open the PR your reviewer has not met yet</title>
      <dc:creator>Jeel Vankhede</dc:creator>
      <pubDate>Thu, 18 Jun 2026 13:41:35 +0000</pubDate>
      <link>https://dev.to/jeelvankhede/open-the-pr-your-reviewer-has-not-met-yet-4gfe</link>
      <guid>https://dev.to/jeelvankhede/open-the-pr-your-reviewer-has-not-met-yet-4gfe</guid>
      <description>&lt;p&gt;I got a PR to review recently. Large diff, AI-assisted, touching a module three other features depended on. The description was one sentence. It named the file, not the reason.&lt;/p&gt;

&lt;p&gt;I spent fifteen minutes just mapping the change before I could start reviewing. What the intent was. Where the risk was. Which files mattered and which were noise.&lt;/p&gt;

&lt;p&gt;Somewhere in the middle of that fifteen minutes, I thought: I have done this to someone else.&lt;/p&gt;




&lt;h2&gt;
  
  
  The author forgets what the reviewer does not know
&lt;/h2&gt;

&lt;p&gt;When you write the code, you carry everything.&lt;/p&gt;

&lt;p&gt;You know why the module was split. You know what you tried before landing here. You know which section you shipped with a quiet doubt. You know the edge case that is technically handled but not properly tested.&lt;/p&gt;

&lt;p&gt;Then you open the PR.&lt;/p&gt;

&lt;p&gt;And you write the description from that place. From inside the full context, for the version of you who already knows. Not for the reviewer who is about to walk in without any of it.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Refactored service layer."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Updated config handling."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Fixed issue with auth module."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;These are descriptions written from memory, not for someone without it.&lt;/p&gt;




&lt;h2&gt;
  
  
  AI widened the gap before I noticed
&lt;/h2&gt;

&lt;p&gt;There is a specific unease I have felt looking at my own PRs a couple of days after raising them.&lt;/p&gt;

&lt;p&gt;The code is fine. The tests pass. But I cannot reconstruct why I made the choices I made. The work was AI-assisted, the diff was large, and I had moved fast. Moving fast and understanding deeply are not the same thing.&lt;/p&gt;

&lt;p&gt;I opened one of those PRs recently. A refactoring pass. I tried to read it as a reviewer. I had a question I could not answer from the description. The answer existed. It was in my head when I wrote the code. It never made it into the PR.&lt;/p&gt;

&lt;p&gt;That was the moment I realized &lt;em&gt;the description was not a summary.&lt;/em&gt; &lt;strong&gt;&lt;em&gt;It was a test&lt;/em&gt;.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Write it for the version of you who will review this in three days
&lt;/h2&gt;

&lt;p&gt;That realization changed how I write descriptions.&lt;/p&gt;

&lt;p&gt;Not a template first. A question first: if I came back to this PR in three days knowing nothing, what would I need to read before opening the diff?&lt;/p&gt;

&lt;p&gt;I sat with that question long enough to realize I needed a structure. Not something I could skip when moving fast. A concrete template I would follow before any non-trivial PR opens. I built it, tested it across refactoring passes, AI-assisted features, and larger architectural changes, and refined it until it held.&lt;/p&gt;

&lt;p&gt;It has six parts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Intent&lt;/strong&gt; - not what changed, but why this PR exists and what problem it is solving. One paragraph. If you cannot write it clearly, stop. The PR is not ready to open.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Major changes&lt;/strong&gt; - the decisions that touch architecture, existing behavior, or anything a downstream system depends on. This is where the reviewer needs to slow down.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Minor changes&lt;/strong&gt; - the cleanup, the renames, the noise. Named separately, so they do not sit next to structural changes and get equal weight.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Impact&lt;/strong&gt; - what features, modules, or systems this PR touches. The blast radius, stated plainly. Not documentation. A map.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Evidence&lt;/strong&gt; - what was run, what was walked through manually, what coverage looked like. Not to satisfy a process. Proof that the author did the work before asking someone else to do it.&lt;/p&gt;

&lt;p&gt;And the one most descriptions never reach: what I was uncertain about.&lt;/p&gt;




&lt;h2&gt;
  
  
  Naming uncertainty is not weakness. It is direction.
&lt;/h2&gt;

&lt;p&gt;When something works but I cannot fully explain why, I say so. Directly, in the description.&lt;/p&gt;

&lt;p&gt;For the reviewer, it is a targeting signal. They know where to read closely and where to move. Without it, they distribute attention evenly across a diff that does not deserve even attention.&lt;/p&gt;

&lt;p&gt;Writing it is a checkpoint. If I cannot name what I am uncertain about, I have not thought carefully enough about my own code. That line has stopped me from opening PRs that were not ready.&lt;/p&gt;

&lt;p&gt;The description is not the last step before review. It is the last step before I know whether the PR should open at all.&lt;/p&gt;




&lt;h2&gt;
  
  
  The reviewer who opens this has not met your code yet
&lt;/h2&gt;

&lt;p&gt;When I compare the PRs I was proud of shipping against the ones that came back with questions, the difference is rarely the code.&lt;/p&gt;

&lt;p&gt;It is the description.&lt;/p&gt;

&lt;p&gt;A reviewer who understands your intent from the first read spends their time on the hard questions. A reviewer who has to reconstruct your intent spends it on the easy ones. Asking what things are instead of whether they are right.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/jeelvankhede/review-the-code-that-does-not-exist-yet-11f8"&gt;Part 1&lt;/a&gt; of this series argues the reviewer's side of the same problem. If you arrived here first, it is worth the detour. The argument there: reviewers now need to look past surface correctness and find intent. But intent does not appear on its own. Someone has to put it there before the review begins.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Write it for the reviewer who has not met your code yet.&lt;/p&gt;

&lt;p&gt;Write it as if you will not be there to answer questions.&lt;/p&gt;

&lt;p&gt;Write it as if the next person to read it is you, three days from now, with no memory of writing it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If it holds up, the PR is ready.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>codereview</category>
      <category>productivity</category>
      <category>programmingblogs</category>
    </item>
    <item>
      <title>Review the code that does not exist yet</title>
      <dc:creator>Jeel Vankhede</dc:creator>
      <pubDate>Thu, 18 Jun 2026 13:40:42 +0000</pubDate>
      <link>https://dev.to/jeelvankhede/review-the-code-that-does-not-exist-yet-11f8</link>
      <guid>https://dev.to/jeelvankhede/review-the-code-that-does-not-exist-yet-11f8</guid>
      <description>&lt;p&gt;I have reviewed code for years, and for most of that time the habit was simple. Open the diff. Read every line. Find what is wrong. It worked, and it worked for a boring reason: the diffs were small because writing code by hand is slow.&lt;/p&gt;

&lt;p&gt;The diffs are not small anymore.&lt;/p&gt;

&lt;p&gt;A pull request now arrives with twenty files in it, built in an afternoon, more code than I could have written by hand in a week. The old habit does not fit a change that size. It bends, then it breaks. So I had to ask a question I had spent years quietly avoiding.&lt;/p&gt;

&lt;p&gt;What is a code review actually for?&lt;/p&gt;

&lt;h2&gt;
  
  
  The first thing I lost was the point
&lt;/h2&gt;

&lt;p&gt;Few years ago, I was the senior reviewer on a small team. I took the role seriously. Maybe too seriously.&lt;/p&gt;

&lt;p&gt;I opened each pull request hunting for faults. Indentation. Naming. A function that could be three lines shorter. A pattern we had agreed not to use. I found them. I was good at finding them. It felt like the job. Every comment was proof that I had been paying attention.&lt;/p&gt;

&lt;p&gt;One day I left seventeen comments on a frontend pull request.&lt;/p&gt;

&lt;p&gt;It was a CSS-heavy change, and CSS changes are hard to review on a diff. The developer had not followed the UI design standards we had set as a team. Almost none of them. So I went through it line by line and marked every single thing I could find. I sent it back.&lt;/p&gt;

&lt;p&gt;I felt like a jerk afterward. But I also thought I had done the right thing.&lt;/p&gt;

&lt;p&gt;Then I looked at what I had actually been reviewing.&lt;/p&gt;

&lt;p&gt;I had read every line. I had not read the work.&lt;/p&gt;

&lt;p&gt;The developer had built exactly what was asked. The feature worked. It was a clear, self-contained piece of UI. And I had spent the entire review arguing with the formatting, as if the formatting were the thing we shipped to users.&lt;/p&gt;

&lt;p&gt;That is the day I started reviewing code for a different thing. Not for what it does the moment it lands. For what someone will do to it next.&lt;/p&gt;

&lt;p&gt;This is not an argument for shipping mess. I still send back work that buries its intent under careless code, because code that is hard to understand is hard to change, and hard to change is where the real cost lives. The difference is that I keep room for an exception now. I do not treat every rule as a wall I am paid to defend.&lt;/p&gt;

&lt;p&gt;A rule is a tool for protecting intent. When I started treating the rule as the point, I forgot what it was protecting.&lt;/p&gt;

&lt;p&gt;I had been reviewing the rules. I had stopped reviewing the work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Then the diffs got faster than I could read
&lt;/h2&gt;

&lt;p&gt;For a long time that lesson stayed quiet. Useful, but never urgent.&lt;/p&gt;

&lt;p&gt;Most pull requests were small, because authoring was slow, and a reviewer could keep pace with an author without much strain. One person wrote for a day, another read for an hour, and the arithmetic worked. The whole practice of review was built on that arithmetic.&lt;/p&gt;

&lt;p&gt;Then people started building with AI.&lt;/p&gt;

&lt;p&gt;Now a change lands with twenty files. Different layers, different concerns, all in one push, all produced faster than I have ever produced anything in my life. And my first thought is almost always the same.&lt;/p&gt;

&lt;p&gt;This is over-engineered.&lt;/p&gt;

&lt;p&gt;Sometimes it is. Often it is not. The instinct fires not because I have judged the design, but because the sheer size of the thing is unfamiliar, and unfamiliar reads as wrong. The honest problem is mine. I could never have written that much code in a day. Reviewing it in a day was the part that unsettled me most.&lt;/p&gt;

&lt;p&gt;The bottleneck moved.&lt;/p&gt;

&lt;p&gt;AI made writing code cheap. It did not make reviewing it cheap.&lt;/p&gt;

&lt;p&gt;Authoring used to be the slow and expensive step, and review was the quick sanity check at the end. That order has flipped. The code now arrives at almost no cost. The judgment about whether the code is right costs exactly what it always did, because judgment was never the part AI made faster.&lt;/p&gt;

&lt;p&gt;The bottleneck did not disappear. It moved onto my desk.&lt;/p&gt;

&lt;h2&gt;
  
  
  So I changed what I look for first
&lt;/h2&gt;

&lt;p&gt;If I cannot read twenty files the way I read two, then reading every line first is the wrong opening move. It is slow. Worse than slow, it is misaimed. It spends my sharpest attention on the smallest things, early, while the largest things wait, unread.&lt;/p&gt;

&lt;p&gt;So I stopped starting with the code.&lt;/p&gt;

&lt;p&gt;I start with intent. What is this change trying to do, and does the shape of it match that goal? Does the structure tell the same story the description promised? Only after those questions do I care how any individual line is written.&lt;/p&gt;

&lt;p&gt;This is what I mean by reviewing the code that does not exist yet.&lt;/p&gt;

&lt;p&gt;The diff in front of me is temporary. It is the least permanent thing in the whole exchange. Someone will change it in six months. Someone will debug it at two in the morning with half the context I have right now. Someone will push it past the scale the author ever imagined, and watch it fail in a way nobody designed for.&lt;/p&gt;

&lt;p&gt;Those people are who the review is really for. Not the author, who already understands the change. Not me, who will forget it by next week. The stranger who inherits it.&lt;/p&gt;

&lt;p&gt;The diff is what changed. The future is what I am approving.&lt;/p&gt;

&lt;h2&gt;
  
  
  The order is the method
&lt;/h2&gt;

&lt;p&gt;Over time my questions settled into an order, and the order turned out to be the whole point. It is not a list to tick off until every box is full. It is a path, and most of it happens before I judge a single line.&lt;/p&gt;

&lt;p&gt;It runs like this.&lt;/p&gt;

&lt;p&gt;What is this trying to do? → How did they solve it, and would I have solved it differently? → What trade-offs or unknowns are sitting in plain sight? → Does this actually improve the thing, or is it added weight, a time bomb waiting for the day nobody is watching? → Am I sure?&lt;/p&gt;

&lt;p&gt;Each question guards against a different failure.&lt;/p&gt;

&lt;p&gt;The first keeps me from reviewing a change I do not understand. The second keeps me honest about the difference between a real problem and my personal taste. The third is where most of the danger hides, because the dangerous parts of a change are rarely the loud ones. The fourth is the one that only gets answered in production, usually later than you wanted. And the last question, am I sure, is the one I added for myself, because the worst approvals I have given were the confident ones.&lt;/p&gt;

&lt;p&gt;Only after all of that do I open the files and read them line by line, with no mercy.&lt;/p&gt;

&lt;p&gt;Look at where the strict part lives. At the very end.&lt;/p&gt;

&lt;p&gt;Everything before it is about understanding the work and arguing with my own judgment. The line-level pass is not the review. It is the last step of the review, and it only earns its place once the rest has cleared.&lt;/p&gt;

&lt;p&gt;You earn the right to nitpick. You do not start there.&lt;/p&gt;

&lt;h2&gt;
  
  
  This is not permission to ship slop
&lt;/h2&gt;

&lt;p&gt;I can hear the objection, because I would raise it myself. Does intent-first mean a lower bar? Does it mean waving through sloppy code as long as the idea behind it is clear enough?&lt;/p&gt;

&lt;p&gt;No.&lt;/p&gt;

&lt;p&gt;The strict pass still happens. It happens last instead of first, but it happens, and nothing on the list above is a substitute for it. Intent-first is not standards-free. It is the same standards in a better order.&lt;/p&gt;

&lt;p&gt;And there is a newer risk that makes the order matter more, not less.&lt;/p&gt;

&lt;p&gt;Volume hides intent.&lt;/p&gt;

&lt;p&gt;A twenty-file change can be correct in every single file and still be dangerous, because no one person can hold the whole of it in their head at once. The failure is not in any one line. It lives in the space between the files, in an assumption made in one place and quietly broken in another.&lt;/p&gt;

&lt;p&gt;About nine months ago a pull request landed on my desk with forty-five files in it. I was lenient. I skimmed the parts that looked safe, approved what looked obvious, and moved on.&lt;/p&gt;

&lt;p&gt;Six months later the APIs started creating duplicate transactions in production. We could not find the root cause. The file at the center of the problem had grown to over five thousand lines of code, and the issue was buried inside of it.&lt;/p&gt;

&lt;p&gt;It took a long time to dig out. That change had looked fine in every file I checked. I had just never asked whether it was wise.&lt;/p&gt;

&lt;p&gt;Reading for intent is how I catch that before it merges. A checklist cannot — it looks at each file alone.&lt;/p&gt;

&lt;p&gt;A checklist can tell me the code is correct. It cannot tell me the code is wise.&lt;/p&gt;

&lt;p&gt;The fear I started this with never left me. I have just stopped fighting it, and started letting it sharpen the right questions.&lt;/p&gt;

&lt;p&gt;I did not learn to read faster. I learned to read in the right order.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I actually approve
&lt;/h2&gt;

&lt;p&gt;This is what I think a review is.&lt;/p&gt;

&lt;p&gt;I am not the spell-checker. I am not the gate that catches a missing semicolon or an unused import. I am the person asking what this change will do to whoever inherits it, long after the author and I have both moved on.&lt;/p&gt;

&lt;p&gt;That question works at every level of experience, because it is a question and not a rule. A new engineer can ask it on their very first review. A senior engineer asks it on their thousandth. Nobody is too junior to wonder what happens to this code in a year. Seniority does not exempt you from the question.&lt;/p&gt;

&lt;p&gt;And it has a limit I have started to feel.&lt;/p&gt;

&lt;p&gt;A reviewer can only do so much when the pull request is fighting them. If the intent is buried, if twenty files arrive with no story to tie them together, if the risky change is hidden in the middle of a dozen safe ones, then no amount of patient reading will rescue the review. The reader cannot supply a clarity the author refused to provide.&lt;/p&gt;

&lt;p&gt;Which means half of this problem was never the reviewer's at all. It belongs to the person opening the pull request. That is the other &lt;a href="https://dev.to/jeelvankhede/open-the-pr-your-reviewer-has-not-met-yet-4gfe"&gt;half of the story&lt;/a&gt;, and it deserves its own piece.&lt;/p&gt;

&lt;p&gt;Review is not about the code in front of you. It is about the code that comes after.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>codereview</category>
      <category>programmingblogs</category>
      <category>bestpractices</category>
    </item>
    <item>
      <title>Most Engineers Use AI. Few Engineer With It.</title>
      <dc:creator>Jeel Vankhede</dc:creator>
      <pubDate>Wed, 17 Jun 2026 23:25:52 +0000</pubDate>
      <link>https://dev.to/jeelvankhede/most-engineers-use-ai-few-engineer-with-it-3pd</link>
      <guid>https://dev.to/jeelvankhede/most-engineers-use-ai-few-engineer-with-it-3pd</guid>
      <description>&lt;p&gt;Most software engineers I know use AI in some form now.&lt;/p&gt;

&lt;p&gt;Maybe it is for debugging, boilerplate, tests, docs, SQL queries, shell commands, or quick code reviews. Some use it daily. Some use it quietly. &lt;em&gt;Even the skeptical ones have probably pasted a confusing stack trace into a chat window once.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;So I do not think the interesting question is:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;“Do engineers use AI?”&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The better question is:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;“Has AI changed how they engineer?”&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Because those are not the same thing.&lt;/p&gt;

&lt;p&gt;Using AI is easy.&lt;/p&gt;

&lt;p&gt;Engineering with AI is much harder.&lt;/p&gt;

&lt;h2&gt;
  
  
  The hard part was not code generation
&lt;/h2&gt;

&lt;p&gt;I noticed this while using AI around real repository tasks where a wrong change was not just “bad output”; it could break structure, tests, naming, or future maintainability.&lt;/p&gt;

&lt;p&gt;The code generation part was easy. A broad prompt could produce a lot of code quickly. Sometimes the output even looked clean at first glance.&lt;/p&gt;

&lt;p&gt;But the useful results came only when I had already done the boring engineering work: define the requirement, limit the scope, explain constraints, and decide how I would verify the change.&lt;/p&gt;

&lt;p&gt;The hard part was not asking AI to write code.&lt;/p&gt;

&lt;p&gt;The hard part was giving enough context without dumping everything into the prompt. It was making the task small enough. It was asking for tradeoffs before implementation. It was reviewing the output without getting impressed by clean formatting.&lt;/p&gt;

&lt;p&gt;Most importantly, it was checking whether the solution actually belonged in the system.&lt;/p&gt;

&lt;p&gt;That changed how I looked at AI-assisted development.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Prompting was not the real skill.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Shaping the work was.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  AI makes output faster, not verification stronger
&lt;/h2&gt;

&lt;p&gt;There is nothing wrong with using AI for small tasks.&lt;/p&gt;

&lt;p&gt;I use it for debugging direction, naming, boilerplate, test ideas, documentation drafts, and exploring unfamiliar code. Those are useful tasks. They reduce friction.&lt;/p&gt;

&lt;p&gt;But the risk starts when faster output gets mistaken for better engineering.&lt;/p&gt;

&lt;p&gt;AI can generate code quickly. It can produce clean-looking functions, structured files, confident explanations, and reasonable test cases. But it does not automatically know whether the change fits your product, your architecture, your constraints, or your long-term maintenance cost.&lt;/p&gt;

&lt;p&gt;That part is still engineering work.&lt;/p&gt;

&lt;p&gt;The problem is not simply that AI may produce bad code. Engineers already deal with bad code from humans, libraries, tutorials, Stack Overflow answers, and their own tired brains.&lt;/p&gt;

&lt;p&gt;The bigger problem is that AI increases the speed of output without increasing the quality of verification.&lt;/p&gt;

&lt;p&gt;If code becomes faster to generate, unclear requirements become more expensive. Weak review becomes more dangerous. Missing tests become more painful. Poor architecture becomes easier to copy and harder to undo.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI does not automatically improve engineering.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It amplifies the engineering loop that already exists.&lt;/p&gt;

&lt;h2&gt;
  
  
  Think twice, code once
&lt;/h2&gt;

&lt;p&gt;AI makes it easier to produce code before we have &lt;strong&gt;fully understood the problem&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;That is useful when the task is clear.&lt;/p&gt;

&lt;p&gt;It is dangerous when the task is vague.&lt;/p&gt;

&lt;p&gt;If the requirement is unclear, AI will still produce something. If the architecture is messy, AI will still copy the mess. If the engineer cannot review the output properly, speed becomes risk.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This is why I think &lt;strong&gt;“AI will replace engineers”&lt;/strong&gt; is the least useful version of the conversation.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A better question is:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;“What parts of engineering become more important when code becomes cheaper to generate?”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;My answer is: thinking clearly before implementation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI makes the old advice more important, not less:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Think twice, code once.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Before asking AI to build, define the problem.&lt;/p&gt;

&lt;p&gt;Before accepting the answer, check the tradeoffs.&lt;/p&gt;

&lt;p&gt;Before merging the change, verify the behaviour.&lt;/p&gt;

&lt;p&gt;The value of engineering is shifting away from simply writing code and more toward shaping the right change.&lt;/p&gt;

&lt;h2&gt;
  
  
  What engineering with AI looks like
&lt;/h2&gt;

&lt;p&gt;For me, engineering with AI means treating it less like &lt;strong&gt;a magic answer box&lt;/strong&gt; and more like a collaborator that needs structure.&lt;/p&gt;

&lt;p&gt;The work starts before implementation: write the requirement, narrow the scope, give useful context, ask for risks, and force a plan before code.&lt;/p&gt;

&lt;p&gt;After implementation, the responsibility comes back to the engineer: review the diff, run the checks, and decide whether the change belongs in the system.&lt;/p&gt;

&lt;p&gt;A useful AI-assisted loop can be simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Requirement → gaps → plan → small change → review → checks → notes&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is not the glamorous version of AI development.&lt;/p&gt;

&lt;p&gt;But it is closer to real engineering.&lt;/p&gt;

&lt;p&gt;Because real engineering is not just producing code.&lt;/p&gt;

&lt;p&gt;It is producing reliable change.&lt;/p&gt;

&lt;h2&gt;
  
  
  The real shift
&lt;/h2&gt;

&lt;p&gt;The next shift in software engineering will not be about who can generate the most code.&lt;/p&gt;

&lt;p&gt;That advantage is already becoming cheaper.&lt;/p&gt;

&lt;p&gt;The harder advantage is knowing what should be built, how it should fit into the system, and how to verify that it works.&lt;/p&gt;

&lt;p&gt;That is where AI-assisted engineering becomes interesting.&lt;/p&gt;

&lt;p&gt;Not because AI replaces engineering judgment.&lt;/p&gt;

&lt;p&gt;Because it makes engineering judgment harder to skip.&lt;/p&gt;

&lt;p&gt;Most major engineering tools became valuable only after teams changed the workflow around them. Git changed collaboration. Cloud changed infrastructure. CI/CD changed shipping.&lt;/p&gt;

&lt;p&gt;AI is broader, messier, and moving faster than those shifts, so I do not want to pretend it will follow the exact same path.&lt;/p&gt;

&lt;p&gt;But the lesson still feels familiar:&lt;/p&gt;

&lt;p&gt;The tool matters.&lt;/p&gt;

&lt;p&gt;The workflow around the tool matters more.&lt;/p&gt;

&lt;p&gt;The engineers who benefit most will not necessarily be the ones who use AI the most. They will be the ones who design better loops around it: clearer specs, smaller changes, stronger reviews, better tests, and more deliberate decisions.&lt;/p&gt;

&lt;p&gt;So yes, most engineers use AI now.&lt;/p&gt;

&lt;p&gt;But only a few are starting to engineer with it.&lt;/p&gt;

&lt;p&gt;The best engineers in this phase may not be the fastest prompt writers.&lt;/p&gt;

&lt;p&gt;They may be the ones who can slow the problem down before speeding the implementation up.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>softwareengineering</category>
      <category>programing</category>
    </item>
  </channel>
</rss>
