<?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: Disha Sethi</title>
    <description>The latest articles on DEV Community by Disha Sethi (@disha_sethi_6d9d0a8679733).</description>
    <link>https://dev.to/disha_sethi_6d9d0a8679733</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%2F3997404%2F49c388ec-5eae-410a-b1b9-1c31380d6329.png</url>
      <title>DEV Community: Disha Sethi</title>
      <link>https://dev.to/disha_sethi_6d9d0a8679733</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/disha_sethi_6d9d0a8679733"/>
    <language>en</language>
    <item>
      <title>Building Digester: A Cloud-Native Knowledge Concierge</title>
      <dc:creator>Disha Sethi</dc:creator>
      <pubDate>Mon, 22 Jun 2026 18:15:56 +0000</pubDate>
      <link>https://dev.to/disha_sethi_6d9d0a8679733/building-digester-a-cloud-native-knowledge-concierge-212h</link>
      <guid>https://dev.to/disha_sethi_6d9d0a8679733/building-digester-a-cloud-native-knowledge-concierge-212h</guid>
      <description>&lt;p&gt;Information overload is a massive drain on developer productivity. We all bookmark technical articles, deep-dives, and documentation pages that we promise to read later—but rarely do. Static bookmark lists become digital graveyards where valuable knowledge goes to die.&lt;br&gt;
&lt;strong&gt;Digester&lt;/strong&gt; is an asynchronous, AI-powered knowledge concierge. Instead of giving you a generic summary, it ingests a URL, checks it against your historical reading memory using semantic vector search, and delivers a highly structured, 3-bullet briefing mapping the new insights directly to things you've read in the past.&lt;/p&gt;

&lt;p&gt;From a user's standpoint, the experience is fast, frictionless, and seamless:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Submit:&lt;/strong&gt; You paste a technical article URL into a minimalist, command-palette style input bar.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Observe:&lt;/strong&gt; The dashboard instantly switches to a loading state ("Processing async scraper &amp;amp; vector search..."). You don't have to wait with a frozen screen while the backend does the heavy lifting.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Read:&lt;/strong&gt; The dashboard dynamically updates to display exactly three actionable insight cards. Each card tells you the core takeaway and includes a "Context Match" showing how it updates or connects to your previous data.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Technical Architecture &amp;amp; Flow
&lt;/h2&gt;

&lt;p&gt;To ensure the app can handle heavy document processing without timing out, we decoupled the application into three clear layers:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Frontend Flow (The Edge Layer)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;What we used:&lt;/strong&gt; Next.js (App Router) + Tailwind CSS + Vercel&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Flow:&lt;/strong&gt; This layer handles the global presentation and user state. When a user drops a URL, the frontend instantly kicks off a background task and immediately releases the user connection, keeping the UI snappy and responsive.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. Backend Flow (The Engine &amp;amp; Memory Layer)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;What we used:&lt;/strong&gt; Node.js/Python API + Supabase (PostgreSQL with &lt;code&gt;pgvector&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Flow:&lt;/strong&gt; Once a URL is captured, our backend scrapes the page down to clean, LLM-ready markdown. It splits this text into chunks, generates semantic embeddings, and runs a vector similarity search inside our database. This retrieves your history, feeds it into our LLM pipeline, and saves the newly learned knowledge back into your memory graph.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. DevOps Flow (The Infrastructure &amp;amp; Automation Layer)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;What we used:&lt;/strong&gt; GitHub Actions + Docker + AWS EC2 + Nginx + CloudWatch&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Flow:&lt;/strong&gt; 

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;CI/CD:&lt;/strong&gt; Every time we push code to GitHub, an automated workflow spins up, builds a secure Docker image of our backend, and deploys it straight to our AWS EC2 instance.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Routing &amp;amp; Gates:&lt;/strong&gt; Nginx sits on the EC2 server acting as a reverse proxy to manage secure incoming web traffic cleanly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Monitoring:&lt;/strong&gt; AWS CloudWatch continuously aggregates container logs and sets up metric alarms, ensuring any pipeline failures or LLM timeouts are flagged immediately.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's Next?
&lt;/h2&gt;

&lt;p&gt;We are currently building out the heavy cloud architecture and agentic workflows behind the scenes. We will update you on the  execution part very soon, so stay tuned!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>rag</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
