27 Aug How to Use Agentic Coding with Claude in CodeGPT + VS Code
Ever wished your coding assistant could think ahead, solve tasks like a teammate, and not just wait for your prompt? Welcome to the world of agentic coding with Claude in CodeGPT and VS Code! It’s like pairing up with a super-smart buddy who actually wants to help you finish your project — without getting in your way.
Let’s dive into this new style of coding. We’ll keep it fun and easy!
🚀 What is Agentic Coding?
Agentic coding is when your AI tool doesn’t just respond to your commands. Instead, it takes the initiative. It understands high-level goals and creates its own steps to help you get the job done.
Think of it like this:
- You give Claude a goal like “Build me a to-do list app.”
- Claude breaks it into steps: front-end, back-end, database, etc.
- Then it starts coding, testing, and even asking you questions if needed!
That’s agentic coding — coding with an agent mindset.
🛠️ Tools You’ll Need
Before you get started, make sure you’ve got these ready:
- VS Code installed
- CodeGPT extension in VS Code (search it in the Extensions Marketplace)
- Anthropic’s Claude API access (or connected via CodeGPT)
All set? Great! Let’s get coding.
🤖 Setting Up CodeGPT with Claude
- Open VS Code
- Click on the Extensions tab
- Search for CodeGPT and install it
- Go to the extension settings and add your Claude API Key
- Select Claude as your preferred model (if you have other options)
Now Claude is ready to help — but in agentic mode, it becomes a true coding partner.
🧠 How to Start an Agentic Coding Session
Starting a session is easy. Just open a new file and give Claude a high-level goal like:
// Goal: Create a weather app using HTML, CSS, and JavaScript that updates every 10 minutes
Claude will now act like an agent. It might say:
"Sure! I’ll first create the HTML skeleton, then link to an API, and write the JS for updates."
And off it goes!
🔄 Interacting with Your AI Agent
You don’t just sit back. Think of this like pair programming. You guide him. For example:
- Ask “What library are you using for the fetch call?”
- Say “Let’s use Tailwind CSS instead of plain CSS.”
- Request “Add error handling for the API response.”
Claude listens and adjusts. It’s not a chatbot — it’s a coding teammate.
🧩 Claude’s Superpowers
Here are some things Claude does really well in agentic mode:
- Planning: Maps out the structure before coding
- Filling in boilerplate: Sets up HTML and project structure fast
- Searching: Can suggest answers and find bugs in unfamiliar libraries
- Debugging: Reads errors and explains them line-by-line
⚙️ Tips to Make the Most of It
Here’s how you can level up with agentic Claude:
- Give clear, goal-based prompts (don’t micromanage)
- Think of it like a junior dev — review what it writes
- Break large tasks into mini-goals if Claude slows down
- Use “Why did you choose this approach?” when curious
And remember: the clearer YOU are, the smarter CLAUDE becomes.
📦 Sample Project: Quote Generator
Let’s try it! Paste this into CodeGPT for Claude to run with:
// Goal: Create a quote generator webpage that updates when the user clicks a button. Use HTML, CSS, JavaScript. Make it look clean.
Claude will plan it out, write the code, and even link to a quote API if needed. You just guide it along.
🌈 Final Thoughts
Agentic coding with Claude in CodeGPT + VS Code is AWESOME. It feels like having a helpful coder right inside your editor.
It’s fast. It’s smart. It learns from you. And it never gets tired.
Now go on — grab a snack, open VS Code, and let Claude do some of the coding for you 🍕💻
No Comments