<?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: Anil Kumar</title>
    <description>The latest articles on DEV Community by Anil Kumar (@anil_kumar_69d7615ab9fdd8).</description>
    <link>https://dev.to/anil_kumar_69d7615ab9fdd8</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3236838%2Fde5f658a-d40e-4127-934f-5d1f493020a4.jpg</url>
      <title>DEV Community: Anil Kumar</title>
      <link>https://dev.to/anil_kumar_69d7615ab9fdd8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anil_kumar_69d7615ab9fdd8"/>
    <language>en</language>
    <item>
      <title>Inbox Reimagined: AI Email Aggregator Using Vertex AI + Runner H</title>
      <dc:creator>Anil Kumar</dc:creator>
      <pubDate>Wed, 02 Jul 2025 02:44:38 +0000</pubDate>
      <link>https://dev.to/anil_kumar_69d7615ab9fdd8/inbox-reimagined-ai-email-aggregator-using-vertex-ai-runner-h-44da</link>
      <guid>https://dev.to/anil_kumar_69d7615ab9fdd8/inbox-reimagined-ai-email-aggregator-using-vertex-ai-runner-h-44da</guid>
      <description>&lt;p&gt;I built an AI-powered Email Aggregator App that connects to Gmail and intelligently organizes your inbox using real-time classification and summarization via Runner H + Vertex AI.&lt;/p&gt;

&lt;p&gt;It solves the problem of email overload by categorizing each unread email and summarizing it in one line, making it easier for users to review, act, or archive in bulk.&lt;/p&gt;

&lt;p&gt;You can try out the live agent here:&lt;br&gt;&lt;br&gt;
👉 &lt;a href="https://runner.hcompany.ai/chat/d97762ce-d0ab-40d1-9f04-f4991d3f2649/share" rel="noopener noreferrer"&gt;AI Email Classifier + Summarizer (Runner H Demo)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Paste any email subject and snippet to get a clean JSON response with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Category (e.g., Sensitive, Promotional)&lt;/li&gt;
&lt;li&gt;Reason&lt;/li&gt;
&lt;li&gt;One-line summary&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7t3manxit8tos62fsrv1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7t3manxit8tos62fsrv1.png" alt="Image description" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Used Runner H
&lt;/h2&gt;

&lt;p&gt;You are an intelligent email assistant.&lt;/p&gt;

&lt;p&gt;Classify the email into: Promotional, Follow-Up, Sensitive, or Junk.&lt;br&gt;
Also summarize it in one line.&lt;/p&gt;

&lt;p&gt;Subject: {{ subject }}&lt;br&gt;
Snippet: {{ snippet }}&lt;/p&gt;

&lt;p&gt;Return a JSON like:&lt;br&gt;
{&lt;br&gt;
  "category": "...",&lt;br&gt;
  "reason": "...",&lt;br&gt;
  "summary": "..."&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;The Runner H agent returns:&lt;br&gt;
{&lt;br&gt;
  "category": "Sensitive",&lt;br&gt;
  "reason": "Mentions a credit card statement and due date.",&lt;br&gt;
  "summary": "Your Axis Bank credit card bill for June is available; due by 10th July."&lt;br&gt;
}&lt;br&gt;
I used this output to power the app's inbox view and daily digest logic.&lt;/p&gt;

&lt;h2&gt;
  
  
  Use Case &amp;amp; Impact
&lt;/h2&gt;

&lt;p&gt;This is ideal for:&lt;/p&gt;

&lt;p&gt;Professionals overloaded with unread email&lt;/p&gt;

&lt;p&gt;Founders and freelancers managing multiple accounts&lt;/p&gt;

&lt;p&gt;Users who want smart summaries without switching inbox apps&lt;/p&gt;

&lt;p&gt;Impact:&lt;/p&gt;

&lt;p&gt;10x faster inbox cleanup&lt;/p&gt;

&lt;p&gt;AI-generated summaries reduce decision fatigue&lt;/p&gt;

&lt;p&gt;Categories allow smart filtering and batch actions&lt;/p&gt;

&lt;p&gt;Customizable: users can override categories and retrain logic&lt;/p&gt;

&lt;p&gt;This is a prototype for an intelligent email agent — but the same logic could be extended to Slack, WhatsApp messages, or CRM workflows.&lt;/p&gt;

&lt;h3&gt;
  
  
  Social Love
&lt;/h3&gt;

&lt;p&gt;Shared here on X: &lt;a href="https://x.com/gurusad2/status/1940239835333308615" rel="noopener noreferrer"&gt;https://x.com/gurusad2/status/1940239835333308615&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Please leave comments or ideas. I'm open to collaborating or expanding this into a plug-and-play SaaS tool!&lt;/p&gt;

&lt;p&gt;Tech Stack&lt;br&gt;
Frontend: React + Vite + TailwindCSS&lt;/p&gt;

&lt;p&gt;Backend: FastAPI on Cloud Run&lt;/p&gt;

&lt;p&gt;AI: Runner H (Gemini/GPT prompt-based agent)&lt;/p&gt;

&lt;p&gt;Storage: Firebase Firestore&lt;/p&gt;

&lt;p&gt;Deployment: Firebase Hosting&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>machinelearning</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
