DEV Community

Cover image for ๐Ÿš€ VS Code Pre-March 2026 Release (v1.110) Including Practical Agents โ€” What's New? A Beginner's Guide
Manikandan Mariappan
Manikandan Mariappan

Posted on

๐Ÿš€ VS Code Pre-March 2026 Release (v1.110) Including Practical Agents โ€” What's New? A Beginner's Guide

Introduction

Welcome! VS Code just released version 1.110 (Pre-March) and it's packed with upgrades.

What's new video Link

๐Ÿค– 1. AI Agents Got Smarter

Background Agents โ€” Let AI Work While You Do Something Else

Imagine you tell your AI assistant to "refactor this code" and then go grab a coffee. Background agents let you hand off tasks to Copilot, which keeps working in the background while you do other things. When it's done, you can check back.

What's new this month:

  • You can now use /compact to summarize the conversation history so it doesn't run out of memory.
  • Slash commands like /compact, /agents, and /hooks are now available in background sessions.
  • You can rename background sessions to keep things organized.

Image description0

Claude Agents โ€” An Alternative AI Brain

VS Code now also supports Claude AI agents (from Anthropic). Think of it like choosing between different AI assistants โ€” you can now pick Claude as your agent.

New features:

  • You can send mid-conversation messages to steer the agent in a different direction.
  • Claude now has access to /compact, /agents, and /hooks slash commands.
  • Significant performance improvements make it faster.

Image description1

๐Ÿ” 2. Debug Your AI Agent (No More Black Box!)

Ever wondered what your AI is actually doing behind the scenes? The new Agent Debug Panel shows you exactly that.

Open it from the Command Palette: Developer: Open Agent Debug Panel

It shows:

  • Which prompt files are loaded
  • What tools were called
  • A visual chart of the sequence of events

๐Ÿ’ก Perfect for beginners who want to understand why the agent made certain choices.

Image description2

โšก 3. Auto-Approve AI Actions โ€” But Be Careful!

You can now type /autoApprove in the chat box to let the agent run commands without asking for your approval each time. This speeds things up a lot.

To turn it off, type /disableAutoApprove.

โš ๏ธ Warning for beginners: Only use auto-approve when you trust what the agent is doing. It can run terminal commands without asking โ€” which could cause unintended changes.

๐Ÿง  4. Smarter Chat Sessions

Context Compaction โ€” Don't Lose Your Work

Long conversations can fill up the AI's memory (called the "context window"). When this happens, VS Code now automatically summarizes the history so you can keep going without starting over.

You can also trigger it manually:

/compact focus on the important decisions we made
Enter fullscreen mode Exit fullscreen mode

Image description3

Fork a Session โ€” Branch Your Conversation

You can now fork a chat session! Think of it like creating a copy of your conversation at a specific point so you can explore a different approach without losing the original.

/fork
Enter fullscreen mode Exit fullscreen mode

Or hover over any message and click Fork Conversation to create a branch from that point.

๐Ÿงฉ 5. Agent Plugins โ€” Install AI Superpowers

VS Code now supports Agent Plugins โ€” prepackaged bundles of AI tools and customizations you can install just like regular extensions.

To find them:

  1. Open the Extensions view (Ctrl+Shift+X / Cmd+Shift+X)
  2. Type @agentPlugins in the search box

Plugins can include custom slash commands, AI skills, MCP servers, and more.

Image description4

๐ŸŒ 6. AI Can Now Use a Browser!

This one is really cool. VS Code now has agentic browser tools โ€” meaning your AI agent can literally open a browser, click around, read the page, and take screenshots โ€” all without you doing anything!

Use cases:

  • Build a web app and have the agent test it automatically
  • Let the agent verify that UI changes look correct

๐Ÿ“Œ This is experimental, so you need to enable it in settings first.

Image description5

โœ๏ธ 7. Smarter Code Suggestions

Long-Distance Next Edit Suggestions

VS Code's AI doesn't just suggest what to type next โ€” it can now suggest edits anywhere in your file, not just near your cursor. This is like having an AI co-pilot that can anticipate what you'll need to change later in the file.

Control How Eager the AI Is

You can now set an eagerness level for suggestions:

  • High eagerness = more suggestions (some might be less relevant)
  • Low eagerness = fewer, more precise suggestions

Find this in the Copilot Status Bar at the bottom of VS Code.

๐Ÿ–ฅ๏ธ 8. Terminal Upgrades

See Images in the Terminal!

VS Code's built-in terminal now supports the Kitty graphics protocol, which means you can display images directly in the terminal. Tools like kitten icat let you view PNG, RGB, and RGBA images without leaving VS Code.

Ghostty Terminal Support

If you use the Ghostty terminal app on macOS or Linux, you can now set it as your default external terminal inside VS Code.

// macOS
"terminal.external.osxExec": "Ghostty.app",
// Linux
"terminal.external.linuxExec": "ghostty"
Enter fullscreen mode Exit fullscreen mode

Image description6

๐Ÿ 9. Python Got Easier to Manage

A new Python Environments extension is now rolling out to all users. It gives you a single place to manage all Python environments โ€” whether you use venv, conda, pyenv, poetry, or pipenv.

Key features:

  • Quick Create: One click to create a new environment
  • Package management: Install/uninstall packages from a visual UI
  • uv integration: Faster environment creation

Enable it in settings with python.useEnvsExtension.

โš™๏ธ 10. Quality-of-Life Improvements

You Can Move Notifications

Tired of chat notifications hiding behind other panels? You can now move them to top-right, bottom-right, or bottom-left. Go to Settings and search for "notification position".

AI Co-Author Credits on Commits

When you commit AI-generated code, VS Code can now automatically add a Co-authored-by: GitHub Copilot line to the commit message. This is optional but useful for transparency.

The setting options are:

  • off โ€” Don't add anything (default)
  • chatAndAgent โ€” Tag commits from Copilot Chat
  • all โ€” Tag all AI-generated code including inline suggestions

JavaScript/TypeScript Settings Unified

Previously, you had to set some options twice โ€” once for JavaScript and once for TypeScript. Now they share a single js/ts.* settings prefix.

Before:

"javascript.format.enable": false,
"typescript.format.enable": true
Enter fullscreen mode Exit fullscreen mode

After (cleaner!):

"[javascript]": { "js/ts.format.enabled": false },
"[typescript]": { "js/ts.format.enabled": true }
Enter fullscreen mode Exit fullscreen mode

๐ŸŽจ 11. Personalization Fun

Custom Thinking Phrases

You know that spinning message VS Code shows when the AI is thinking? You can now customize it!

"chat.agent.thinking.phrases": {
  "mode": "replace",
  "phrases": ["Bribing the hamster", "Untangling the spaghetti", "Consulting the oracle..."]
}
Enter fullscreen mode Exit fullscreen mode

Summary Table

Feature What It Does Good for Beginners?
Background Agents AI works while you rest โœ… Yes
Agent Debug Panel See what your AI is doing โœ… Yes
/autoApprove Skip approval prompts โš ๏ธ Use carefully
Context Compaction Keep long chats alive โœ… Yes
Fork Session Explore alternative paths โœ… Yes
Agent Plugins Install AI bundles โœ… Yes
Browser Tools AI can click around the web ๐Ÿงช Experimental
Python Envs Extension Manage Python environments visually โœ… Yes
Images in Terminal View images in the terminal ๐Ÿ†’ Cool extra
Custom Thinking Phrases Personalize the loading text ๐Ÿ˜„ Fun

๐Ÿ Wrapping Up

VS Code 1.110 is a huge step forward for AI-assisted development. Whether you're just starting out or already building apps with Copilot, there's something here for you. The key theme this month: more control, better visibility, and smarter sessions.

Want to try these features? Make sure you're on VS Code 1.110 or higher and have GitHub Copilot enabled.

Happy coding! ๐Ÿ‘ฉโ€๐Ÿ’ป๐Ÿง‘โ€๐Ÿ’ป

What's new video Link

Source: VS Code February 2026 Release Notes

Top comments (0)