<?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: JOSHUA MAEBA NYAMASEGE</title>
    <description>The latest articles on DEV Community by JOSHUA MAEBA NYAMASEGE (@maeba96).</description>
    <link>https://dev.to/maeba96</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%2F3941417%2F0d181c49-b048-4188-aab2-d674d8cdf4a8.png</url>
      <title>DEV Community: JOSHUA MAEBA NYAMASEGE</title>
      <link>https://dev.to/maeba96</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maeba96"/>
    <language>en</language>
    <item>
      <title>I Built an AI Coding Assistant Because I Got Tired of Context Switching</title>
      <dc:creator>JOSHUA MAEBA NYAMASEGE</dc:creator>
      <pubDate>Wed, 20 May 2026 06:19:47 +0000</pubDate>
      <link>https://dev.to/maeba96/i-built-an-ai-coding-assistant-because-i-got-tired-of-context-switching-2e9b</link>
      <guid>https://dev.to/maeba96/i-built-an-ai-coding-assistant-because-i-got-tired-of-context-switching-2e9b</guid>
      <description>&lt;p&gt;AI coding tools are everywhere. And yet, my workflow kept breaking the same way:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Write code → leave VS Code → open browser → ask AI → copy response → come back → repeat.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Every switch costs focus. Those interruptions add up.&lt;/p&gt;

&lt;p&gt;I wanted an assistant that &lt;strong&gt;lived inside the editor&lt;/strong&gt; and could handle real development work — not just answer questions. So I built &lt;strong&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=express-genix.coda-ai" rel="noopener noreferrer"&gt;Coda AI&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Is Coda AI?
&lt;/h2&gt;

&lt;p&gt;Coda AI is a VS Code extension with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;💬 In-editor chat&lt;/li&gt;
&lt;li&gt;🤖 Autonomous agent workflows&lt;/li&gt;
&lt;li&gt;✍️ Inline completions&lt;/li&gt;
&lt;li&gt;🔌 Support for multiple model providers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here's what I focused on when building it.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚡ Workspace-Aware Context
&lt;/h2&gt;

&lt;p&gt;Coda understands your project structure — not just the file you have open. It uses your actual codebase as context, so responses are grounded in your real code, not generic examples.&lt;/p&gt;




&lt;h2&gt;
  
  
  Agent Mode: Hand It Real Work
&lt;/h2&gt;

&lt;p&gt;Instead of asking:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"How do I fix this?"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You hand it a task and let it run:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Refactor a module&lt;/li&gt;
&lt;li&gt;Write tests&lt;/li&gt;
&lt;li&gt;Fix bugs&lt;/li&gt;
&lt;li&gt;Run builds&lt;/li&gt;
&lt;li&gt;Update files across the codebase&lt;/li&gt;
&lt;li&gt;Investigate issues&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The agent can inspect code, propose changes, execute commands, and iterate — with &lt;strong&gt;approval prompts for sensitive actions&lt;/strong&gt; so you stay in control.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔌 Provider Flexibility — No Lock-In
&lt;/h2&gt;

&lt;p&gt;One thing that consistently bothered me about AI tooling: you adopt a workflow, then you're stuck with one provider.&lt;/p&gt;

&lt;p&gt;Coda supports:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Provider&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;OpenAI&lt;/td&gt;
&lt;td&gt;Cloud&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude (Anthropic)&lt;/td&gt;
&lt;td&gt;Cloud&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Gemini (Google)&lt;/td&gt;
&lt;td&gt;Cloud&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DeepSeek&lt;/td&gt;
&lt;td&gt;Cloud&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Groq&lt;/td&gt;
&lt;td&gt;Cloud&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Amazon Bedrock&lt;/td&gt;
&lt;td&gt;Cloud&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;OpenRouter&lt;/td&gt;
&lt;td&gt;Cloud (aggregator)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ollama&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Fully local&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;If a better model ships tomorrow, your workflow doesn't need to change.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧩 MCP Support — Connect Any Tool
&lt;/h2&gt;

&lt;p&gt;This was one of my favourite parts to build.&lt;/p&gt;

&lt;p&gt;Coda supports the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;, so the agent can work with external tools automatically:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub&lt;/li&gt;
&lt;li&gt;Filesystem&lt;/li&gt;
&lt;li&gt;Documentation&lt;/li&gt;
&lt;li&gt;Custom workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No hardcoded integrations. You plug in what you need.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Building This Taught Me
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Developer tooling isn't only about adding intelligence. It's about &lt;strong&gt;reducing friction&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The fewer times you leave flow state, the better the tool.&lt;/p&gt;

&lt;p&gt;Intelligence without integration is just another tab to switch to.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It &amp;amp; Share Feedback
&lt;/h2&gt;

&lt;p&gt;Coda is still early, and I'm actively improving it.&lt;/p&gt;

&lt;p&gt;If you're a developer, I'd genuinely value your input:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What would make an AI coding assistant actually useful in your day-to-day workflow?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Drop your thoughts in the comments — critical feedback welcome.&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=express-genix.coda-ai" rel="noopener noreferrer"&gt;Install on the VS Code Marketplace&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built by a developer who got tired of switching tabs. Shipping, not just talking about it.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>ai</category>
      <category>productivity</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
