<?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: T Mohamed Yaser</title>
    <description>The latest articles on DEV Community by T Mohamed Yaser (@yaser-123).</description>
    <link>https://dev.to/yaser-123</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%2F3382272%2F3f7a9ff2-d91b-47ef-8820-4d7c66b22bc1.jpg</url>
      <title>DEV Community: T Mohamed Yaser</title>
      <link>https://dev.to/yaser-123</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yaser-123"/>
    <language>en</language>
    <item>
      <title>We Stopped Passing Prompts. We Started Sharing Memory.</title>
      <dc:creator>T Mohamed Yaser</dc:creator>
      <pubDate>Sun, 05 Jul 2026 17:04:02 +0000</pubDate>
      <link>https://dev.to/yaser-123/we-stopped-passing-prompts-we-started-sharing-memory-3b3k</link>
      <guid>https://dev.to/yaser-123/we-stopped-passing-prompts-we-started-sharing-memory-3b3k</guid>
      <description>&lt;h1&gt;
  
  
  We Stopped Passing Prompts. We Started Sharing Memory.
&lt;/h1&gt;

&lt;p&gt;Every multi-agent AI demo looks almost the same.&lt;/p&gt;

&lt;p&gt;One agent generates something.&lt;br&gt;
Another agent consumes that output.&lt;br&gt;
Another continues the chain.&lt;/p&gt;

&lt;p&gt;The longer the chain grows, the more context is lost.&lt;/p&gt;

&lt;p&gt;We asked ourselves one question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What if AI agents never passed prompts at all?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Instead...&lt;/p&gt;

&lt;p&gt;What if they shared memory?&lt;/p&gt;


&lt;h2&gt;
  
  
  🎥 Watch the Live Demo
&lt;/h2&gt;

&lt;p&gt;See Syntapse in action as it transforms an idea into a complete software engineering workflow using shared memory powered by Cognee.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/rS-OEcSBRpg" rel="noopener noreferrer"&gt;https://youtu.be/rS-OEcSBRpg&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Modern multi-agent systems suffer from what we call the &lt;strong&gt;Agent Telephone Game&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Every agent summarizes information for the next one.&lt;/p&gt;

&lt;p&gt;Important architectural decisions disappear.&lt;/p&gt;

&lt;p&gt;Requirements drift.&lt;/p&gt;

&lt;p&gt;Small changes force the whole workflow to restart.&lt;/p&gt;

&lt;p&gt;For software engineering, this becomes a serious problem.&lt;/p&gt;

&lt;p&gt;A simple requirement like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Replace PostgreSQL with MongoDB."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;can invalidate dozens of previous decisions.&lt;/p&gt;

&lt;p&gt;Instead of evolving...&lt;/p&gt;

&lt;p&gt;Most AI workflows regenerate everything.&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ft5eud2y1mi9mhzptu0oe.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ft5eud2y1mi9mhzptu0oe.png" alt=" " width="800" height="367"&gt;&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;
  
  
  Our Idea
&lt;/h2&gt;

&lt;p&gt;Instead of prompt chaining, we built a &lt;strong&gt;Memory-First Operating System&lt;/strong&gt; for software engineering.&lt;/p&gt;

&lt;p&gt;Every specialist reads from and writes to the same evolving memory.&lt;/p&gt;

&lt;p&gt;Nobody communicates directly.&lt;/p&gt;

&lt;p&gt;Memory becomes the source of truth.&lt;/p&gt;

&lt;p&gt;Our AI specialists are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;💡 Ideation&lt;/li&gt;
&lt;li&gt;📄 Product Requirements&lt;/li&gt;
&lt;li&gt;🏗 Architecture&lt;/li&gt;
&lt;li&gt;⚙ Tech Stack&lt;/li&gt;
&lt;li&gt;🚀 Implementation Strategy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each specialist contributes knowledge to a shared graph powered by Cognee.&lt;/p&gt;


&lt;h2&gt;
  
  
  Memory Instead of Messages
&lt;/h2&gt;

&lt;p&gt;Rather than:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Agent A → Agent B → Agent C
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We built:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;        Shared Memory

      ↑     ↑      ↑

 Ideation  PRD  Architecture

      ↑     ↑      ↑

Tech Stack  Implementation
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Every specialist simply observes the latest state of memory and contributes when relevant.&lt;/p&gt;

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

&lt;p&gt;No brittle orchestration.&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Foqpoepe8hashwofn8pbk.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Foqpoepe8hashwofn8pbk.png" alt=" " width="800" height="440"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Event-Driven Intelligence
&lt;/h2&gt;

&lt;p&gt;Whenever memory changes...&lt;/p&gt;

&lt;p&gt;The system reacts automatically.&lt;/p&gt;

&lt;p&gt;If the user updates the technology stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Memory changes&lt;/li&gt;
&lt;li&gt;Graph updates&lt;/li&gt;
&lt;li&gt;Relevant specialists wake up&lt;/li&gt;
&lt;li&gt;Implementation adapts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Nobody presses "Run Again."&lt;/p&gt;

&lt;p&gt;Memory itself orchestrates the workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  Beyond Planning
&lt;/h2&gt;

&lt;p&gt;Most planning tools stop after generating documentation.&lt;/p&gt;

&lt;p&gt;We wanted to go further.&lt;/p&gt;

&lt;p&gt;Once implementation prompts are generated, developers can use tools like Claude Code or Codex.&lt;/p&gt;

&lt;p&gt;After implementation is complete...&lt;/p&gt;

&lt;p&gt;The result is brought back into our platform.&lt;/p&gt;

&lt;p&gt;A verification stage checks whether the implementation still matches the original intent stored inside memory.&lt;/p&gt;

&lt;p&gt;If drift is detected...&lt;/p&gt;

&lt;p&gt;Instead of rebuilding everything...&lt;/p&gt;

&lt;p&gt;The platform generates:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Module 2

↓

Module 2.1 (Repair)

↓

Updated Prompt

↓

Continue Development
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This allows projects to evolve instead of restarting from scratch.&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbatttutzxonwrf7xxa22.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbatttutzxonwrf7xxa22.png" alt=" " width="800" height="370"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Visualizing Living Memory
&lt;/h2&gt;

&lt;p&gt;One of our biggest goals was making AI memory visible.&lt;/p&gt;

&lt;p&gt;We built:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A live knowledge graph&lt;/li&gt;
&lt;li&gt;A synchronized memory lifecycle timeline&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every operation—&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Remember&lt;/li&gt;
&lt;li&gt;Recall&lt;/li&gt;
&lt;li&gt;Improve&lt;/li&gt;
&lt;li&gt;Forget&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;appears visually as the project evolves.&lt;/p&gt;

&lt;p&gt;Instead of watching logs...&lt;/p&gt;

&lt;p&gt;You watch memory think.&lt;/p&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fx7x7d3a0aft9b4hnbipa.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fx7x7d3a0aft9b4hnbipa.png" alt=" " width="338" height="806"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Cognee?
&lt;/h2&gt;

&lt;p&gt;Cognee gave us something much more powerful than storage.&lt;/p&gt;

&lt;p&gt;It gave our AI specialists a persistent, evolving memory.&lt;/p&gt;

&lt;p&gt;That completely changed how they collaborate.&lt;/p&gt;

&lt;p&gt;Memory isn't just data anymore.&lt;/p&gt;

&lt;p&gt;It's the operating system coordinating the entire engineering lifecycle.&lt;/p&gt;




&lt;h2&gt;
  
  
  What We Learned
&lt;/h2&gt;

&lt;p&gt;We started this hackathon thinking we were building another AI planner.&lt;/p&gt;

&lt;p&gt;We finished realizing we had built something much more interesting.&lt;/p&gt;

&lt;p&gt;The innovation wasn't adding more agents.&lt;/p&gt;

&lt;p&gt;The innovation was removing prompt passing.&lt;/p&gt;

&lt;p&gt;When every specialist shares the same evolving memory...&lt;/p&gt;

&lt;p&gt;AI behaves much more like a real engineering team.&lt;/p&gt;




&lt;p&gt;Thanks for reading!&lt;/p&gt;

&lt;p&gt;If you're building AI systems, I'd love to hear your thoughts on shared memory vs prompt chaining.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>opensource</category>
      <category>hackathon</category>
    </item>
    <item>
      <title>NoChill.AI – Built During Exams, Celebrated With a Community</title>
      <dc:creator>T Mohamed Yaser</dc:creator>
      <pubDate>Wed, 23 Jul 2025 15:49:15 +0000</pubDate>
      <link>https://dev.to/yaser-123/nochillai-built-during-exams-celebrated-with-a-community-fc</link>
      <guid>https://dev.to/yaser-123/nochillai-built-during-exams-celebrated-with-a-community-fc</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/wlh"&gt;World's Largest Hackathon Writing Challenge&lt;/a&gt;: Beyond the Code.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;Some projects are built with planning. Others are built with panic, pressure, and memes. NoChill.AI? Definitely the second one.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Human Side of NoChill.AI 👨‍💻🧠
&lt;/h2&gt;

&lt;p&gt;I built NoChill.AI solo during WLH, right in the middle of semester exams. Between cram sessions and late‑night coding, I simply wanted to create something fun. The moment my chatbot fired its first roast—“Still up at 3 AM? Really?”—I knew I’d crafted more than code. I’d made an experience that shows up, even when real friends can’t.&lt;/p&gt;




&lt;h2&gt;
  
  
  A Meetup Moment I'll Never Forget 🎤✨
&lt;/h2&gt;

&lt;p&gt;I demoed NoChill.AI at a &lt;strong&gt;Code for India&lt;/strong&gt; community meetup. Watching a room full of devs and students burst into laughter as the bot roasted volunteers was surreal. That instant feedback—real human laughter—made every all‑nighter worth it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Bolt’s Discord: A Small Spark of Inspiration 💬
&lt;/h2&gt;

&lt;p&gt;While I didn’t dive deep into Bolt’s feature set, the &lt;strong&gt;Bolt Discord&lt;/strong&gt; kept me motivated. Seeing others’ creative builds reminded me that even wild ideas belong in the hackathon.&lt;/p&gt;




&lt;h2&gt;
  
  
  What This Hackathon Taught Me 💡
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Collaboration with yourself:&lt;/strong&gt; Balancing exams and solo coding taught me to prioritize and adapt on the fly.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fun has value:&lt;/strong&gt; Not every AI needs to be serious—sometimes amusement is its own impact.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Personal payoff:&lt;/strong&gt; Building for myself—rather than a client—rekindled my love for pure creativity.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Shout‑Outs 🙌
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Code for India&lt;/strong&gt; for the welcoming demo stage
&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;Bolt Discord&lt;/strong&gt; community for inspiration
&lt;/li&gt;
&lt;li&gt;Everyone who volunteered to get roasted (and survived)&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;NoChill.AI may never be VC‑backed, but it delivered real‑world laughs, genuine community moments, and the simple joy of building something just for fun.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;That’s NoChill.AI: Built under pressure. Launched with laughter.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>wlhchallenge</category>
      <category>community</category>
      <category>networking</category>
    </item>
  </channel>
</rss>
