<?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: Nolyn</title>
    <description>The latest articles on DEV Community by Nolyn (@nolynchong).</description>
    <link>https://dev.to/nolynchong</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%2F3859967%2F34a4e886-68b2-4321-b8d5-aa8d5ba73992.png</url>
      <title>DEV Community: Nolyn</title>
      <link>https://dev.to/nolynchong</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nolynchong"/>
    <language>en</language>
    <item>
      <title>How I solved AI context fragmentation between Claude, ChatGPT, and Cursor</title>
      <dc:creator>Nolyn</dc:creator>
      <pubDate>Fri, 03 Apr 2026 19:12:59 +0000</pubDate>
      <link>https://dev.to/nolynchong/how-i-solved-ai-context-fragmentation-between-claude-chatgpt-and-cursor-5bnm</link>
      <guid>https://dev.to/nolynchong/how-i-solved-ai-context-fragmentation-between-claude-chatgpt-and-cursor-5bnm</guid>
      <description>&lt;p&gt;If you use multiple AI tools daily, you probably know this exact pain:&lt;/p&gt;

&lt;p&gt;You spend 20 minutes brainstorming a brilliant database schema in &lt;strong&gt;Claude Web&lt;/strong&gt;. Then you switch over to &lt;strong&gt;Cursor&lt;/strong&gt; or &lt;strong&gt;Copilot&lt;/strong&gt; to actually write the code... and the AI has Alzheimer's. It has no idea what you just discussed. &lt;/p&gt;

&lt;p&gt;You end up manually copying and pasting context back and forth. It completely breaks the flow. &lt;/p&gt;

&lt;p&gt;By day, I juggle 10+ hardware engineering projects, and I rely heavily on AI to survive my workload. The context fragmentation was driving me insane. So, over the last few weekends, I built a local memory layer to fix it.&lt;/p&gt;

&lt;p&gt;I open-sourced it tonight. Meet &lt;strong&gt;Solvoke Synap&lt;/strong&gt; 🧠.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Solution in Action
&lt;/h3&gt;

&lt;p&gt;Instead of a brittle two-way sync, I built a background engine that passively collects all my chats into one unified, searchable dashboard.&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.amazonaws.com%2Fuploads%2Farticles%2Fwy0q352v0hhe6zs6lvoz.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%2Fwy0q352v0hhe6zs6lvoz.png" alt=" " width="800" height="453"&gt;&lt;/a&gt;&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.amazonaws.com%2Fuploads%2Farticles%2Fegmwc05s4vjcbmsg872a.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%2Fegmwc05s4vjcbmsg872a.png" alt=" " width="800" height="533"&gt;&lt;/a&gt;&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.amazonaws.com%2Fuploads%2Farticles%2Faxz5je6gq6bgj3uqdzii.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%2Faxz5je6gq6bgj3uqdzii.png" alt=" " width="800" height="456"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How I Built It (The Architecture)
&lt;/h3&gt;

&lt;p&gt;I wanted something completely automated that didn't rely on unofficial, fragile APIs. Here is the stack:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;The Web Catcher (Chrome Extension):&lt;/strong&gt; Instead of dirty DOM scraping, the extension uses the &lt;code&gt;chrome.webRequest&lt;/code&gt; API to passively intercept chat API responses locally as I type in ChatGPT or Claude. &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The IDE Catcher (VSCode/Cursor Extension):&lt;/strong&gt; A local watcher that hooks into the session files of Cursor and Copilot.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Brain (Next.js + PostgreSQL):&lt;/strong&gt; Everything funnels into a self-hosted Next.js app backed by a Postgres database, featuring Full-Text Search (FTS).&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Zero Telemetry &amp;amp; Local First
&lt;/h3&gt;

&lt;p&gt;Because AI conversations contain highly sensitive IP and code snippets, security was my top priority. &lt;/p&gt;

&lt;p&gt;Data flows directly from the extensions to your self-hosted database. &lt;strong&gt;No middlemen, no cloud relays, no analytics.&lt;/strong&gt; You own 100% of the data. To prove it, the entire data layer is open-sourced under &lt;strong&gt;AGPL-3.0&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  What's Next? (Solvoke Corp)
&lt;/h3&gt;

&lt;p&gt;Synap is just the infrastructure. Currently, I'm working on adding an &lt;strong&gt;AI-powered context fusion&lt;/strong&gt; feature. The goal is to select multiple chats from the dashboard and push a cohesive summary directly into your IDE.&lt;/p&gt;

&lt;p&gt;Ultimately, this is the data foundation for my broader vision: &lt;strong&gt;Solvoke Corp&lt;/strong&gt; — a visual, multi-agent workspace for solopreneurs to turn unified context into working software.&lt;/p&gt;

&lt;h3&gt;
  
  
  Try it out!
&lt;/h3&gt;

&lt;p&gt;It's still an early release (v0.1.2), but it has effectively eliminated my "copy-pasting contexts" routine. &lt;/p&gt;

&lt;p&gt;Would love to hear your thoughts on the architecture, or if anyone else has solved this workflow problem differently!&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;GitHub Repo:&lt;/strong&gt; &lt;a href="https://github.com/Solvoke/Solvoke-Synap" rel="noopener noreferrer"&gt;https://github.com/Solvoke/Solvoke-Synap&lt;/a&gt;&lt;br&gt;
🔗 &lt;strong&gt;Live Demo:&lt;/strong&gt; &lt;a href="https://synapdemo.solvoke.com/" rel="noopener noreferrer"&gt;https://synapdemo.solvoke.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;(If you like where this is heading, dropping a ⭐️ on GitHub would mean the world to a solo dev!)&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>webdev</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
