<?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: Sambit Mallick</title>
    <description>The latest articles on DEV Community by Sambit Mallick (@sambit_kumarmallick_bce8).</description>
    <link>https://dev.to/sambit_kumarmallick_bce8</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%2F4102558%2F57b39174-0178-4cb9-9188-2560683d48c1.jpg</url>
      <title>DEV Community: Sambit Mallick</title>
      <link>https://dev.to/sambit_kumarmallick_bce8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sambit_kumarmallick_bce8"/>
    <language>en</language>
    <item>
      <title>I gave an AI eight real DevOps jobs. Here's where it shipped — and where it quietly got it wrong.</title>
      <dc:creator>Sambit Mallick</dc:creator>
      <pubDate>Mon, 31 Aug 2026 10:35:51 +0000</pubDate>
      <link>https://dev.to/sambit_kumarmallick_bce8/i-gave-an-ai-eight-real-devops-jobs-heres-where-it-shipped-and-where-it-quietly-got-it-wrong-4m2i</link>
      <guid>https://dev.to/sambit_kumarmallick_bce8/i-gave-an-ai-eight-real-devops-jobs-heres-where-it-shipped-and-where-it-quietly-got-it-wrong-4m2i</guid>
      <description>&lt;p&gt;For the last couple of months I've been handing an AI agent (Claude Code) real DevOps work&lt;br&gt;
— not toy prompts, but actual failing pipelines, real pull requests, a live Kubernetes&lt;br&gt;
cluster — and filming what happens. Everything ran locally at $0 (no managed API bill), on&lt;br&gt;
real repos, with a human reviewing every change before it merged.&lt;/p&gt;

&lt;p&gt;The interesting part was never "look, AI did the thing." It was the seam between &lt;em&gt;where it&lt;br&gt;
genuinely shipped&lt;/em&gt; and &lt;em&gt;where it produced something that looked right and wasn't.&lt;/em&gt; That&lt;br&gt;
seam is the whole job. Here's what I found.&lt;/p&gt;

&lt;h2&gt;
  
  
  The result that made me stop trusting it as a gate
&lt;/h2&gt;

&lt;p&gt;I ran the same AI code review on the &lt;strong&gt;same pull request, twice.&lt;/strong&gt; I got two different&lt;br&gt;
verdicts — one run approved it, the other flagged a blocking issue. Same diff, same prompt,&lt;br&gt;
same model.&lt;/p&gt;

&lt;p&gt;That's not a bug, it's the nature of the tool: it's a sampler, not a linter. And it has a&lt;br&gt;
direct consequence for how you're allowed to wire it in. &lt;strong&gt;An AI reviewer cannot be a&lt;br&gt;
required status check that blocks merges&lt;/strong&gt; — not while the same input can yield "approve"&lt;br&gt;
and "request changes" on two runs. It's a fantastic &lt;em&gt;second pair of eyes&lt;/em&gt; that catches&lt;br&gt;
things humans skim past. It is not a deterministic gate. Treat it like a very sharp junior&lt;br&gt;
who's occasionally, confidently wrong.&lt;/p&gt;

&lt;p&gt;What I do now:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use it as an &lt;strong&gt;advisory&lt;/strong&gt; reviewer that comments, never one that blocks.&lt;/li&gt;
&lt;li&gt;Keep temperature/settings pinned and prompts version-controlled so at least the &lt;em&gt;inputs&lt;/em&gt;
are stable.&lt;/li&gt;
&lt;li&gt;Assume any single run can miss things; the value is in the aggregate signal, not the verdict.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;(Full run: &lt;a href="https://youtu.be/lox5bc7zCqM" rel="noopener noreferrer"&gt;https://youtu.be/lox5bc7zCqM&lt;/a&gt;)&lt;/p&gt;

&lt;h2&gt;
  
  
  Where it genuinely earned its keep
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Reading CI logs.&lt;/strong&gt; I pointed it at a red GitHub Actions pipeline with three real failures&lt;br&gt;
— a dependency conflict, a genuine off-by-one in a test, and a workflow pinned to the wrong&lt;br&gt;
Python. It read each failing step's log, named the root cause, and proposed the smallest fix&lt;br&gt;
for each. It was legitimately faster than I am at the boring triage. The honest caveat is in&lt;br&gt;
the title of that episode: &lt;em&gt;"Almost."&lt;/em&gt; — on one of them it fixed the symptom, and a human&lt;br&gt;
still had to redirect it to the actual cause. (&lt;a href="https://youtu.be/pIkPsiBZQ1M" rel="noopener noreferrer"&gt;https://youtu.be/pIkPsiBZQ1M&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On-call, with hard guardrails.&lt;/strong&gt; The one I trust most is an on-call agent that wakes up on&lt;br&gt;
a broken build, finds the fix, and opens a PR explaining what broke — and then &lt;em&gt;stops.&lt;/em&gt; It&lt;br&gt;
has no merge rights. A human reads the PR over coffee and clicks merge. The autonomy ends at&lt;br&gt;
the merge button, on purpose. (&lt;a href="https://youtu.be/UcOt5JrQVco" rel="noopener noreferrer"&gt;https://youtu.be/UcOt5JrQVco&lt;/a&gt;)&lt;/p&gt;

&lt;h2&gt;
  
  
  The guardrails that made agentic DevOps safe enough to film
&lt;/h2&gt;

&lt;p&gt;Every "the AI did DevOps and it was fine" story is really a story about constraints. The set&lt;br&gt;
that worked for me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Edit-only tools.&lt;/strong&gt; No shell, no network, no installs. It can read and edit files and open
PRs — that's it.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Throwaway branches only.&lt;/strong&gt; It never commits to &lt;code&gt;main&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PR-only, no merge rights.&lt;/strong&gt; A human reviews every change. This is the load-bearing one.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One attempt per failure.&lt;/strong&gt; No token-burning retry loops that "eventually" pass by luck.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tests are the spec.&lt;/strong&gt; It never silences or weakens a failing test to go green.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Give an agent hands but not the keys, and most of the scary failure modes just… can't happen.&lt;/p&gt;

&lt;h2&gt;
  
  
  Scaling review without paying for it
&lt;/h2&gt;

&lt;p&gt;Three episodes are about making review cheap and constant:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Instant review on every PR&lt;/strong&gt;, free, via a GitHub Actions workflow — the review lands
seconds after the PR opens. (&lt;a href="https://youtu.be/8xEto5pcoJY" rel="noopener noreferrer"&gt;https://youtu.be/8xEto5pcoJY&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ephemeral self-hosted runners on Kubernetes&lt;/strong&gt; (Actions Runner Controller): a fresh pod
per PR that runs the review and self-destructs. $0, no idle runners.
(&lt;a href="https://youtu.be/PA6NoR7Vc6A" rel="noopener noreferrer"&gt;https://youtu.be/PA6NoR7Vc6A&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A reviewer with memory&lt;/strong&gt; — a git-tracked file of your team's conventions that it learns
and applies, so it stops re-flagging things you've already decided.
(&lt;a href="https://youtu.be/-9g8sSO0fL0" rel="noopener noreferrer"&gt;https://youtu.be/-9g8sSO0fL0&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The takeaways, if you skipped to the bottom
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;AI review is advisory, not a gate.&lt;/strong&gt; Same PR can get opposite verdicts; never make it a
required check.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Humans keep the merge button.&lt;/strong&gt; Agents get hands (read/edit/PR), never the keys (merge/deploy).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Constraints are the product.&lt;/strong&gt; Edit-only, throwaway branches, one attempt, tests-as-spec.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Verify every change.&lt;/strong&gt; "Valid YAML" and "the tests pass" are not the same as "correct."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;It's genuinely useful for the boring middle&lt;/strong&gt; — log triage, first-pass review, drafting
fixes — which is most of the toil.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I'm filming the whole series (honestly — including the episodes where it gets things wrong)&lt;br&gt;
at &lt;strong&gt;&lt;a href="https://www.youtube.com/@DevOpsAutopilot" rel="noopener noreferrer"&gt;DevOps Autopilot&lt;/a&gt;&lt;/strong&gt;. Happy to answer anything&lt;br&gt;
in the comments — especially if you've wired an AI reviewer into CI and have a different take&lt;br&gt;
on the determinism problem.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>kubernetes</category>
      <category>ai</category>
      <category>cicd</category>
    </item>
  </channel>
</rss>
