<?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: Alfredo Izquierdo</title>
    <description>The latest articles on DEV Community by Alfredo Izquierdo (@alfredoizjr).</description>
    <link>https://dev.to/alfredoizjr</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%2F3802145%2F4a4bb8e3-6da9-49bc-899b-4699d1d31481.jpg</url>
      <title>DEV Community: Alfredo Izquierdo</title>
      <link>https://dev.to/alfredoizjr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alfredoizjr"/>
    <language>en</language>
    <item>
      <title>The Week Two Problem: 60% of AI Agent Failures Are Not the Model's Fault</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 26 May 2026 16:16:31 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/the-week-two-problem-60-of-ai-agent-failures-are-not-the-models-fault-1laj</link>
      <guid>https://dev.to/alfredoizjr/the-week-two-problem-60-of-ai-agent-failures-are-not-the-models-fault-1laj</guid>
      <description>&lt;p&gt;&lt;strong&gt;60% of AI agent failures are not from the model.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Read that again. Not from the model. And almost every dev I talk to is still debugging the model — swapping Sonnet for Opus, retuning prompts, comparing Claude Code vs Cursor vs Codex.&lt;/p&gt;

&lt;p&gt;LangChain's 2026 production report found that the majority of agent failures trace to the harness, not the LLM. Anthropic's own data shows &lt;strong&gt;71% of Claude's failures come from "consistent wrong interpretation"&lt;/strong&gt; — the same incorrect assumption, every run.&lt;/p&gt;

&lt;p&gt;If you've ever shipped an AI agent, watched it work for a week, then watched it break in week two on something you already fixed — you've lived this. It's not your prompts. It's not the model. Your agent has no memory of what happened on Friday.&lt;/p&gt;

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

&lt;p&gt;There's a pattern that anyone running real AI agents recognizes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Demo:&lt;/strong&gt; flawless. The room claps.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Week one:&lt;/strong&gt; holds up. You're a believer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Week two:&lt;/strong&gt; the agent makes the same mistake you corrected on Friday. Then it makes it again on Wednesday. Then on the following Monday.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I started calling this the Week Two Problem because that's when the gap shows up — between "works in a demo" and "actually survives in production." The first week, you're still tuning. The second week, the tuning starts un-tuning itself.&lt;/p&gt;

&lt;p&gt;The strange part: nothing changed. Same model. Same prompts. Same tools. The only thing that drifted was the agent's awareness of what already happened.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Data Nobody's Talking About
&lt;/h2&gt;

&lt;p&gt;I've spent the last month reading every "my agent broke" thread I could find — Reddit, HN, DEV.to. The same three data points keep showing up:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. LangChain 2026 production report:&lt;/strong&gt; Around 60% of agent failures trace to the harness, not the model. Cold boots, lost identity across sessions, poor sub-agent briefing — all the things the LLM is &lt;em&gt;not&lt;/em&gt; responsible for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Anthropic's own evals:&lt;/strong&gt; 71% of Claude's failures in production come from "consistent wrong interpretation" — making the same incorrect assumption across every run. If the agent had memory of "we already tried that, here's why it doesn't work," that whole bucket disappears.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. The 21,000-token typo fix:&lt;/strong&gt; A Claude Code agent was logged consuming over 21,000 input tokens to make a one-line spelling correction. Why? Because every run re-loads the same context from scratch, including the things the agent already learned and forgot. Reddit practitioners report &lt;strong&gt;70–120x cost spikes on multi-step agents&lt;/strong&gt; for exactly this reason.&lt;/p&gt;

&lt;p&gt;These are not three problems. They are one problem wearing three costumes. The harness doesn't remember.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why a Bigger Context Window Won't Save You
&lt;/h2&gt;

&lt;p&gt;The instinct, when an agent forgets, is to give it more room to remember. Bigger context window. More tokens. Stuff the whole project into the prompt.&lt;/p&gt;

&lt;p&gt;I &lt;a href="https://contextforge.dev/blog/context-rot-bigger-windows-wont-save-you" rel="noopener noreferrer"&gt;wrote about why this fails&lt;/a&gt; — it's called context rot, and it makes the problem worse, not better. A bigger haystack doesn't help you find the right needle. It just gives the model more wrong needles to confuse the right one with.&lt;/p&gt;

&lt;p&gt;If you've been told "the new model has a 2M token context window, so memory is solved," that's the same vendor selling you the same problem with more pages.&lt;/p&gt;

&lt;h2&gt;
  
  
  Memory ≠ Context
&lt;/h2&gt;

&lt;p&gt;Here's the distinction that matters, and almost no one names it cleanly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Context&lt;/strong&gt; is what your agent sees on &lt;em&gt;this&lt;/em&gt; turn. The current prompt, the current tools, the current scrollback. It dies when the session ends.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Memory&lt;/strong&gt; is what survives the session. What the agent learned on Tuesday and can recall on Friday. What it tried, what failed, what you corrected, what the constraint actually was.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A bigger context window grows the first thing. It does nothing for the second.&lt;/p&gt;

&lt;p&gt;This is why Claude's built-in memory feature, Cursor rules, &lt;code&gt;.cursorrules&lt;/code&gt;, and &lt;code&gt;CLAUDE.md&lt;/code&gt; files are all half-solutions. They store &lt;em&gt;some&lt;/em&gt; memory in &lt;em&gt;some&lt;/em&gt; place, often tied to a specific tool. The moment your workflow crosses tools — Claude Code Monday morning, Cursor Tuesday afternoon, Copilot for the PR review — the memory doesn't follow. So you end up with &lt;a href="https://contextforge.dev/blog/i-use-3-ai-coding-tools-every-day-heres-how-i-keep-them-in-sync" rel="noopener noreferrer"&gt;three different agents with three different partial views of the same project&lt;/a&gt;, all making the same wrong assumption from earlier this week.&lt;/p&gt;

&lt;p&gt;This is the same pattern I described in &lt;a href="https://contextforge.dev/blog/why-your-ai-forgets-everything" rel="noopener noreferrer"&gt;"Why Your AI Coding Assistant Forgets Everything"&lt;/a&gt; — every session starts from zero, no matter how many notes you keep on the side.&lt;/p&gt;

&lt;p&gt;That's the Week Two Problem in slow motion.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Missing Harness
&lt;/h2&gt;

&lt;p&gt;What would a real harness look like?&lt;/p&gt;

&lt;p&gt;It would store corrections once. When you tell the agent "don't use that library, it doesn't support our Node version," that constraint persists — across sessions, across tools, across the entire team. The next time any agent on any tool reaches for it, the memory layer says no.&lt;/p&gt;

&lt;p&gt;It would recognize patterns across sessions. Not "remember everything verbatim" — that's just context rot in a new bottle. But "remember the &lt;em&gt;decisions&lt;/em&gt; and the &lt;em&gt;constraints&lt;/em&gt; and the &lt;em&gt;things-that-did-not-work&lt;/em&gt;." The model handles reasoning. The harness handles continuity.&lt;/p&gt;

&lt;p&gt;It would reduce token spend, not increase it. Because the agent stops re-discovering things it already learned. The 21,000-token typo fix becomes 1,200 tokens because the agent already knows the file's conventions, the recent corrections, the patterns that matter.&lt;/p&gt;

&lt;p&gt;This is the layer I built &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;ContextForge&lt;/a&gt; for. It's a memory layer that plugs into Claude Code, Cursor, Copilot, and any MCP-compatible client. Corrections in one place. Persistence across sessions. Relationship-aware recall so the right memory surfaces at the right moment, not all of them at once.&lt;/p&gt;

&lt;p&gt;It's not the only way to solve this. You can hand-roll a memory layer. You can build your own embedding store. You can chain together vector DBs and tool definitions. What you &lt;em&gt;cannot&lt;/em&gt; do — and what nine out of ten teams are still trying to do — is keep debugging the model and expecting the failures to stop.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to Do This Week
&lt;/h2&gt;

&lt;p&gt;If you've been losing time to week-two failures, three things you can do right now:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Audit one agent.&lt;/strong&gt; List every correction you've made in the last 14 days. How many were persisted? How many will you have to make &lt;em&gt;again&lt;/em&gt; next week? That number is your harness debt.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Separate context from memory in your head.&lt;/strong&gt; Context is the turn. Memory is the relationship. They are not the same thing, and the same tool rarely solves both.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Try a memory layer.&lt;/strong&gt; ContextForge has a free tier that plugs into Claude Code, Cursor, and Copilot via MCP. Five minutes to set up. Your agent stops forgetting Friday by Monday.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The Week Two Problem isn't a model problem. It never was.&lt;/p&gt;

&lt;p&gt;Stop debugging the model. Start asking what your harness remembers.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aimemory</category>
      <category>productivity</category>
      <category>agents</category>
    </item>
    <item>
      <title>Skills Were Dead Prompts. Routines Made Them Alive.</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Thu, 14 May 2026 16:45:46 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/skills-were-dead-prompts-routines-made-them-alive-23an</link>
      <guid>https://dev.to/alfredoizjr/skills-were-dead-prompts-routines-made-them-alive-23an</guid>
      <description>&lt;p&gt;A few weeks ago I shipped &lt;strong&gt;Skills&lt;/strong&gt; — a way to save AI prompts as reusable templates inside &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;ContextForge&lt;/a&gt;, so my best prompts wouldn't keep dying in a Notion page nobody opens.&lt;/p&gt;

&lt;p&gt;It worked. I stopped losing them.&lt;/p&gt;

&lt;p&gt;Then I noticed something worse.&lt;/p&gt;

&lt;p&gt;I had a Skill that drafts marketing copy every time we ship a feature. Another that summarizes my weekly progress. Another that generates LinkedIn posts. They were all sitting there, clean and named, in a tab I'd open every Monday morning and slowly click "Run" on like a factory line.&lt;/p&gt;

&lt;p&gt;That's when it hit me: &lt;strong&gt;I built a library, not an assistant.&lt;/strong&gt; Skills were just dead prompts with a database row.&lt;/p&gt;

&lt;p&gt;So I built Routines.&lt;/p&gt;

&lt;h2&gt;
  
  
  What a Routine actually is
&lt;/h2&gt;

&lt;p&gt;A Routine is a Skill on a cron expression. That's it.&lt;/p&gt;

&lt;p&gt;You pick a Skill (the prompt template). You pick a schedule — &lt;code&gt;daily&lt;/code&gt;, &lt;code&gt;weekly&lt;/code&gt;, &lt;code&gt;monthly&lt;/code&gt;, or any 5-field cron you write yourself. You pass the input variables. You hit Create. From then on, ContextForge fires the Skill on schedule, forever, until you pause or delete the Routine.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Skill:        "Write a LinkedIn post about {{topic}} in my voice"
Routine:      Daily at 9am Chicago, topic = "shipping in public"
Result:       A fresh draft in my execution history every morning,
              ready to copy-paste and post.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It sounds trivial because it &lt;em&gt;is&lt;/em&gt; trivial as a user experience. The complexity is hidden, which is the point.&lt;/p&gt;

&lt;h2&gt;
  
  
  The first design was wrong
&lt;/h2&gt;

&lt;p&gt;My first instinct was Postgres-native: use &lt;code&gt;pg_cron&lt;/code&gt; (Supabase has it built-in) plus &lt;code&gt;pg_net&lt;/code&gt; to make outbound HTTP calls every minute. Schedule lives in the database, no extra infra, beautiful.&lt;/p&gt;

&lt;p&gt;I started writing it. Then I hit a wall I'd already climbed once.&lt;/p&gt;

&lt;p&gt;ContextForge has two auth models. Dashboard users authenticate with a Supabase session JWT. MCP clients (Claude, in particular) authenticate with API keys we verify ourselves inside edge functions. Both eventually call the same &lt;code&gt;skill-execute&lt;/code&gt; function via a "service-role bridge" — the function probes the database with the service role key, then trusts an &lt;code&gt;x-cf-user-id&lt;/code&gt; header for the actual user identity.&lt;/p&gt;

&lt;p&gt;This bridge took me two weeks to get right when I shipped Skills. I documented it in CLAUDE.md. I have memories about it. It's load-bearing.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;pg_cron&lt;/code&gt; would have meant recreating it inside Postgres functions. PL/pgSQL talking HTTP to my own edge functions, replaying the auth dance, debugging it without proper logs. I'd be writing the same nasty integration twice.&lt;/p&gt;

&lt;p&gt;So I pivoted. Vercel Cron pings a Next.js API route every minute. The route queries for due Routines, then fires each one against the same &lt;code&gt;skill-execute&lt;/code&gt; edge function the dashboard already calls. &lt;strong&gt;Same path, same headers, same auth bridge.&lt;/strong&gt; One source of truth for "running a Skill" — manual, MCP, scheduled, all go through the same door.&lt;/p&gt;

&lt;p&gt;Sometimes the right architecture is the one that doesn't make you rewrite a thing you already trust.&lt;/p&gt;

&lt;h2&gt;
  
  
  The unglamorous parts
&lt;/h2&gt;

&lt;p&gt;Three things bit me harder than the design:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Hobby plans don't allow per-minute cron.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I shipped to Vercel. The deploy failed instantly:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Hobby accounts are limited to daily cron jobs. This cron expression (* * * * *) would run more than once per day. Upgrade to Pro.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Pro is $20/month. I had to make a decision: pay it, downgrade the feature to daily-only, or use an external cron service (cron-job.org, free, hits my endpoint with a shared secret). I picked Pro. The math is simple — 5 Premium users at $15/month covers Pro + Supabase Pro, and the feature is worth nothing if I cripple it to daily-only just to dodge $20.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. CRON_SECRET hates whitespace.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The first deploy after Pro upgrade failed with:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The CRON_SECRET environment variable contains leading or trailing whitespace, which is not allowed in HTTP header values.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I had copy-pasted the secret from a terminal. It had a trailing newline. Five minutes of "why" before I realized.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. The Premium gate I wired in stripe-webhook was missing the Routines limit.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I added a &lt;code&gt;max_routines&lt;/code&gt; column on &lt;code&gt;organizations&lt;/code&gt;. Updated the dashboard to gate behind it. Tested local with a flipped plan column — perfect. Deployed.&lt;/p&gt;

&lt;p&gt;Then a paying Premium user opened Routines and saw the upgrade banner. Their &lt;code&gt;plan&lt;/code&gt; column said &lt;code&gt;premium&lt;/code&gt;, but &lt;code&gt;max_routines&lt;/code&gt; was still &lt;code&gt;0&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Reason: the Stripe webhook handler that bumps plans had a &lt;code&gt;PLAN_LIMITS&lt;/code&gt; constants object. It set &lt;code&gt;max_projects&lt;/code&gt;, &lt;code&gt;max_spaces&lt;/code&gt;, &lt;code&gt;max_collaborators&lt;/code&gt;, etc., — but I'd added &lt;code&gt;max_routines&lt;/code&gt; to the database without adding it to that constants file. Subscribers got upgraded everywhere except the column my new gate checked.&lt;/p&gt;

&lt;p&gt;One-line fix in &lt;code&gt;_shared/plan-limits.ts&lt;/code&gt; plus a backfill migration:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;UPDATE&lt;/span&gt; &lt;span class="n"&gt;organizations&lt;/span&gt; &lt;span class="k"&gt;SET&lt;/span&gt; &lt;span class="n"&gt;max_routines&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;999&lt;/span&gt; &lt;span class="k"&gt;WHERE&lt;/span&gt; &lt;span class="n"&gt;plan&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;'premium'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;UPDATE&lt;/span&gt; &lt;span class="n"&gt;organizations&lt;/span&gt; &lt;span class="k"&gt;SET&lt;/span&gt; &lt;span class="n"&gt;max_routines&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;   &lt;span class="k"&gt;WHERE&lt;/span&gt; &lt;span class="n"&gt;plan&lt;/span&gt; &lt;span class="k"&gt;IN&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'free'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'pro'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Embarrassing. Also the kind of bug that only ships if you have actual paying users hitting it, which is its own kind of milestone.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it looks like in practice
&lt;/h2&gt;

&lt;p&gt;The dashboard side is dead simple. Open any Skill-enabled project, click &lt;strong&gt;Routines&lt;/strong&gt;, click &lt;strong&gt;+ New Routine&lt;/strong&gt;. The form is one screen:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pick the Skill&lt;/li&gt;
&lt;li&gt;Name the Routine&lt;/li&gt;
&lt;li&gt;Pick a preset (daily, weekly, etc.) — the cron expression auto-fills, but you can override&lt;/li&gt;
&lt;li&gt;Pick a timezone (defaults to your browser's)&lt;/li&gt;
&lt;li&gt;Paste your input params JSON&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Hit create. You land on the Routine detail page with a &lt;strong&gt;▶ Run now&lt;/strong&gt; button (fires immediately, ahead of schedule), a Pause/Enable toggle, execution history, and a Danger Zone with delete.&lt;/p&gt;

&lt;p&gt;Every fire writes a row to the audit log: status, output, tokens used, cost. Click any row to expand and see the rendered prompt + final output. Same component the manual Skill runs use — Routines didn't get their own special view, they get a &lt;code&gt;trigger_type=scheduled&lt;/code&gt; tag and they're one query away from filtering.&lt;/p&gt;

&lt;h2&gt;
  
  
  Schedule it from Claude
&lt;/h2&gt;

&lt;p&gt;This is the part I'm most proud of.&lt;/p&gt;

&lt;p&gt;The MCP exposes seven new tools — &lt;code&gt;routines_list&lt;/code&gt;, &lt;code&gt;routines_get&lt;/code&gt;, &lt;code&gt;routines_create&lt;/code&gt;, &lt;code&gt;routines_update&lt;/code&gt;, &lt;code&gt;routines_toggle&lt;/code&gt;, &lt;code&gt;routines_run_now&lt;/code&gt;, &lt;code&gt;routines_delete&lt;/code&gt;. From inside any Claude session connected to ContextForge, you can say:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Schedule the LinkedIn Post skill to run every weekday at 9am Madrid time."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Claude picks the right skill, infers &lt;code&gt;schedule_preset = "daily"&lt;/code&gt;, fills the cron expression, sets &lt;code&gt;timezone = "Europe/Madrid"&lt;/code&gt;, and creates the Routine. You never touch the dashboard.&lt;/p&gt;

&lt;p&gt;This matters more than it sounds. The pitch for ContextForge has always been "let agents act on your memory, not just read from it." Routines is the first feature where Claude can schedule its own future work — close a loop the agent owns, end-to-end.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;p&gt;Skills + Routines is the start of what I'm calling the &lt;strong&gt;agentic OS for context&lt;/strong&gt;. A library of named prompts (Skills), the ability to run them automatically (Routines), and an agent (Claude via MCP) that can create both for you on demand. The next layer is &lt;strong&gt;chains&lt;/strong&gt; — Routines that fire other Routines, conditional triggers, "if this Skill output contains X, fire that Skill with Y."&lt;/p&gt;

&lt;p&gt;But that's the next article.&lt;/p&gt;

&lt;p&gt;For now: I have 26 users on the free plan. None of them have Routines yet. But the day one of them upgrades to Premium and starts seeing AI-generated marketing copy show up in their notifications at 9am every Monday, this whole thing pays for itself.&lt;/p&gt;

&lt;p&gt;If that sounds useful — &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;give ContextForge Memory a try&lt;/a&gt;. The Skills tier is free. Routines is the upgrade.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;ContextForge Memory is a persistent memory layer for AI coding agents. Built on Supabase + Next.js. BYOK for all LLM operations. &lt;a href="https://contextforge.dev/docs" rel="noopener noreferrer"&gt;Docs&lt;/a&gt; · &lt;a href="https://github.com/alfredoizdev/MCP-context-forge" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; · &lt;a href="https://twitter.com/alfredoizdev" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>automation</category>
      <category>productivity</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>I Built Skills Because My Notes App Was Full of Dead Prompts</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 12 May 2026 13:49:13 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/i-built-skills-because-my-notes-app-was-full-of-dead-prompts-5a86</link>
      <guid>https://dev.to/alfredoizjr/i-built-skills-because-my-notes-app-was-full-of-dead-prompts-5a86</guid>
      <description>&lt;p&gt;Open your Notes app right now. Search "prompt."&lt;/p&gt;

&lt;p&gt;Count what comes up.&lt;/p&gt;

&lt;p&gt;If you're anything like the 200+ developers I've talked to in the last six months, the answer is somewhere between "more than I want to admit" and "oh god I forgot about that one."&lt;/p&gt;

&lt;p&gt;You have a folder of prompts that work. The one that writes your release notes the way your team actually wants them. The one that turns a messy PR into a clean changelog entry. The one that drafts customer emails in your tone. The standup summarizer. The weekly recap generator. The "explain this code in plain English" template that takes you 12 tries to get right and then lives forever in a screenshot.&lt;/p&gt;

&lt;p&gt;None of them run.&lt;/p&gt;

&lt;p&gt;They're just text. Pasted into ChatGPT every time you need them. Copy. Paste. Edit. Paste. Edit again. Wait for output. Copy the output. Paste it where it actually needs to go.&lt;/p&gt;

&lt;p&gt;This is the &lt;strong&gt;prompt graveyard&lt;/strong&gt;, and you're not the only one who has one.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Hidden Cost Of "I'll Just Paste It Again"
&lt;/h2&gt;

&lt;p&gt;Here's the cost nobody talks about.&lt;/p&gt;

&lt;p&gt;Every time you re-type or re-paste a prompt, &lt;strong&gt;something drifts.&lt;/strong&gt; You change a word. You forget a constraint. You leave out the example you added last time that made the output good. You think you're using "the prompt that works" — but you're actually using "the prompt that worked the &lt;em&gt;first&lt;/em&gt; time, three weeks ago, before I tweaked it twice."&lt;/p&gt;

&lt;p&gt;By the time you've used a good prompt ten times, you've used ten &lt;em&gt;slightly different&lt;/em&gt; prompts. The output quality wobbles. You start blaming the model. &lt;em&gt;"GPT-5 is getting worse,"&lt;/em&gt; you say. The model didn't get worse. Your prompt did, and you didn't notice because there was no version of it that was actually fixed in place.&lt;/p&gt;

&lt;p&gt;This is the same problem we used to have with shell scripts before we put them in a repo. The same problem we had with email templates before tools like Front and Mixmax. The same problem we had with code snippets before Gist existed.&lt;/p&gt;

&lt;p&gt;The work was real. The artifact was real. The home for the artifact was a chat history and a Notes app — neither of which were built to be the home for it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Other Cost: Context Lives Where The Work Lives
&lt;/h2&gt;

&lt;p&gt;There's a deeper problem.&lt;/p&gt;

&lt;p&gt;The prompts you'd want to save aren't generic. They're &lt;em&gt;project-specific&lt;/em&gt;. The release note prompt is good because it knows your product's voice. The PR summarizer is good because it knows your codebase's conventions. The customer reply template is good because it references your refund policy.&lt;/p&gt;

&lt;p&gt;When that prompt lives in your Notes app, it lives &lt;strong&gt;away from the project.&lt;/strong&gt; Your teammate can't find it. Your future self can't find it. Six months from now when you need it, you'll search Slack DMs and ChatGPT history for forty minutes and rewrite it from scratch because that's faster than the search.&lt;/p&gt;

&lt;p&gt;The prompts that are most valuable are the ones most tied to a specific project. And those are exactly the ones that have nowhere to live.&lt;/p&gt;

&lt;h2&gt;
  
  
  What A Real Home For Prompts Looks Like
&lt;/h2&gt;

&lt;p&gt;If we built it from scratch, knowing what we know now, what would it look like?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A prompt would live &lt;strong&gt;inside the project it belongs to&lt;/strong&gt;, the same way a README does.&lt;/li&gt;
&lt;li&gt;It would have a &lt;strong&gt;name&lt;/strong&gt; and a &lt;strong&gt;description&lt;/strong&gt; so you and your team can find it.&lt;/li&gt;
&lt;li&gt;It would be &lt;strong&gt;a template, not a paste&lt;/strong&gt; — with placeholders you fill in at run time.&lt;/li&gt;
&lt;li&gt;It would have &lt;strong&gt;version history&lt;/strong&gt; so the prompt that worked last week doesn't quietly become a different prompt this week.&lt;/li&gt;
&lt;li&gt;It would run on &lt;strong&gt;your own LLM key&lt;/strong&gt; so the output stays yours and the cost goes through your account, not someone else's.&lt;/li&gt;
&lt;li&gt;It would keep a &lt;strong&gt;log of every run&lt;/strong&gt; — input, output, tokens, cost — so you can actually see whether your prompt is getting better or worse over time.&lt;/li&gt;
&lt;li&gt;It would be &lt;strong&gt;callable from your AI agent&lt;/strong&gt; so Claude or Cursor or Copilot can run it for you without you having to copy-paste yet again.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the shape of the thing. We just shipped it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Meet Skills
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://contextforge.dev/docs/skills" rel="noopener noreferrer"&gt;Skills&lt;/a&gt; are reusable AI prompts that live inside one of your ContextForge projects.&lt;/p&gt;

&lt;p&gt;Each Skill has:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;A name and description&lt;/strong&gt; — visible in your project's Skills tab&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A prompt body&lt;/strong&gt; with &lt;code&gt;{{variables}}&lt;/code&gt; you substitute at run time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A provider and model&lt;/strong&gt; — Anthropic Claude or OpenAI GPT, your pick&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;An optional save target&lt;/strong&gt; — auto-save each run's output to a knowledge space&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;An execution history&lt;/strong&gt; — every run, with input, output, tokens, cost, and timestamp&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You write the prompt &lt;strong&gt;once.&lt;/strong&gt; You name it. You run it from the dashboard with one click, or from Claude via MCP with one sentence. You stop pasting.&lt;/p&gt;

&lt;p&gt;Here's what one of my own Skills looks like.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Name: Feature Announcement Pack
Provider: OpenAI / gpt-5-mini
Body:
  You are a developer-marketing assistant for ContextForge Memory.
  A new feature just shipped:
    FEATURE: {{feature}}
    WHAT IT DOES: {{what_it_does}}
    WHO BENEFITS: {{audience}}
  Produce 4 outputs in this exact order:
    ## 1. Tweet — under 280 chars, one emoji, developer voice
    ## 2. LinkedIn post — 3 paragraphs, confident but humble
    ## 3. Changelog entry — Title / Summary / What's new / Why it matters
    ## 4. Docs blurb — 2 paragraphs, plain English, no marketing fluff
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When I ship a new feature, I open the Skill, paste this into the input panel:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"feature"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Skills"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"what_it_does"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Save reusable AI prompts as named, versioned templates inside a project."&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"audience"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"developers tired of re-typing prompts"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Click Execute. Five seconds later I have a tweet, a LinkedIn post, a changelog entry, and a docs blurb — all in my voice, all consistent with last week's announcement, all auto-saved to my &lt;strong&gt;Content Marketing&lt;/strong&gt; space for review.&lt;/p&gt;

&lt;p&gt;Here's me building and running this exact Skill in under 3 minutes:&lt;/p&gt;

&lt;p&gt;[[YOUTUBE]]&lt;/p&gt;

&lt;p&gt;Next week, when I ship the next feature, the only thing that changes is the JSON.&lt;/p&gt;

&lt;h2&gt;
  
  
  BYOK, Audit Log, And Why That Matters
&lt;/h2&gt;

&lt;p&gt;Two things people ask first:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Does ContextForge see my prompts and outputs?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Your prompts and outputs live in &lt;em&gt;your&lt;/em&gt; project. They're scoped by RLS to your organization. Nobody else can read them. We don't model-train on them. We don't store them off your row.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Whose LLM key is being used?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Yours. You add your Anthropic or OpenAI key to your project's settings, and Skills calls your account directly. We don't mark up tokens. We don't have a "ContextForge LLM credits" SKU. The dashboard shows the estimated cost of every run in USD so you can keep an eye on spend, but the bill goes from OpenAI/Anthropic to you, not through us.&lt;/p&gt;

&lt;p&gt;The audit log is the third piece. Every run is recorded — successful or failed — with tokens, cost, the exact input params, and the model's output. You can click any row to expand it and see exactly what went in and what came out. If a Skill starts producing worse output, you can compare runs side by side and see where it drifted.&lt;/p&gt;

&lt;p&gt;This is the part that's hard to do on your own. Even if you save your prompts in a Notion doc, you don't have a record of &lt;em&gt;every time you ran them and what came out.&lt;/em&gt; That record is what turns prompts from craft into engineering.&lt;/p&gt;

&lt;h2&gt;
  
  
  The MCP Angle
&lt;/h2&gt;

&lt;p&gt;There's one more piece, and it's the part that closes the loop.&lt;/p&gt;

&lt;p&gt;Skills are exposed as MCP tools. That means &lt;strong&gt;Claude itself can run your Skills.&lt;/strong&gt; Six tools are shipped: &lt;code&gt;skills_list&lt;/code&gt;, &lt;code&gt;skills_get&lt;/code&gt;, &lt;code&gt;skills_create&lt;/code&gt;, &lt;code&gt;skills_update&lt;/code&gt;, &lt;code&gt;skills_run&lt;/code&gt;, &lt;code&gt;skills_delete&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;In practice, that looks like this:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Run my Feature Announcement Pack skill for feature 'Routines' with what_it_does='schedule any Skill on a cron expression' and audience='devs who want cron for AI'"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Claude calls &lt;code&gt;skills_run&lt;/code&gt;, the LLM does the work against your key, the run is logged in the same audit log as your dashboard runs, and the output comes back to your conversation.&lt;/p&gt;

&lt;p&gt;You stop pasting. You stop re-typing. You start composing.&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Replaces
&lt;/h2&gt;

&lt;p&gt;If you've been using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;A Notes app&lt;/strong&gt; for prompts → Skills replaces it. Versioned, executable, findable.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ChatGPT custom GPTs&lt;/strong&gt; for personal prompts → Skills is the project-scoped, BYOK, no-vendor-lock version.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A bookmarked Claude conversation&lt;/strong&gt; → Skills runs the same prompt without you having to open that conversation and scroll.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A doc full of "useful prompts"&lt;/strong&gt; that nobody on your team actually opens → Skills lives next to the project, in the tool the team is already in.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;If you've got a prompt you've been pasting into ChatGPT this week — the daily standup one, the customer reply one, the PR summarizer, the one you whisper to Claude every Monday morning — that prompt has a home now.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open ContextForge → pick a project → &lt;strong&gt;Skills&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;New Skill&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Paste the prompt. Replace your variable parts with &lt;code&gt;{{placeholders}}&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Run it.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The prompt graveyard ends today.&lt;/p&gt;

&lt;p&gt;→ &lt;a href="https://contextforge.dev/docs/skills" rel="noopener noreferrer"&gt;Skills documentation&lt;/a&gt;&lt;br&gt;
→ &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;Get ContextForge&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>promptengineering</category>
      <category>programming</category>
    </item>
    <item>
      <title>Your AI Is Drowning in Its Own Context — Why Longer Conversations Make It Worse</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 05 May 2026 14:58:53 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/your-ai-is-drowning-in-its-own-context-why-longer-conversations-make-it-worse-5g59</link>
      <guid>https://dev.to/alfredoizjr/your-ai-is-drowning-in-its-own-context-why-longer-conversations-make-it-worse-5g59</guid>
      <description>&lt;p&gt;You know the feeling.&lt;/p&gt;

&lt;p&gt;You started the conversation with your AI feeling great. It was helpful. It got you. You were on the same page. An hour in — maybe two — something quietly shifted. It started suggesting things you'd already ruled out. It forgot the tone you agreed on at the start. It told you a story you told &lt;em&gt;it&lt;/em&gt; twenty minutes ago, like it was new information.&lt;/p&gt;

&lt;p&gt;You didn't change anything. The AI didn't change. The conversation just... went somewhere bad.&lt;/p&gt;

&lt;p&gt;If you've ever felt this — and almost everyone using AI has, whether you're writing a book, planning a wedding, building a business, learning something new, or yes, coding a project — you've met context rot. And no, the answer isn't a smarter AI or a longer "memory window." Most of the fixes you'll read about are solving the wrong problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Actually Happening
&lt;/h2&gt;

&lt;p&gt;Imagine asking a friend to help you with something. The first ten minutes are great — they're focused, they remember what you said, they ask good follow-ups.&lt;/p&gt;

&lt;p&gt;Now imagine that same friend, three hours later, after listening to everything you've said all afternoon. They're tired. They're mixing up details. They keep referencing something you mentioned an hour ago that doesn't apply anymore. They're not getting worse at their job — they're just buried under everything you've told them.&lt;/p&gt;

&lt;p&gt;That's what's happening to your AI in a long conversation.&lt;/p&gt;

&lt;p&gt;The longer it goes, the more it has to keep track of. Old questions. Drafts you abandoned. Decisions you reversed. Files you replaced. Tone you adjusted. By the time you're deep into the session, the AI is sifting through a pile of things you've said — and pulling up the wrong ones.&lt;/p&gt;

&lt;p&gt;A 2026 developer survey found that &lt;strong&gt;66% of people using AI tools say their biggest frustration is that the output is "almost right, but not quite."&lt;/strong&gt; That "almost right" almost always shows up in the second half of a long session. Not in the first.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why a Bigger "Memory" Doesn't Fix It
&lt;/h2&gt;

&lt;p&gt;Every few months, an AI company announces a bigger context window — &lt;em&gt;now your AI can hold a whole book in its head! A whole project! A whole year of conversation!&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;It sounds like the answer. It isn't.&lt;/p&gt;

&lt;p&gt;Imagine handing that tired friend the entire transcript of your afternoon and asking them, "okay, now please remember what mattered." That's not better. It's the same problem with more pages.&lt;/p&gt;

&lt;p&gt;A bigger memory window doesn't help your AI find the &lt;em&gt;right&lt;/em&gt; thing. It just gives the AI more wrong things to confuse the right one with. The signal gets buried in the noise. You haven't solved the problem — you've made the haystack bigger.&lt;/p&gt;

&lt;p&gt;This is why people keep telling you their AI "got dumber" after a long session. It didn't. It just has too much to look through, and no good way to know what still matters.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where It Quietly Falls Apart
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;It contradicts itself.&lt;/strong&gt; You spent half an hour deciding &lt;em&gt;not&lt;/em&gt; to do something — then thirty messages later, the AI suggests it again like the conversation never happened. The decision is in there. It just got buried.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The output looks fine until you look closely.&lt;/strong&gt; A paragraph that almost says what you meant. A summary that's mostly accurate. A plan that's &lt;em&gt;almost&lt;/em&gt; the one you agreed on. Most of it works. The 10% that doesn't is the part that quietly breaks everything downstream.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You start fact-checking more than creating.&lt;/strong&gt; This is the moment most people don't notice. You're not really collaborating with the AI anymore — you're auditing it. Re-reading. Correcting. Re-explaining. The conversation has become work &lt;em&gt;about&lt;/em&gt; the conversation.&lt;/p&gt;

&lt;p&gt;By that point, the AI isn't saving you time. It's costing it.&lt;/p&gt;

&lt;h2&gt;
  
  
  "Just Start a New Conversation" Isn't the Answer Either
&lt;/h2&gt;

&lt;p&gt;So you do the obvious thing. You close the chat. Open a new one. Fresh start.&lt;/p&gt;

&lt;p&gt;Except now the AI knows nothing. It doesn't remember the tone you decided on. The story you've been building. The list of things that didn't work. The reason you ruled out the obvious answer two hours ago.&lt;/p&gt;

&lt;p&gt;So you re-explain. Again. From the top. Ten minutes in, the new conversation feels great — because it's small. Then it grows. Then it rots. And you're right back where you started.&lt;/p&gt;

&lt;p&gt;This is the trap most people are stuck in without naming it. &lt;em&gt;Context rot if you keep going. Amnesia if you don't.&lt;/em&gt; Both burn your time.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Fix: Memory That Remembers What Matters
&lt;/h2&gt;

&lt;p&gt;Here's the shift that changes everything.&lt;/p&gt;

&lt;p&gt;The problem isn't how &lt;em&gt;much&lt;/em&gt; your AI can remember. It's &lt;em&gt;what&lt;/em&gt; it remembers, and &lt;em&gt;when&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Think about a really good colleague — the one who's worked with you for years. They don't remember every conversation you've ever had. They don't need to. What they remember is the things that matter: the decisions you've made, the way you like to work, the patterns you fall into, the things that have already been tried.&lt;/p&gt;

&lt;p&gt;When something new comes up, they pull the relevant memory — not the whole archive.&lt;/p&gt;

&lt;p&gt;That's what your AI is missing. Not a bigger window. A &lt;em&gt;better way to remember.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This is the idea behind tools like ContextForge. Your decisions, your context, the things you've already established — they live outside the conversation. The AI pulls in only what's relevant when it's relevant. The chat stays short. The memory stays long. Context rot doesn't happen, because the conversation never gets bloated with things that don't matter.&lt;/p&gt;

&lt;p&gt;It's the difference between an assistant who has read everything you've ever said, and one who actually &lt;em&gt;knows you&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What You Can Do Right Now
&lt;/h2&gt;

&lt;p&gt;You don't need a fancy tool to start fixing this. A few habits help:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Keep conversations short on purpose.&lt;/strong&gt; When you find yourself scrolling up to remember what was said, that's the rot point. Close it. Start fresh — but bring forward only the decisions, not the full transcript.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Write down what mattered.&lt;/strong&gt; The valuable part of a long session isn't the back-and-forth. It's the two or three things you actually decided. Capture those somewhere. Even a notes app works.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don't confuse "long chat" with "real progress."&lt;/strong&gt; A 60-message conversation isn't more thinking. It's more talking. Most of it is friction.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you can, give your AI real memory.&lt;/strong&gt; This is the bigger move. Tools that give your AI persistent memory — across sessions, across days — are how this actually gets solved. Your context becomes something the AI looks up, not something it has to drag through every prompt.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Takeaway
&lt;/h2&gt;

&lt;p&gt;Context rot isn't a problem with the AI. It's a problem with how we're using it.&lt;/p&gt;

&lt;p&gt;We've all been told the answer is "more": more memory, more context, more tokens, more window. But more isn't the answer when the problem is &lt;em&gt;signal getting lost in noise.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The people getting the most out of AI right now aren't the ones with the longest conversations. They're the ones whose AI doesn't have to re-learn them every time — because the important things are already remembered, and only show up when they matter.&lt;/p&gt;

&lt;p&gt;A bigger memory just gives you more room to drown. The fix is remembering the right things.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;ContextForge gives your AI persistent, curated memory — so what matters surfaces when it should, instead of getting lost in a long conversation. Free tier available at &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Vibe Coding Is a Trap — Why AI-Generated Code You Don't Understand Will Cost You</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 28 Apr 2026 16:55:35 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/vibe-coding-is-a-trap-why-ai-generated-code-you-dont-understand-will-cost-you-1c3g</link>
      <guid>https://dev.to/alfredoizjr/vibe-coding-is-a-trap-why-ai-generated-code-you-dont-understand-will-cost-you-1c3g</guid>
      <description>&lt;p&gt;There's a story going around Reddit that hit me hard.&lt;/p&gt;

&lt;p&gt;A guy spent three months building a side project with AI. Everything worked. The app shipped. Life was good. Then he needed to add one small feature — and realized he had no idea how his own code worked.&lt;/p&gt;

&lt;p&gt;He ended up deleting 70% of it. Rewrote the whole thing in two weeks. Half the code, zero unnecessary complexity, and for the first time, he actually understood what he built.&lt;/p&gt;

&lt;p&gt;The AI hadn't written bad code. It had written code that looked like it came from a big company — layers of abstraction, configuration systems for things that only had one option, wrappers on top of wrappers. All for a project built by one person.&lt;/p&gt;

&lt;p&gt;This is what vibe coding looks like when the vibes run out.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Even Is "Vibe Coding"?
&lt;/h2&gt;

&lt;p&gt;You've probably done it even if you don't know the term. Vibe coding is when you tell AI what you want, it writes the code, you glance at it, it looks fine, and you move on. You're not really reading it. You're going by feel. The vibes are good, so you ship it.&lt;/p&gt;

&lt;p&gt;And for a while? It feels amazing. You're building things faster than ever. The AI writes code that looks professional. Everything runs. You feel unstoppable.&lt;/p&gt;

&lt;p&gt;Then something breaks.&lt;/p&gt;

&lt;p&gt;And you're staring at code that has your name on it but feels like someone else wrote it. Functions you never asked for. Patterns you didn't choose. A project that somehow got huge while you weren't looking.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's Only Getting Faster
&lt;/h2&gt;

&lt;p&gt;Here's the thing — AI coding tools aren't slowing down. They're getting more autonomous. The latest trend is "agentic coding" — where the AI doesn't just suggest a line, it writes entire features on its own. It creates files, runs tests, fixes errors, all without you touching anything.&lt;/p&gt;

&lt;p&gt;That's powerful. But it also means the gap between "what the AI built" and "what you understand" is growing every month.&lt;/p&gt;

&lt;p&gt;When AI was just finishing your sentences, you were still driving. Now it's writing whole chapters while you're getting coffee. You come back to 400 new lines of code and think... I guess that's fine?&lt;/p&gt;

&lt;p&gt;There's a line from that Reddit thread that stuck with me: "Speed without understanding isn't productivity. It's deferred confusion."&lt;/p&gt;

&lt;p&gt;That's it. That's the whole problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where It Falls Apart
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;When something breaks, you're lost.&lt;/strong&gt; You didn't write it. You didn't design it. And the AI that did? It doesn't remember either. Every new conversation starts from scratch. So now you're debugging code you don't understand with an AI that doesn't remember building it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When you need to add something real, you can't.&lt;/strong&gt; The Reddit guy lived this. His AI built all these clever abstractions for problems he didn't even have. When he needed to add an actual feature, he had to first figure out all the unnecessary complexity the AI created. It was easier to start over.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The understanding disappears overnight.&lt;/strong&gt; Maybe you spend an afternoon tracing through the code. You finally get it. The next morning? Gone. Not because you're forgetful — but because the AI that helped you understand it yesterday has zero memory of that conversation. You're explaining your own project to it all over again.&lt;/p&gt;

&lt;h2&gt;
  
  
  So What Do You Actually Do?
&lt;/h2&gt;

&lt;p&gt;Look — nobody's going back to writing everything by hand. AI is too useful. The point isn't to stop using it. The point is to stop blindly trusting it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Actually read what it writes.&lt;/strong&gt; I know, obvious. But be honest — how often do you really read the full output before hitting accept? Take 60 seconds. If you can't explain it, don't ship it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Write down your decisions.&lt;/strong&gt; Why did you pick this approach? Why not the other one? The AI won't remember tomorrow, and honestly, neither will you. Keep a running log of the important calls.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Give your AI a memory.&lt;/strong&gt; This is the big one. The core problem with vibe coding is that every AI session starts with amnesia. You explain everything, build something great, close the tab, and tomorrow it's all gone. The AI writes code that contradicts what you decided yesterday because it literally doesn't know yesterday happened.&lt;/p&gt;

&lt;p&gt;That's why tools like ContextForge exist. It gives your AI persistent memory — your project context, your architecture decisions, your patterns — all carried across sessions. Instead of your AI writing generic code in a vacuum, it writes code that actually fits what you've already built. Because it remembers what you've already built.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Keep things simple.&lt;/strong&gt; Small files, clear names, obvious structure. AI works better with less complexity, and so do you when you come back to it later.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Takeaway
&lt;/h2&gt;

&lt;p&gt;That developer didn't have a bad AI. He had a fast AI and no way to keep context between sessions.&lt;/p&gt;

&lt;p&gt;Vibe coding isn't evil. The trap is letting AI generate code while you stop paying attention — and while the AI itself forgets everything between conversations.&lt;/p&gt;

&lt;p&gt;The people doing well with AI coding right now aren't the fastest shippers. They're the ones who ship fast and can still explain what they built two weeks later.&lt;/p&gt;

&lt;p&gt;Speed you can sustain beats speed you can't.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;ContextForge gives your AI persistent memory — so it writes code that fits your project, not generic code you'll delete later. Free tier available at &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Use 3 AI Coding Tools Every Day. Here's How I Keep Them in Sync</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 21 Apr 2026 20:31:09 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/i-use-3-ai-coding-tools-every-day-heres-how-i-keep-them-in-sync-4le5</link>
      <guid>https://dev.to/alfredoizjr/i-use-3-ai-coding-tools-every-day-heres-how-i-keep-them-in-sync-4le5</guid>
      <description>&lt;p&gt;Let me tell you about my morning last Tuesday.&lt;/p&gt;

&lt;p&gt;I opened Cursor to work on a feature I'd been building all week. I asked it to continue where I left off. It had no idea what I was talking about. So I spent ten minutes re-explaining the architecture, the decisions I'd already made, the files I'd already changed.&lt;/p&gt;

&lt;p&gt;Then I switched to ChatGPT to brainstorm a tricky database problem. Same thing. Fresh conversation. No memory of the project. I copied and pasted three messages from yesterday's chat just to get it back up to speed.&lt;/p&gt;

&lt;p&gt;By 10 AM, I'd already spent more time &lt;em&gt;explaining my own work to machines&lt;/em&gt; than actually doing the work.&lt;/p&gt;

&lt;p&gt;Sound familiar?&lt;/p&gt;

&lt;h2&gt;
  
  
  The Multi-Tool Reality
&lt;/h2&gt;

&lt;p&gt;Here's something most people don't talk about: developers don't just use one AI tool anymore. According to recent surveys, the average developer uses &lt;strong&gt;2.3 AI tools&lt;/strong&gt; on any given day. Some of us use even more.&lt;/p&gt;

&lt;p&gt;And it makes sense. Each tool has its strengths. I use &lt;strong&gt;Cursor&lt;/strong&gt; for writing code inside my editor -- it's fast, it understands the file I'm looking at, and it makes great inline suggestions. I use &lt;strong&gt;ChatGPT&lt;/strong&gt; for thinking out loud -- brainstorming approaches, asking "stupid questions" I'd be embarrassed to ask a coworker, and exploring ideas before I commit to them. And I use &lt;strong&gt;Claude Code&lt;/strong&gt; for the heavy lifting -- multi-file refactors, debugging complex issues, and working across the whole codebase at once.&lt;/p&gt;

&lt;p&gt;Three tools. Three different strengths. One massive problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;None of them know what the others are doing.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Invisible Tax
&lt;/h2&gt;

&lt;p&gt;Every time you switch between AI tools, you pay a tax. Not in money -- in time, energy, and context.&lt;/p&gt;

&lt;p&gt;Think about it. When you move from ChatGPT to Cursor, you're essentially starting a new conversation with someone who has amnesia. You have to re-explain:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What you're building and why&lt;/li&gt;
&lt;li&gt;The decisions you've already made&lt;/li&gt;
&lt;li&gt;The constraints you're working within&lt;/li&gt;
&lt;li&gt;What you tried that didn't work&lt;/li&gt;
&lt;li&gt;The conventions your team follows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This isn't a minor annoyance. It's a fundamental workflow problem. And it gets worse the longer your project goes on, because the gap between what &lt;em&gt;you&lt;/em&gt; know and what &lt;em&gt;your tools&lt;/em&gt; know keeps growing.&lt;/p&gt;

&lt;p&gt;I've caught myself keeping a separate document -- a kind of "AI briefing doc" -- just so I can paste it into every new conversation. That's when I realized something was deeply broken.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Every Tool Forgets
&lt;/h2&gt;

&lt;p&gt;To understand the problem, it helps to understand why it exists.&lt;/p&gt;

&lt;p&gt;Most AI tools are designed around &lt;strong&gt;sessions&lt;/strong&gt;. You start a conversation, you work, and when the conversation ends, it's gone. Some tools save your chat history, sure. But saving a transcript is not the same as &lt;em&gt;remembering&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Remembering means understanding that when you say "the API we discussed yesterday," I should know you mean the Stripe webhook endpoint you were refactoring. It means knowing that your team uses Supabase, that you prefer server components over client components, and that last week you decided to split the monolith into three services.&lt;/p&gt;

&lt;p&gt;No single AI tool does this well. And across multiple tools? Forget about it. Literally.&lt;/p&gt;

&lt;p&gt;The problem isn't that these tools are bad. They're incredible at what they do. The problem is that they're isolated. Each one lives in its own bubble, with its own memory (or lack thereof), its own context window, and its own understanding of your project.&lt;/p&gt;

&lt;h2&gt;
  
  
  What "Keeping Them in Sync" Actually Means
&lt;/h2&gt;

&lt;p&gt;When I say I keep my tools in sync, I don't mean I copy-paste between them. That's the duct tape solution, and it doesn't scale.&lt;/p&gt;

&lt;p&gt;What I actually mean is that I use a &lt;strong&gt;shared memory layer&lt;/strong&gt; -- a single place where project context lives and that all my tools can access.&lt;/p&gt;

&lt;p&gt;Think of it like this. Instead of each tool having its own notebook that gets thrown away at the end of the day, they all share one notebook. When I make a decision in ChatGPT, that decision is available when I open Cursor. When Claude Code refactors a module, Cursor knows about it in the next session.&lt;/p&gt;

&lt;p&gt;This changes everything. Instead of spending the first ten minutes of every conversation catching up, I just... start working.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Pieces That Matter
&lt;/h2&gt;

&lt;p&gt;Not all context is created equal. Over months of working this way, I've found that there are a few categories of information that matter most when syncing between tools:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Project decisions.&lt;/strong&gt; Why you chose Postgres over MongoDB. Why the auth flow works the way it does. Why you're NOT using GraphQL, even though it seems like you should. These decisions get made once but need to be referenced dozens of times.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Architecture context.&lt;/strong&gt; The shape of your codebase. Which services talk to which. Where the boundaries are. An AI that knows your architecture can make suggestions that actually fit.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Team conventions.&lt;/strong&gt; How you name things. How you structure files. Whether you use semicolons. This sounds trivial, but an AI that follows your conventions saves you from constant code review friction.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What you tried that didn't work.&lt;/strong&gt; This might be the most underrated one. Half the value of experience is knowing what NOT to do. When your tools remember your failed approaches, they stop suggesting them.&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Actually Do It
&lt;/h2&gt;

&lt;p&gt;I'll be honest with you -- I built a tool to solve this problem. It's called &lt;strong&gt;ContextForge&lt;/strong&gt;, and it started as a personal hack before it became a product.&lt;/p&gt;

&lt;p&gt;The idea is simple: ContextForge acts as a persistent memory layer that connects to your AI tools through MCP (Model Context Protocol -- the open standard that Anthropic created and that most AI tools are adopting). You store your project context once, and every tool that supports MCP can access it.&lt;/p&gt;

&lt;p&gt;In practice, my workflow looks like this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;I make a decision or learn something important during a coding session&lt;/li&gt;
&lt;li&gt;That knowledge gets saved to ContextForge (either automatically or with a quick command)&lt;/li&gt;
&lt;li&gt;Next time I open any of my tools -- Cursor, ChatGPT, Claude Code -- the context is there&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No copy-pasting. No briefing docs. No "as I mentioned yesterday" followed by five paragraphs of recap.&lt;/p&gt;

&lt;p&gt;The first time I opened Cursor after a long ChatGPT brainstorming session and it &lt;em&gt;already knew&lt;/em&gt; what I'd decided -- that was the moment I knew this approach was right.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Changes When Your Tools Remember
&lt;/h2&gt;

&lt;p&gt;The shift is subtle at first, but it compounds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You stop repeating yourself.&lt;/strong&gt; This alone saves 15-20 minutes a day. Multiply that across a week, a month, a quarter.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Your tools give better suggestions.&lt;/strong&gt; An AI that knows your project gives answers that fit your project. Not generic Stack Overflow answers -- specific, contextual ones.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You switch tools without friction.&lt;/strong&gt; The "warm-up tax" disappears. Cursor, ChatGPT, Claude Code -- they all start from the same shared understanding.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You build momentum.&lt;/strong&gt; Instead of losing context every time you close a tab, knowledge accumulates. Your tools get &lt;em&gt;smarter&lt;/em&gt; about your project over time, not dumber.&lt;/p&gt;

&lt;p&gt;And maybe most importantly: &lt;strong&gt;you feel less alone.&lt;/strong&gt; There's something genuinely reassuring about opening a tool and having it say, essentially, "I remember. Let's keep going." It turns AI from a stranger you have to brief into a collaborator that grows with your project.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bigger Picture
&lt;/h2&gt;

&lt;p&gt;We're at a weird moment in software development. The tools are more powerful than ever, but the way we use them is still fragmented. We jump between contexts, re-explain ourselves, and lose knowledge at every seam.&lt;/p&gt;

&lt;p&gt;I don't think this is permanent. The ecosystem is moving toward shared context. MCP adoption is accelerating -- 70% of major SaaS platforms already support it. The idea that your tools should &lt;em&gt;know you&lt;/em&gt; and &lt;em&gt;know your project&lt;/em&gt; is becoming obvious.&lt;/p&gt;

&lt;p&gt;But you don't have to wait for the future to arrive. The pieces are here now. You just have to connect them.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>cursor</category>
      <category>chatgpt</category>
    </item>
    <item>
      <title>I Love Obsidian. But My AI Can't Use It.</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 14 Apr 2026 19:12:01 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/i-love-obsidian-but-my-ai-cant-use-it-2heg</link>
      <guid>https://dev.to/alfredoizjr/i-love-obsidian-but-my-ai-cant-use-it-2heg</guid>
      <description>&lt;p&gt;I have over 800 notes in Obsidian. Architecture decisions from two years ago. Meeting notes I forgot I wrote. Debugging logs that saved me more than once. Random 2am ideas that somehow became real features.&lt;/p&gt;

&lt;p&gt;Obsidian is my second brain. I genuinely love it.&lt;/p&gt;

&lt;p&gt;But here's the thing that's been bugging me for months: every time I open Claude or Cursor to work on something, none of that knowledge exists. My AI has no idea what's in my vault. It doesn't know about the design doc I spent a whole afternoon writing. It doesn't remember the bug I already solved last Tuesday.&lt;/p&gt;

&lt;p&gt;I start from zero. Every. Single. Time.&lt;/p&gt;

&lt;p&gt;And honestly? That started to feel like a waste.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Moment That Made Me Think About This
&lt;/h2&gt;

&lt;p&gt;A few months ago I was debugging an auth issue. I knew — I &lt;em&gt;knew&lt;/em&gt; — I had written notes about our authentication flow. Token refresh logic, edge cases we'd hit before, the whole thing. It was all in Obsidian, neatly tagged and linked.&lt;/p&gt;

&lt;p&gt;But I was in Claude Code. And Claude had no idea any of that existed.&lt;/p&gt;

&lt;p&gt;So I did what I always do: I opened Obsidian, searched for the right note, read through it, copied the relevant parts, pasted them into the chat, and gave Claude the context it needed.&lt;/p&gt;

&lt;p&gt;It worked. But it took me 15 minutes to do what should've been instant.&lt;/p&gt;

&lt;p&gt;And that's when I thought — wait. Why am I the middleman between my notes and my AI? Isn't the whole point of AI to do this kind of thing &lt;em&gt;for&lt;/em&gt; me?&lt;/p&gt;

&lt;h2&gt;
  
  
  Obsidian Is Great. This Isn't About Obsidian.
&lt;/h2&gt;

&lt;p&gt;Let me be really clear: Obsidian is one of the best tools I've ever used.&lt;/p&gt;

&lt;p&gt;Local-first. Markdown files I own forever. Links between ideas. A graph view that actually makes me feel like I have my life together. The plugin community is incredible.&lt;/p&gt;

&lt;p&gt;For thinking, writing, and organizing my thoughts — nothing comes close.&lt;/p&gt;

&lt;p&gt;The problem isn't Obsidian. The problem is that &lt;strong&gt;Obsidian was built for me to read. Not for my AI to search.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What Actually Happens Day to Day
&lt;/h2&gt;

&lt;p&gt;If you use both Obsidian and AI tools, you've probably been through this cycle:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You need context.&lt;/strong&gt; You're working on something and you know there's a note somewhere that would help. Maybe it's a decision log, maybe a spec, maybe something a teammate shared with you months ago.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You become the search engine.&lt;/strong&gt; You open Obsidian, try to remember the title, search a few keywords, scan through three or four notes, find the right paragraph, copy it, switch back to your AI tool, paste it in.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You lose the flow.&lt;/strong&gt; By the time your AI has the context, you've spent 10-15 minutes just &lt;em&gt;finding and transferring&lt;/em&gt; information. And you have to do it every session.&lt;/p&gt;

&lt;p&gt;Some people try Obsidian MCP servers to solve this — community-built plugins that give AI access to your vault. I tried a couple. They work, but they're limited in ways that matter:&lt;/p&gt;

&lt;p&gt;Your vault lives on your laptop. Switch devices and the AI can't reach it. Most of them do keyword matching, not meaning-based search — so searching "how we handle payments" won't find your note titled "Invoice Workflow v3." And if Obsidian isn't open, nothing works at all.&lt;/p&gt;

&lt;p&gt;It felt close but not quite there.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Realization: Not All Knowledge Belongs in the Same Place
&lt;/h2&gt;

&lt;p&gt;After months of going back and forth, I started seeing a pattern. The knowledge in my vault is actually two different things:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stuff that's for me.&lt;/strong&gt; Draft ideas. Journal entries. Half-baked brainstorms. Reading highlights. Things I need to think through quietly. This is where Obsidian shines — private, messy, personal.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stuff my AI needs to know.&lt;/strong&gt; Architecture decisions. Business rules. How the payment system works. What we decided in that meeting last Thursday. The bug pattern we keep hitting. This kind of knowledge needs to be searchable by meaning, available from any tool, and accessible to my team.&lt;/p&gt;

&lt;p&gt;I was forcing Obsidian to be both my thinking space &lt;em&gt;and&lt;/em&gt; my AI's memory. But those are different jobs. And they need different tools.&lt;/p&gt;

&lt;h2&gt;
  
  
  So I Built the Other Half
&lt;/h2&gt;

&lt;p&gt;That's how ContextForge started. I wanted something simple: a place where I could save project knowledge and have my AI actually find it when I needed it.&lt;/p&gt;

&lt;p&gt;Not a second note-taking app. Not a replacement for Obsidian. Just a memory layer that sits behind my AI tools and gives them access to what they need.&lt;/p&gt;

&lt;p&gt;Here's what that looks like in practice:&lt;/p&gt;

&lt;p&gt;Instead of copying notes into a chat, I just ask my AI a question. "How does our auth system work?" And it searches my saved knowledge — not by keywords, but by meaning. So even if I never used the exact words "auth system" in my notes, it still finds the relevant docs because it understands what I'm asking.&lt;/p&gt;

&lt;p&gt;Instead of losing context between sessions, my AI picks up where we left off. The decisions from last week, the bugs we fixed, the architecture we agreed on — it's all there.&lt;/p&gt;

&lt;p&gt;And instead of my knowledge being locked on my laptop, it's accessible from Claude Code, Cursor, Copilot, or Claude Desktop. Same knowledge everywhere. If I'm working from my laptop in a coffee shop or my desktop at home — same context.&lt;/p&gt;

&lt;p&gt;The part that surprised me most? When I connected related pieces of knowledge together, the search got dramatically better. I linked our onboarding docs to the welcome email sequence and the CRM setup guide. Now when someone searches "onboarding," they don't just find the obvious doc — they find everything connected to it, even things they didn't know to look for.&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Use Both Now
&lt;/h2&gt;

&lt;p&gt;My workflow today is pretty simple:&lt;/p&gt;

&lt;p&gt;Obsidian is where I think. Quick notes, journaling, brainstorms, reading highlights — anything personal or half-formed stays in my vault.&lt;/p&gt;

&lt;p&gt;ContextForge is where my AI remembers. Project decisions, team agreements, architecture docs, debugging insights — anything my AI should know goes here. I just tell it "remember this" and it's saved.&lt;/p&gt;

&lt;p&gt;They're not competing. They're complementary. One is for my brain. The other is for my AI's brain.&lt;/p&gt;

&lt;p&gt;And if you already have important notes in Obsidian? You can import them directly — ContextForge reads markdown, so your existing notes transfer without any formatting headaches.&lt;/p&gt;

&lt;h2&gt;
  
  
  If You Want to Try It
&lt;/h2&gt;

&lt;p&gt;Here's the honest version:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Sign up at &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt; — there's a free plan&lt;/li&gt;
&lt;li&gt;Install it with &lt;code&gt;npx contextforge-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Import your most important Obsidian notes (the project ones, not your journal)&lt;/li&gt;
&lt;li&gt;Connect it to whatever AI tool you use&lt;/li&gt;
&lt;li&gt;Start asking your AI questions about knowledge that used to be stuck in your vault&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The free plan gives you 200 items and 500 searches per month. That's more than enough to start with your most critical project and see how it feels.&lt;/p&gt;

&lt;p&gt;I'm not going to tell you it'll change your life. But the first time you ask your AI a question and it actually &lt;em&gt;knows&lt;/em&gt; the answer because you saved it three weeks ago — that moment is pretty satisfying.&lt;/p&gt;

&lt;h2&gt;
  
  
  Keep Your Vault
&lt;/h2&gt;

&lt;p&gt;This isn't a "ditch Obsidian" article. I still use it every day. It's still my favorite tool for thinking.&lt;/p&gt;

&lt;p&gt;But my AI needed its own memory. Something built for search, not for browsing. Something that works across tools and across devices. Something my team can share.&lt;/p&gt;

&lt;p&gt;Keep your vault. Love your vault. Just stop being the middleman between your notes and your AI.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;ContextForge works with Claude Code, Cursor, GitHub Copilot, and Claude Desktop. Import your Obsidian notes and make them AI-searchable. Free to start at &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>claude</category>
      <category>programming</category>
    </item>
    <item>
      <title>Claude Code vs Cursor vs GitHub Copilot: What Nobody Tells You About Context</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Wed, 08 Apr 2026 14:25:23 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/claude-code-vs-cursor-vs-github-copilot-what-nobody-tells-you-about-context-4on3</link>
      <guid>https://dev.to/alfredoizjr/claude-code-vs-cursor-vs-github-copilot-what-nobody-tells-you-about-context-4on3</guid>
      <description>&lt;h1&gt;
  
  
  Claude Code vs Cursor vs GitHub Copilot: What Nobody Tells You About Context
&lt;/h1&gt;

&lt;p&gt;Every comparison of AI coding tools focuses on the same things: which model is smarter, which autocomplete is faster, which one costs less per month.&lt;/p&gt;

&lt;p&gt;Those comparisons are useful. But they miss the thing that actually determines how productive you'll be: &lt;strong&gt;how well each tool understands your project — and how much of that understanding survives to your next session.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I've used all three extensively. Here's what I've learned about the comparison nobody makes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Comparison Everyone Makes
&lt;/h2&gt;

&lt;p&gt;You've seen the charts. Claude Code uses Opus/Sonnet, Cursor supports multiple models, Copilot runs on GPT-4 and Claude. Cursor costs $20/month, Copilot is $10-19/month, Claude Code uses API credits. One is an IDE, one is a terminal tool, one is a plugin.&lt;/p&gt;

&lt;p&gt;This is all true and mostly irrelevant to your daily experience. Because after the first week, the thing that matters most isn't which model generates better code. It's whether your AI tool &lt;strong&gt;understands what you're building&lt;/strong&gt; — and whether it still understands it tomorrow.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Each Tool Handles Context
&lt;/h2&gt;

&lt;h3&gt;
  
  
  GitHub Copilot
&lt;/h3&gt;

&lt;p&gt;Copilot lives inside your editor. It reads your open files, your recent edits, and suggests completions in real-time. Its new agent mode can make multi-file changes and run commands.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it remembers:&lt;/strong&gt; The files you have open, your recent edits, and whatever fits in the conversation window. It recently added MCP support, which means it can now connect to external tools and data sources.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it forgets:&lt;/strong&gt; Everything, the moment you close the chat. Your next conversation starts completely fresh. Copilot has no built-in way to carry context between sessions. There's no project-level instruction file (though workspace settings help a bit).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Best at:&lt;/strong&gt; Quick completions while you type. It feels invisible when it works — you barely notice it's there, which is exactly the point.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cursor
&lt;/h3&gt;

&lt;p&gt;Cursor is a full IDE built around AI. It indexes your entire codebase, understands file relationships, and uses that understanding when you ask questions or request changes. The &lt;code&gt;.cursorrules&lt;/code&gt; file lets you set project-level instructions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it remembers:&lt;/strong&gt; Your full codebase (via indexing), your &lt;code&gt;.cursorrules&lt;/code&gt;, and the current conversation. Cursor's codebase awareness is genuinely impressive — it can reference files you haven't opened and understand how components connect.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it forgets:&lt;/strong&gt; Every conversation starts clean. Your &lt;code&gt;.cursorrules&lt;/code&gt; persist, but those are static instructions, not accumulated knowledge. The debugging session where you found a tricky race condition? The architecture decision you made last Tuesday? Gone.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Best at:&lt;/strong&gt; Working with large codebases. The codebase indexing gives Cursor a real advantage when you need to refactor across multiple files or understand how things connect. Surveys show 68% adoption among developers who use AI coding tools.&lt;/p&gt;

&lt;h3&gt;
  
  
  Claude Code
&lt;/h3&gt;

&lt;p&gt;Claude Code runs in your terminal. It reads your project files, understands your codebase deeply, and can execute multi-step tasks with real autonomy — running commands, editing files, creating branches. The &lt;code&gt;CLAUDE.md&lt;/code&gt; file gives project-level instructions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it remembers:&lt;/strong&gt; Your full project structure, your &lt;code&gt;CLAUDE.md&lt;/code&gt; instructions, and the current conversation. Claude's reasoning is deep — it handles complex, multi-step tasks better than the alternatives. The &lt;code&gt;-c&lt;/code&gt; flag lets you continue a recent conversation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it forgets:&lt;/strong&gt; Once a session is truly over, the knowledge is gone. &lt;code&gt;CLAUDE.md&lt;/code&gt; helps with instructions, but it's a static file — not a searchable, growing knowledge base. The &lt;code&gt;-c&lt;/code&gt; continue flag only works for recent sessions, not last month's work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Best at:&lt;/strong&gt; Complex tasks that require reasoning across many files. When you need to plan an architecture change, debug a subtle issue, or implement a feature that touches 15 files — Claude Code handles the complexity better than anything else.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Gap They All Share
&lt;/h2&gt;

&lt;p&gt;Here's what nobody talks about in these comparisons: &lt;strong&gt;all three tools have the same fundamental limitation.&lt;/strong&gt; None of them remember anything meaningful between sessions.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Copilot doesn't know why you chose PostgreSQL over MongoDB&lt;/li&gt;
&lt;li&gt;Cursor doesn't remember the three approaches you tried before finding the right one&lt;/li&gt;
&lt;li&gt;Claude Code doesn't recall the security concern your team flagged last sprint&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every morning, every tool, every user: you start from scratch. The AI you work with at 5 PM is brilliant and informed. The AI you meet at 9 AM the next day has total amnesia.&lt;/p&gt;

&lt;p&gt;This matters more than model quality, autocomplete speed, or pricing. Because the real productivity killer isn't slow code generation — it's the 15-20 minutes you spend re-establishing context at the start of every session.&lt;/p&gt;

&lt;h2&gt;
  
  
  What MCP Changes
&lt;/h2&gt;

&lt;p&gt;MCP (Model Context Protocol) is a new standard that all three tools now support. Think of it like USB for AI — a universal way to plug external capabilities into any AI tool.&lt;/p&gt;

&lt;p&gt;Before MCP, if you wanted your AI to access a database, a project management tool, or a memory system, each tool had its own custom integration. Now, any MCP-compatible tool works with any MCP-compatible service.&lt;/p&gt;

&lt;p&gt;This is significant because it means the gap we've been talking about — persistent memory — can be filled by an external tool that works across all three.&lt;/p&gt;

&lt;h2&gt;
  
  
  Filling the Gap: Persistent Memory
&lt;/h2&gt;

&lt;p&gt;This is where tools like &lt;strong&gt;ContextForge&lt;/strong&gt; come in. It's an MCP server that gives your AI persistent memory — and because it uses MCP, it works with Claude Code, Cursor, and Copilot equally.&lt;/p&gt;

&lt;p&gt;The idea:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Save&lt;/strong&gt; important knowledge as you work (decisions, patterns, debugging notes, business rules)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Search&lt;/strong&gt; it later using natural language — the search understands meaning, not just keywords&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Organize&lt;/strong&gt; it by projects and categories so it scales as your knowledge grows&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Share&lt;/strong&gt; it across your team so everyone benefits from collective knowledge&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because it's external to all three tools, your memory follows you. Debug something in Claude Code on Monday, and that knowledge is available in Cursor on Tuesday and Copilot on Wednesday. Same knowledge, any tool.&lt;/p&gt;

&lt;p&gt;The latest update even includes relationship-aware search — you can connect related items together, and when you search for one topic, related knowledge surfaces automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Best Setup (What I Actually Use)
&lt;/h2&gt;

&lt;p&gt;Here's what I've landed on after months of experimentation:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claude Code&lt;/strong&gt; for complex tasks — architecture planning, multi-file features, deep debugging. Its reasoning is unmatched.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cursor&lt;/strong&gt; for daily coding — editing, refactoring, navigating large codebases. The IDE experience is smooth.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Copilot&lt;/strong&gt; as a background assistant — autocomplete while I type, quick suggestions that keep me in flow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ContextForge&lt;/strong&gt; as the memory layer across all three — every insight, decision, and debugging note saved once, searchable everywhere.&lt;/p&gt;

&lt;p&gt;This matches the industry trend. Surveys show developers use &lt;strong&gt;2.3 AI tools on average&lt;/strong&gt;, because each has a sweet spot. The key is making sure knowledge doesn't get trapped inside any single one.&lt;/p&gt;

&lt;h2&gt;
  
  
  Making Your Choice
&lt;/h2&gt;

&lt;p&gt;If you're choosing one tool:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Copilot&lt;/strong&gt; if you want something low-friction that works in your existing editor&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cursor&lt;/strong&gt; if you want the best codebase awareness and IDE experience&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code&lt;/strong&gt; if you tackle complex, multi-step tasks that need deep reasoning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're choosing what matters most for productivity: &lt;strong&gt;pick any tool, but add a memory layer.&lt;/strong&gt; The tool comparison matters less than whether your AI remembers what you taught it yesterday.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;ContextForge adds persistent memory to Claude Code, Cursor, and GitHub Copilot via MCP. Free to start at &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>claude</category>
      <category>githubcopilot</category>
    </item>
    <item>
      <title>Why Your AI Coding Assistant Forgets Everything (And What You Can Do About It)</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 31 Mar 2026 14:42:55 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/why-your-ai-coding-assistant-forgets-everything-and-what-you-can-do-about-it-1nom</link>
      <guid>https://dev.to/alfredoizjr/why-your-ai-coding-assistant-forgets-everything-and-what-you-can-do-about-it-1nom</guid>
      <description>&lt;h1&gt;
  
  
  Why Your AI Coding Assistant Forgets Everything (And What You Can Do About It)
&lt;/h1&gt;

&lt;p&gt;You spend an hour working with your AI assistant. You explain your project, your tech stack, your naming conventions, the bug you're chasing. By the end of the session, it knows everything. It's helping you like a senior teammate.&lt;/p&gt;

&lt;p&gt;Then you close the window.&lt;/p&gt;

&lt;p&gt;Next time you open it, your AI has no idea who you are. The project, the bug, the conventions — all gone. You start from zero.&lt;/p&gt;

&lt;p&gt;If this sounds familiar, you're not alone. A 2025 study by Qodo found that &lt;strong&gt;65% of developers report their AI assistants miss relevant context&lt;/strong&gt; when working on real tasks. And the number one reason? The AI simply doesn't remember what came before.&lt;/p&gt;

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

&lt;p&gt;Think of it like hiring the most talented assistant in the world. They're brilliant, fast, and can help with almost anything. But every morning they walk in with zero memory of yesterday. They don't know your name, your project, or the three hours you spent explaining the billing system.&lt;/p&gt;

&lt;p&gt;That's how every major AI tool works today — ChatGPT, Claude, Cursor, Copilot. The conversation starts, knowledge builds up, and then the session ends and everything disappears.&lt;/p&gt;

&lt;p&gt;This isn't a bug. It's how these tools are designed. Each conversation is independent. There's no built-in way for your AI to carry knowledge from one session to the next.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Context Windows Don't Solve This
&lt;/h2&gt;

&lt;p&gt;You might have heard that newer AI models have huge context windows — Claude can handle up to a million tokens, GPT-4 handles 128K. That sounds like a lot of memory.&lt;/p&gt;

&lt;p&gt;But context windows are more like a desk than a filing cabinet. A big desk lets you spread out more papers while you're working, but when you leave for the night, someone clears the desk completely. The papers are gone.&lt;/p&gt;

&lt;p&gt;What's worse, research shows that even during a single long session, AI tools get worse over time. The attention gets diluted. Instructions you gave at the beginning carry less weight by message 80 than they did at message 10. Developers on Reddit and Hacker News call this "context degradation" — and it's one of the most common frustrations people report.&lt;/p&gt;

&lt;p&gt;The cruel irony: the obvious fix — starting a fresh conversation — immediately destroys all the context you built up.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Most People Try (And Why It Falls Short)
&lt;/h2&gt;

&lt;p&gt;Developers have come up with workarounds. Some are clever. None are great.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Copy-pasting context into every session.&lt;/strong&gt; You keep a document with your project description, architecture notes, and rules. Every new conversation starts with a wall of text. It works, sort of — but it's tedious, eats up your context window, and you have to manually keep that document updated.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CLAUDE.md and .cursorrules files.&lt;/strong&gt; These are project-level instruction files that your AI reads at the start of each session. They're better than copy-pasting because they're automatic. But they're static text files — no search, no organization, no way to store hundreds of knowledge items, and they don't sync across different tools.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Relying on git history.&lt;/strong&gt; Your AI can read recent commits, but git history tells you &lt;em&gt;what&lt;/em&gt; changed, not &lt;em&gt;why&lt;/em&gt;. The reasoning, the tradeoffs, the things you tried that didn't work — none of that lives in a commit message.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Just living with it.&lt;/strong&gt; Many people don't even realize there's an alternative. They accept the 10-20 minute "re-onboarding" at the start of every session as the cost of using AI.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Actually Works: Persistent Memory
&lt;/h2&gt;

&lt;p&gt;The real solution is giving your AI a memory that persists between sessions. Not a bigger desk — a filing cabinet.&lt;/p&gt;

&lt;p&gt;The idea is straightforward:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;When you learn something important, you save it&lt;/li&gt;
&lt;li&gt;When you need it later, you search for it — in plain language, not exact keywords&lt;/li&gt;
&lt;li&gt;Your AI pulls up the relevant knowledge automatically, no matter how many sessions have passed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This turns your AI from a brilliant amnesiac into a teammate that actually accumulates knowledge over time. The more you save, the more useful it gets.&lt;/p&gt;

&lt;h2&gt;
  
  
  How This Works in Practice
&lt;/h2&gt;

&lt;p&gt;A few tools have emerged to solve this problem. One of them is &lt;strong&gt;ContextForge&lt;/strong&gt;, which works as a memory layer for Claude Code, Cursor, GitHub Copilot, and Claude Desktop.&lt;/p&gt;

&lt;p&gt;Here's what the workflow looks like:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Saving knowledge:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You just solved a tricky problem. Instead of hoping you'll remember it next week, you tell your AI:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Remember this: the billing webhook requires the signature header to be base64-decoded before validation."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's it. Saved permanently, searchable later.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Finding knowledge:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Three weeks later, you're debugging something related. You ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"What do we know about the billing webhook?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Your AI searches your memory and pulls up exactly what you saved — plus anything related. You don't need to remember the exact words. The search understands meaning, so "payment processing issues" would find your billing webhook note too.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Organizing knowledge:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As your saved knowledge grows, it stays organized in Projects and Spaces — like folders within folders. Your backend notes stay separate from your frontend notes. Your personal project stays separate from your team's shared knowledge.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Compound Effect
&lt;/h2&gt;

&lt;p&gt;The real power isn't in any single saved item. It's in the accumulation.&lt;/p&gt;

&lt;p&gt;After a week, your AI remembers your recent decisions. After a month, it knows your architecture, your conventions, your common pitfalls. After three months, it has institutional knowledge that would take a new team member days to absorb.&lt;/p&gt;

&lt;p&gt;And if you're working with a team, the effect multiplies. Everyone's saved knowledge becomes searchable by everyone else. Your senior engineer's debugging insights are available to your junior developer. No one has to re-discover what someone else already figured out.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;If you want to try persistent memory:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Sign up at &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt; (free tier available)&lt;/li&gt;
&lt;li&gt;Install with one command: &lt;code&gt;npx contextforge-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Connect it to your AI tool of choice&lt;/li&gt;
&lt;li&gt;Start saving things you'd normally lose between sessions&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The free plan gives you 50 saved items and 100 searches per month — enough to feel the difference in your first week.&lt;/p&gt;

&lt;p&gt;But regardless of which tool you use, the principle is the same: &lt;strong&gt;stop letting your AI forget everything you teach it.&lt;/strong&gt; The 15 minutes you spend re-explaining your project every session add up to hours every week and days every month.&lt;/p&gt;

&lt;p&gt;Your AI is powerful. Give it a memory, and it becomes indispensable.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;ContextForge works with Claude Code, Cursor, GitHub Copilot, and Claude Desktop. Free to start.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>mcp</category>
    </item>
    <item>
      <title>The Missing Layer Between You and Your AI Coding Assistant</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 24 Mar 2026 15:30:00 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/the-missing-layer-between-you-and-your-ai-coding-assistant-43mc</link>
      <guid>https://dev.to/alfredoizjr/the-missing-layer-between-you-and-your-ai-coding-assistant-43mc</guid>
      <description>&lt;h1&gt;
  
  
  The Missing Layer Between You and Your AI Coding Assistant
&lt;/h1&gt;

&lt;p&gt;If you use AI tools like Claude, ChatGPT, Cursor, or GitHub Copilot to help you work, you've probably noticed something frustrating: &lt;strong&gt;every time you start a new conversation, your AI has no idea who you are.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It doesn't remember what you worked on yesterday. It doesn't know your project. It doesn't recall that bug you spent three hours fixing last week. You have to explain everything from scratch. Every. Single. Time.&lt;/p&gt;

&lt;p&gt;That's the problem I got tired of. And that's why I built ContextForge.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem: Your AI Has Amnesia
&lt;/h2&gt;

&lt;p&gt;Think of it like this. Imagine you hire an incredibly talented assistant. They're fast, smart, and can help you with almost anything. But every morning when they show up to work, they've completely forgotten everything — your name, your company, what you're building, what happened yesterday.&lt;/p&gt;

&lt;p&gt;That's exactly what working with AI tools feels like today. The conversation ends, the memory is gone.&lt;/p&gt;

&lt;p&gt;For me, this meant:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;15-20 minutes wasted&lt;/strong&gt; at the start of every session re-explaining my project&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Repeating the same context&lt;/strong&gt; about my tech stack, business rules, and decisions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Losing valuable insights&lt;/strong&gt; — solutions I found yesterday were gone today&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Onboarding friction&lt;/strong&gt; — every team member had to re-teach the AI from zero&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It doesn't sound like a lot. But multiply that across every session, every day, across a team — and it adds up to &lt;strong&gt;hours of lost productivity every week&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Give Your AI a Memory
&lt;/h2&gt;

&lt;p&gt;ContextForge is a memory layer for your AI tools. It works with Claude Code, Cursor, GitHub Copilot, and Claude Desktop. The idea is simple:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Anything you want your AI to remember, you save. Anything you need later, you search.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here's what that looks like in practice:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Starting your day:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You open your AI tool and ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"What were we working on last week?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Instead of a blank stare, your AI pulls up your recent work — the features you were building, the bugs you fixed, the decisions you made. You're productive in 30 seconds instead of 20 minutes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Saving what you learn:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You just figured out something important — maybe a tricky business rule, a workaround for a tool, or a decision your team agreed on. You tell your AI:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Remember this: client invoices must be generated before the 5th of each month, or the billing system flags them as late."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Done. That knowledge is now saved permanently and searchable by anyone on your team.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Switching between projects:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You jump from one project to another. Instead of re-explaining everything, your AI already knows the context for each project — how it's structured, what the priorities are, what's been decided. The switch is instant.&lt;/p&gt;

&lt;h2&gt;
  
  
  How the Search Works (The Part That Makes It Useful)
&lt;/h2&gt;

&lt;p&gt;Saving knowledge is only half the story. The other half is &lt;strong&gt;finding it when you need it&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;ContextForge uses smart search. You don't need to remember exact words or file names — you just describe what you're looking for in plain language.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"How do we handle client payments?"&lt;/p&gt;

&lt;p&gt;"What was that issue with the email notifications?"&lt;/p&gt;

&lt;p&gt;"Find everything related to the onboarding process"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The search understands &lt;strong&gt;meaning&lt;/strong&gt;, not just keywords. So if you saved something titled "Invoice generation workflow" and you search for "billing process," it'll still find it because the concepts are related.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You can also narrow things down:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Search within a specific project or workspace&lt;/li&gt;
&lt;li&gt;Filter by tags like "urgent," "design-decision," or "bug"&lt;/li&gt;
&lt;li&gt;Set how closely results need to match your question&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything is organized into &lt;strong&gt;Projects&lt;/strong&gt; (your different initiatives) and &lt;strong&gt;Spaces&lt;/strong&gt; (categories within a project, like "Design," "Bugs," "Architecture"). So your knowledge stays tidy as it grows.&lt;/p&gt;

&lt;h2&gt;
  
  
  The New Feature: Search That Follows Connections
&lt;/h2&gt;

&lt;p&gt;Here's what we just shipped, and it's a game-changer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The old way:&lt;/strong&gt; You search for "onboarding" and you get results that mention "onboarding." But what about that welcome email sequence you saved separately? Or that CRM setup guide that's directly related? If those didn't use the word "onboarding," they wouldn't show up.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The new way:&lt;/strong&gt; ContextForge now follows the connections between your saved knowledge.&lt;/p&gt;

&lt;h3&gt;
  
  
  How It Works
&lt;/h3&gt;

&lt;p&gt;When you save knowledge, you can link related items together. Just tell your AI:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Connect the welcome email sequence to the onboarding process"&lt;/p&gt;

&lt;p&gt;"Link the security audit to the payment system architecture"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You're building a web of connected knowledge — like a personal Wikipedia for your projects.&lt;/p&gt;

&lt;h3&gt;
  
  
  What This Means for Search
&lt;/h3&gt;

&lt;p&gt;Now when you search for "onboarding," ContextForge does something smart:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Finds direct matches&lt;/strong&gt; — anything that talks about onboarding&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Follows the connections&lt;/strong&gt; — discovers related items that are linked to those matches, even if they never mention "onboarding"&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So your search for "onboarding" might return:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Direct results:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Client Onboarding Process (89% match)&lt;/li&gt;
&lt;li&gt;Onboarding Checklist (76% match)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Discovered through connections:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Welcome Email Sequence — &lt;em&gt;connected to the onboarding process&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;CRM Setup Guide — &lt;em&gt;derived from the onboarding checklist&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You found things you &lt;strong&gt;didn't even know to search for&lt;/strong&gt;. That's the power of connected knowledge.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why This Matters for Teams
&lt;/h3&gt;

&lt;p&gt;This is where it gets really powerful. When one person saves knowledge and connects it to related topics, &lt;strong&gt;everyone on the team benefits&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Your experienced team member documents how the payment system works and links it to the security requirements, the compliance rules, and the third-party integrations. Now when someone new searches "payment processing," they don't just get one document — they get the full picture, including context they wouldn't have known to look for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The more connections your team creates, the smarter every search becomes.&lt;/strong&gt; Knowledge compounds over time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real Impact
&lt;/h2&gt;

&lt;p&gt;After three months of using ContextForge in my daily workflow:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Starting a work session:&lt;/strong&gt; from ~15 minutes of setup to ~30 seconds&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Investigating past issues:&lt;/strong&gt; from ~45 minutes of digging to ~10 minutes of searching&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Switching between projects:&lt;/strong&gt; from ~10 minutes of context loading to instant&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bringing new team members up to speed:&lt;/strong&gt; from days to hours&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's roughly &lt;strong&gt;1-2 hours saved every day&lt;/strong&gt;. Not through any trick — just by not having to repeat myself.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;If you want to try it:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create a free account at &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Get your API key from the dashboard&lt;/li&gt;
&lt;li&gt;Install it with one command: &lt;code&gt;npx contextforge-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Connect it to your AI tool (Claude Code, Cursor, Copilot, or Claude Desktop)&lt;/li&gt;
&lt;li&gt;Start saving knowledge and let it build up over time&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The free plan includes 50 saved items, 100 searches per month, and 3 workspaces. That's enough to see the difference in your first week.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bottom Line
&lt;/h2&gt;

&lt;p&gt;AI tools are incredibly powerful, but they have a fundamental gap: &lt;strong&gt;they forget everything between conversations&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;ContextForge fills that gap. Save what matters. Connect related knowledge. Search it naturally. And let it grow smarter over time — for you and your whole team.&lt;/p&gt;

&lt;p&gt;The relationship-aware search we just launched makes this even better. Now when you search, you don't just find what matches your words — you find everything that's connected to it.&lt;/p&gt;

&lt;p&gt;Because the best knowledge isn't just the thing you searched for. It's the thing you didn't know you needed.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;ContextForge Memory works with Claude Code, Cursor, GitHub Copilot, and Claude Desktop. It's free to start.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt; | &lt;a href="https://github.com/alfredoizdev/MCP-context-forge" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; | &lt;a href="https://www.npmjs.com/package/contextforge-mcp" rel="noopener noreferrer"&gt;npm&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>mcp</category>
      <category>programming</category>
    </item>
    <item>
      <title>GitHub Copilot Now Supports MCP — Here's How to Give It Persistent Memory</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Tue, 17 Mar 2026 16:00:00 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/github-copilot-now-supports-mcp-heres-how-to-give-it-persistent-memory-19l3</link>
      <guid>https://dev.to/alfredoizjr/github-copilot-now-supports-mcp-heres-how-to-give-it-persistent-memory-19l3</guid>
      <description>&lt;p&gt;GitHub Copilot just got MCP support. That means you can now connect external tools directly to Copilot's Agent Mode in VS Code.&lt;/p&gt;

&lt;p&gt;One thing you can do with this: give Copilot memory that persists across sessions.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Every time you start a new Copilot chat, it starts from zero. It doesn't know your architecture. It doesn't remember the decision you made last week about the auth flow. It doesn't know that your team uses Zustand instead of Redux, or that the billing module has a quirk with European tax codes.&lt;/p&gt;

&lt;p&gt;You explain. Again. And again.&lt;/p&gt;

&lt;p&gt;This isn't a minor inconvenience. For complex projects, re-establishing context is the biggest time sink when working with AI coding agents.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changed
&lt;/h2&gt;

&lt;p&gt;GitHub shipped MCP (Model Context Protocol) support for Copilot in VS Code. MCP is an open protocol that lets AI tools connect to external servers — databases, APIs, custom tools.&lt;/p&gt;

&lt;p&gt;This means Copilot can now use tools beyond its built-in capabilities. Including tools that give it memory.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;I built &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;ContextForge&lt;/a&gt;, an MCP server that gives AI agents persistent memory. It works with Claude Code, Claude Desktop, Cursor, and now GitHub Copilot.&lt;/p&gt;

&lt;p&gt;The setup takes about 3 minutes.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 1: Create a free account
&lt;/h3&gt;

&lt;p&gt;Go to &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt; and sign up. Create an API key from the dashboard.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2: Add the MCP config
&lt;/h3&gt;

&lt;p&gt;Create a &lt;code&gt;.mcp.json&lt;/code&gt; file in your project root:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"servers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"contextforge"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"-y"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"contextforge-mcp"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"CONTEXTFORGE_API_KEY"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"your-api-key-here"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or add it globally in your VS Code &lt;code&gt;settings.json&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"servers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"contextforge"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"-y"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"contextforge-mcp"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
          &lt;/span&gt;&lt;span class="nl"&gt;"CONTEXTFORGE_API_KEY"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"your-api-key-here"&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Step 3: Use Agent Mode
&lt;/h3&gt;

&lt;p&gt;Open Copilot Chat in VS Code and switch to Agent Mode. ContextForge tools are now available.&lt;/p&gt;

&lt;p&gt;That's it.&lt;/p&gt;

&lt;h2&gt;
  
  
  What you can do with it
&lt;/h2&gt;

&lt;p&gt;Once connected, Copilot can:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Save context as you work:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"Remember that our auth uses JWT with 1-hour token expiration and refresh tokens stored in HTTP-only cookies"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Recall it in any future session:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"How does our authentication work?"
→ Found 3 results: JWT auth with refresh tokens in HTTP-only cookies... (94% match)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Sync your Git history:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"Sync my recent commits to memory"
→ Synced 47 commits and 8 PRs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Track tasks:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"Create a task: Fix auth token refresh bug, priority high"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Search with natural language:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"What decisions did we make about the database schema?"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The key insight: this memory persists. Close VS Code, switch machines, start a new chat — the context is still there.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters
&lt;/h2&gt;

&lt;p&gt;Large context windows help, but they don't solve the persistence problem. Claude's 1M token window is impressive. But when the session ends, that context is gone.&lt;/p&gt;

&lt;p&gt;Persistent memory is different. It's the accumulated knowledge about your project — architecture decisions, naming conventions, debugging notes, deployment quirks — that you build up over weeks and months.&lt;/p&gt;

&lt;p&gt;Think of it as the difference between RAM and a hard drive. You need both.&lt;/p&gt;

&lt;h2&gt;
  
  
  Works everywhere
&lt;/h2&gt;

&lt;p&gt;The same memory syncs across all your tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub Copilot&lt;/strong&gt; — Agent Mode in VS Code&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code&lt;/strong&gt; — Terminal workflow&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Desktop&lt;/strong&gt; — Rich conversations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cursor&lt;/strong&gt; — AI-assisted editing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Save a decision in Claude Code, recall it in Copilot. The memory follows you, not the tool.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;ContextForge has a free tier — no credit card required. Setup takes under 3 minutes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Website: &lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;contextforge.dev&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Docs: &lt;a href="https://contextforge.dev/docs" rel="noopener noreferrer"&gt;contextforge.dev/docs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;npm: &lt;code&gt;npm install -g contextforge-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're already using Copilot with Agent Mode, adding persistent memory is one &lt;code&gt;.mcp.json&lt;/code&gt; file away.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I built ContextForge because I got tired of re-explaining my codebase to my AI agent every morning. If you've felt the same frustration, give it a try.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>productivity</category>
      <category>githubcopilot</category>
    </item>
    <item>
      <title>Claude Now Remembers 5x More — But It Still Forgets You Tomorrow</title>
      <dc:creator>Alfredo Izquierdo</dc:creator>
      <pubDate>Sat, 14 Mar 2026 02:27:00 +0000</pubDate>
      <link>https://dev.to/alfredoizjr/claude-now-remembers-5x-more-but-it-still-forgets-you-tomorrow-4me0</link>
      <guid>https://dev.to/alfredoizjr/claude-now-remembers-5x-more-but-it-still-forgets-you-tomorrow-4me0</guid>
      <description>&lt;p&gt;Last Tuesday I was three hours deep into a refactor. Not the fun kind — the kind where you're untangling years of tech debt and every file you touch reveals two more that need fixing.&lt;/p&gt;

&lt;p&gt;But Claude and I were in the zone. We'd mapped out the dependency chain, figured out the migration order, and even caught a subtle race condition that would've blown up in production. It was one of those sessions where you feel like you're pair programming with someone who genuinely gets it.&lt;/p&gt;

&lt;p&gt;Then my laptop died.&lt;/p&gt;

&lt;p&gt;I plugged it in, reopened Claude, and typed "ok where were we?"&lt;/p&gt;

&lt;p&gt;"I'd be happy to help! What are you working on?"&lt;/p&gt;

&lt;p&gt;Three hours. Gone. Not because Claude isn't smart enough to remember — but because that's just how conversations work. They end.&lt;/p&gt;




&lt;h2&gt;
  
  
  So About That 1 Million Token Thing
&lt;/h2&gt;

&lt;p&gt;You've probably seen the news. Opus 4.6 now ships with a 1M token context window. Five times bigger than before, same price. And honestly? It's a massive deal.&lt;/p&gt;

&lt;p&gt;With a million tokens you can hand Claude your entire codebase and it won't blink. It can hold the frontend, the backend, the tests, the deployment configs, and still have room for a lengthy conversation about all of it.&lt;/p&gt;

&lt;p&gt;But I want to tell you about something that happened to me after the announcement.&lt;/p&gt;

&lt;p&gt;I was scrolling through Twitter and saw someone post: "1M context window means memory tools are officially dead. Why would you need persistent storage when you can just load everything?"&lt;/p&gt;

&lt;p&gt;And I laughed. Not because they're wrong about the power of 1M tokens — they're absolutely right. I laughed because I've heard that exact take every single time context windows got bigger. At 8K. At 100K. At 200K. And every time, three weeks later, those same people are frustrated again.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Filing Cabinet on Your Desk
&lt;/h2&gt;

&lt;p&gt;Let me tell you why.&lt;/p&gt;

&lt;p&gt;Last week a developer on our Discord shared something that stuck with me. He said: "I upgraded my desk to one of those giant L-shaped ones. I can spread out every document I need. But I still need my filing cabinet because at 6 PM I have to clear the desk."&lt;/p&gt;

&lt;p&gt;That's it. That's the whole thing.&lt;/p&gt;

&lt;p&gt;A bigger context window is a bigger desk. You can spread out more. You can see more at once. You can make connections between things that used to require flipping back and forth. All of that is genuinely useful.&lt;/p&gt;

&lt;p&gt;But when you close the tab — and you will close the tab — the desk gets cleared.&lt;/p&gt;

&lt;p&gt;Your filing cabinet is what makes Monday morning bearable. It's what lets you pick up a project after a week of vacation without spending an hour figuring out where you left off. It's what keeps tribal knowledge from evaporating when someone goes on PTO.&lt;/p&gt;




&lt;h2&gt;
  
  
  A Wednesday That Changed How I Think About This
&lt;/h2&gt;

&lt;p&gt;Three weeks ago, on a Wednesday, I hit a bug that made no sense. A webhook handler was silently dropping events, but only for one specific customer. The logs showed nothing. The code looked correct.&lt;/p&gt;

&lt;p&gt;I was about to start a fresh debugging session when Claude pulled something up from my ContextForge space — a note from January where I'd documented a nearly identical issue. Turns out, that customer's account had been created during a migration window where a timezone offset was slightly wrong, causing their webhook signatures to validate with a one-second drift.&lt;/p&gt;

&lt;p&gt;January. Two months ago. In a conversation I'd completely forgotten about.&lt;/p&gt;

&lt;p&gt;I fixed the bug in fifteen minutes. Without that note, I would've burned the afternoon — and maybe part of Thursday — tracing through the same path I'd already walked.&lt;/p&gt;

&lt;p&gt;That's not something a bigger context window gives you. That's accumulated knowledge paying dividends over time.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I Didn't Expect
&lt;/h2&gt;

&lt;p&gt;When I first built ContextForge, I thought of it as a note-taking tool for AI. Save stuff, recall stuff. Simple.&lt;/p&gt;

&lt;p&gt;But something unexpected happened once teams started using it.&lt;/p&gt;

&lt;p&gt;A developer in São Paulo joined a project that three people had been building for four months. Instead of the usual two-hour onboarding call, she connected to the shared ContextForge space and started asking Claude questions. "Why did we choose this auth pattern?" "What's the deal with the legacy billing endpoint?" "Are there any known gotchas with the rate limiter?"&lt;/p&gt;

&lt;p&gt;Claude answered all of them. Not from documentation — most of it wasn't documented. From the accumulated memory of four months of conversations, decisions, and debugging sessions that the team had been naturally building up.&lt;/p&gt;

&lt;p&gt;She shipped her first PR that afternoon.&lt;/p&gt;

&lt;p&gt;That's not a feature. That's a side effect of giving AI a way to accumulate knowledge over time. And it has nothing to do with how big the context window is.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why 1M Actually Makes Memory Better
&lt;/h2&gt;

&lt;p&gt;Here's the part that surprises people: a bigger context window doesn't make persistent memory obsolete. It makes it more powerful.&lt;/p&gt;

&lt;p&gt;Before, with a 200K window, ContextForge had to be surgical about what it surfaced. Only the top 5 most relevant memories could fit alongside your code. Tough choices had to be made.&lt;/p&gt;

&lt;p&gt;With 1M tokens? Claude can load your recent commits, your architectural decisions, the debugging notes from last month, AND the full code you're working on — all at once. The memory has room to breathe. Context and memory stop competing for space and start complementing each other.&lt;/p&gt;

&lt;p&gt;Bigger desk. Same filing cabinet. Better workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Honest Take
&lt;/h2&gt;

&lt;p&gt;I'm not going to pretend this article isn't partly about ContextForge. It is. I built the thing, I believe in it.&lt;/p&gt;

&lt;p&gt;But the honest truth is this: I've watched developers go through the same cycle over and over. A new model drops, context gets bigger, everyone celebrates, and then slowly the frustration creeps back in. Because the underlying problem — that conversations are temporary but projects are not — never actually goes away with a bigger window.&lt;/p&gt;

&lt;p&gt;A million tokens is extraordinary. I genuinely mean that. For the first time, you can have a conversation with Claude where it truly understands your entire codebase at once. That changes what's possible in a single session.&lt;/p&gt;

&lt;p&gt;But your project isn't a single session. It's hundreds of sessions spread across months. And somewhere between session 47 and session 48, there's a gap where knowledge falls through. That gap is what persistent memory fills.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;&lt;a href="https://contextforge.dev" rel="noopener noreferrer"&gt;ContextForge&lt;/a&gt; is free to start. If you've never experienced a Claude that remembers your last conversation, try it once. That's all I ask.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>discuss</category>
      <category>claudecode</category>
    </item>
  </channel>
</rss>
