<?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: Gunnam Sai Saketh Ram</title>
    <description>The latest articles on DEV Community by Gunnam Sai Saketh Ram (@sak3th2004).</description>
    <link>https://dev.to/sak3th2004</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%2F4103157%2Fd3c90a55-83ad-4dd6-bd33-cfade63f5058.png</url>
      <title>DEV Community: Gunnam Sai Saketh Ram</title>
      <link>https://dev.to/sak3th2004</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sak3th2004"/>
    <language>en</language>
    <item>
      <title>Building an autonomous multi-agent SRE in a weekend (Gemini + ADK on Google Cloud)</title>
      <dc:creator>Gunnam Sai Saketh Ram</dc:creator>
      <pubDate>Mon, 31 Aug 2026 17:49:52 +0000</pubDate>
      <link>https://dev.to/sak3th2004/building-an-autonomous-multi-agent-sre-in-a-weekend-gemini-adk-on-google-cloud-p23</link>
      <guid>https://dev.to/sak3th2004/building-an-autonomous-multi-agent-sre-in-a-weekend-gemini-adk-on-google-cloud-p23</guid>
      <description>&lt;p&gt;I built this project, AegisOps, for the All Things Agentic Hackathon.&lt;/p&gt;

&lt;p&gt;Every SRE knows the 3am page. An alert fires, and you're half-awake triaging, digging through logs, guessing which deploy broke prod, then writing the postmortem. I wanted to see if a team of agents could do that whole loop — autonomously, but safely.&lt;/p&gt;

&lt;p&gt;What it does&lt;/p&gt;

&lt;p&gt;When a production alert lands, six specialized agents run in sequence under one orchestrator:&lt;/p&gt;

&lt;p&gt;Triage — severity, affected service, blast radius.&lt;br&gt;
Diagnosis — summarizes the error logs, and reads the actual Grafana dashboard screenshot with Gemini vision to confirm the anomaly. This multimodal step was the one that surprised me most — feeding a real dashboard image and getting back an accurate read of the spike.&lt;br&gt;
Correlation — scores recent deploys by time-proximity and names a probable root cause with a calibrated confidence.&lt;br&gt;
Memory — cosine-similarity search over fingerprints of past incidents.&lt;br&gt;
Remediation — proposes a reversible fix, then halts for human approval.&lt;br&gt;
Comms — auto-writes the RCA, posts a PII-scrubbed card to Slack, files a ticket.&lt;br&gt;
The tech&lt;br&gt;
Google ADK for the multi-agent orchestration (LlmAgent + Runner).&lt;br&gt;
Gemini 3.5 Flash for the five fast agents, Gemini Pro for the heavier RCA reasoning — both on Vertex AI.&lt;br&gt;
Firestore for state, memory, and the full audit trail.&lt;br&gt;
Pub/Sub for event-driven alert ingestion.&lt;br&gt;
Cloud Run to deploy it all in one container.&lt;br&gt;
The lesson: governance &amp;gt; model&lt;/p&gt;

&lt;p&gt;The hard part wasn't prompting. It was making the system trustable. The remediation executor is never exposed to the model as a callable tool — the LLM can plan a rollback, but the destructive action physically cannot fire until a human clicks Approve (an async gate, not a polled flag). Every agent step — input, reasoning, tool call, tokens, latency — is streamed live and persisted to an audit log.&lt;/p&gt;

&lt;p&gt;That, plus a 503-safe retry wrapper on every model call, is what turns a demo into something that behaves like production.&lt;/p&gt;

&lt;p&gt;It learns&lt;/p&gt;

&lt;p&gt;On resolution, the incident's fingerprint + confirmed cause + effective fix gets written back to memory. Next time that pattern appears, the Memory agent recalls it instantly. A novel incident reads as "novel"; a repeat is recalled with the known fix.&lt;/p&gt;

&lt;p&gt;Live app: &lt;a href="https://aegisops-kjacopurja-uc.a.run.app" rel="noopener noreferrer"&gt;https://aegisops-kjacopurja-uc.a.run.app&lt;/a&gt; Code: &lt;a href="https://github.com/Sak3th2004/Aegisops" rel="noopener noreferrer"&gt;https://github.com/Sak3th2004/Aegisops&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Built solo for #AllThingsAgenticHackathon.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>devops</category>
      <category>googlecloud</category>
      <category>sre</category>
    </item>
  </channel>
</rss>
