<?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>Forem: NeverStar</title>
    <description>The latest articles on Forem by NeverStar (@neverstar94).</description>
    <link>https://forem.com/neverstar94</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%2F3815475%2Fa98f4eca-ad13-459b-8842-5dedf42449f0.png</url>
      <title>Forem: NeverStar</title>
      <link>https://forem.com/neverstar94</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/neverstar94"/>
    <language>en</language>
    <item>
      <title>How I Use Claude Code in VS Code (And Why It’s Actually Useful)</title>
      <dc:creator>NeverStar</dc:creator>
      <pubDate>Wed, 01 Apr 2026 07:35:38 +0000</pubDate>
      <link>https://forem.com/neverstar94/how-i-use-claude-code-in-vs-code-and-why-its-actually-useful-371i</link>
      <guid>https://forem.com/neverstar94/how-i-use-claude-code-in-vs-code-and-why-its-actually-useful-371i</guid>
      <description>&lt;p&gt;AI coding tools are everywhere right now, but not all of them feel genuinely helpful in day-to-day development. After experimenting with a few options, I started using &lt;strong&gt;Claude inside VS Code&lt;/strong&gt;, and it’s been surprisingly effective—especially for reasoning-heavy tasks.&lt;/p&gt;

&lt;p&gt;This isn’t a hype piece. It’s a practical walkthrough of how to set it up and how I actually use it while coding.&lt;/p&gt;




&lt;h2&gt;
  
  
  What “Claude Code” Really Means
&lt;/h2&gt;

&lt;p&gt;There’s no official “Claude Code” button inside VS Code (yet). What people mean is using &lt;strong&gt;Anthropic’s Claude models through an extension or API integration&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Compared to tools like Copilot, Claude feels different. It’s less about autocomplete and more about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Explaining code clearly&lt;/li&gt;
&lt;li&gt;Thinking through problems step-by-step&lt;/li&gt;
&lt;li&gt;Refactoring with context&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It behaves more like a teammate than a suggestion engine.&lt;/p&gt;




&lt;h2&gt;
  
  
  Getting It Set Up (What Actually Worked for Me)
&lt;/h2&gt;

&lt;p&gt;There are a few ways to connect Claude to VS Code, but the easiest one I found is using an extension like &lt;strong&gt;Continue.dev&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Here’s what I did:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open VS Code&lt;/li&gt;
&lt;li&gt;Go to Extensions&lt;/li&gt;
&lt;li&gt;Install &lt;strong&gt;Continue&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Add my Anthropic API key&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Then I configured the model like this:&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;"models"&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="nl"&gt;"title"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Claude Sonnet"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"provider"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"anthropic"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"model"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"claude-3-sonnet"&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;After that, it just worked inside the editor.&lt;/p&gt;




&lt;h2&gt;
  
  
  How I Actually Use Claude While Coding
&lt;/h2&gt;

&lt;p&gt;This is the part that matters. Not features—real usage.&lt;/p&gt;




&lt;h3&gt;
  
  
  1. Understanding Code I Didn’t Write
&lt;/h3&gt;

&lt;p&gt;This is probably the biggest win.&lt;/p&gt;

&lt;p&gt;Instead of digging through files for 20 minutes, I highlight code and ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“What is this function doing, and are there any edge cases?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Claude usually gives a clear breakdown without overcomplicating it.&lt;/p&gt;




&lt;h3&gt;
  
  
  2. Refactoring Without Breaking Everything
&lt;/h3&gt;

&lt;p&gt;When I’m cleaning up code, I’ll say something like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Refactor this into smaller reusable functions and improve readability”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It doesn’t just rewrite—it explains &lt;em&gt;why&lt;/em&gt;, which helps me trust the changes more.&lt;/p&gt;




&lt;h3&gt;
  
  
  3. Debugging Faster
&lt;/h3&gt;

&lt;p&gt;Instead of Googling errors, I paste them directly:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Why is this throwing a null reference error in this context?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It often catches things I missed—especially around async flows or state issues.&lt;/p&gt;




&lt;h3&gt;
  
  
  4. Writing Boilerplate (Without Thinking About It)
&lt;/h3&gt;

&lt;p&gt;For repetitive stuff:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API routes&lt;/li&gt;
&lt;li&gt;validation logic&lt;/li&gt;
&lt;li&gt;test scaffolding&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I just describe what I want and move on.&lt;/p&gt;




&lt;h3&gt;
  
  
  5. Learning New Stuff On the Fly
&lt;/h3&gt;

&lt;p&gt;This is underrated.&lt;/p&gt;

&lt;p&gt;If I’m working with something unfamiliar:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Explain how this React hook lifecycle works in this example”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It gives contextual explanations tied to my code—not generic docs.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Makes Claude Different From Other Tools
&lt;/h2&gt;

&lt;p&gt;After using it for a while, here’s what stood out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It &lt;strong&gt;reasons better&lt;/strong&gt; than most tools&lt;/li&gt;
&lt;li&gt;It’s strong at &lt;strong&gt;explaining tradeoffs&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;It doesn’t rush into shallow answers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But it’s not perfect.&lt;/p&gt;




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

&lt;p&gt;A few things to keep in mind:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It can still hallucinate (especially with obscure libraries)&lt;/li&gt;
&lt;li&gt;It’s not as tightly integrated as Copilot&lt;/li&gt;
&lt;li&gt;You need to guide it with clear prompts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So yeah—still requires thinking (which is a good thing).&lt;/p&gt;




&lt;h2&gt;
  
  
  Tips That Made a Big Difference
&lt;/h2&gt;

&lt;p&gt;A few things I learned quickly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Be specific → vague prompts = mediocre results&lt;/li&gt;
&lt;li&gt;Give context → mention framework, goal, constraints&lt;/li&gt;
&lt;li&gt;Ask follow-ups → treat it like a conversation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Bad prompt:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Fix this”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Better:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Fix this function so it handles undefined values and avoids re-renders in React”&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Using Claude in VS Code isn’t about replacing your workflow—it’s about removing friction.&lt;/p&gt;

&lt;p&gt;For me, it’s most useful when:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I’m stuck&lt;/li&gt;
&lt;li&gt;I’m exploring unfamiliar code&lt;/li&gt;
&lt;li&gt;I want a second opinion quickly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you set it up right and use it intentionally, it becomes less of a tool and more of a thinking partner.&lt;/p&gt;




&lt;p&gt;If you’d like to learn more, feel free to reach out to me here.&lt;/p&gt;

&lt;p&gt;Website   : &lt;a href="https://artross99.github.io" rel="noopener noreferrer"&gt;https://artross99.github.io&lt;/a&gt;&lt;br&gt;
Email     : &lt;a href="mailto:aktwork7@gmail.com"&gt;aktwork7@gmail.com&lt;/a&gt;&lt;br&gt;
Telegram  : &lt;a href="https://t.me/artross99" rel="noopener noreferrer"&gt;https://t.me/artross99&lt;/a&gt;&lt;br&gt;
Discord   : &lt;a href="https://discord.com/users/1024481232068821003" rel="noopener noreferrer"&gt;https://discord.com/users/1024481232068821003&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>ai</category>
      <category>softwaredevelopment</category>
      <category>web</category>
    </item>
  </channel>
</rss>
