Skip to main content
10 分間のコミュニティアンケートにご協力ください。7 月 19 日まで回答を受け付けております。こちらをクリックするとご参加いただけます。

Get Started with Agentforce Vibes IDE

Learning Objectives

After completing this unit, you’ll be able to:

  • Explain Agentforce Vibes IDE features.
  • Describe the difference between Visual Studio Code and web-based Agentforce Vibes IDE.
  • List the supported editions.
  • List the user interface elements of the IDE.
  • Describe agent modes for vibe coding.

What Is Agentforce Vibes IDE?

If you’re looking for a faster, more streamlined way to build on Salesforce without the hassle of local installations, check out Agentforce Vibes IDE. Think of it as having the full power and flexibility of Visual Studio Code (VS Code) right inside your web browser.

Available directly in your sandbox org, this modern integrated development environment (IDE) comes fully loaded with everything you need to build applications. When you use Agentforce Vibes IDE, you create and work in a Salesforce DX (SFDX) project—the standard format for modern, source-driven Salesforce development.

Because Agentforce Vibes IDE operates entirely in the cloud, both admins and developers can work from anywhere. You simply bookmark your development environment to return to it later or access the link from a completely different machine without losing your setup.

Note

Want to Experience Agentforce Vibes IDE?
In this badge, we show you how to get started with Agentforce Vibes IDE. We don’t have any hands-on challenges in this badge, but if you want to follow along and try out the steps, you can do so in your Salesforce Developer Edition org.

Key Features

As you dive into the IDE, here are the core features you’ll work with.

  • A complete development environment: Forget about spending hours on configuration. Everything you need—Salesforce extensions, Salesforce CLI, and seamless GitHub integration—is ready to go from the moment you log in so you can focus entirely on building.
  • AI-powered development: The environment comes preinstalled with the Agentforce Vibes extension. This gives you access to an MCP-powered agentic chat, changing the way you write code, brainstorm solutions, and troubleshoot bugs.
  • Instant org integration: Launch the IDE from your org’s Setup menu to authenticate instantly. Your org’s metadata automatically loads into your project, eliminating the need for manual setup.

Differences Between VS Code and Agentforce Vibes IDE

While the core Salesforce extensions function the same way they do on your desktop, there are a few unique behaviors and nuances to keep in mind when you work in this browser-based environment.

Feature

Agentforce Vibes IDE

Visual Studio Code

Installation

Zero installation. Runs entirely in your web browser.

Local installation required.

Org Connection

Instant and org aware. Launches from the Setup menu with automatic authentication and metadata loading.

Manual setup. Requires installing Salesforce CLI and manually authenticating via terminal.

Extension Marketplace

Open Visual Studio Extensions (VSX) Marketplace from the IDE, which is a vendor-neutral and open-source system from Eclipse Foundation. Removes proprietary lock-in, which lets developers and alternative IDEs publish and consume extensions freely. Available extensions may vary slightly.

Microsoft Visual Studio Code Marketplace restricts extensions from being used and hosted on non–Microsoft systems.

Maintenance

Hands-off. Salesforce automatically keeps all core extensions updated for you.

Manual updates. You manage your own extension and CLI updates.

AI Integration

Preinstalled. Comes ready with Agentforce Vibes MCP-powered agentic chat.

Optional. Requires manual extension setup and API configurations.

Supported Editions

Agentforce Vibes IDE is available in Developer Edition and on sandboxes in Lightning Experience for these Salesforce editions.

  • Enterprise Edition
  • Unlimited Edition
  • Professional Edition (Requires the API Access add-on)
Note

Note
Agentforce Vibes IDE is not available in production orgs.

Agentforce Vibes IDE is not available in EU Operating Zone and Government Cloud. EU Operating Zone is a special paid offering that provides an enhanced level of data residency commitment. Agentforce Vibes IDE is supported in orgs in the EU that aren’t part of EU OZ, per standard product terms and conditions.

The User Interface

If you’re comfortable with VS Code, you’re going to feel right at home in Agentforce Vibes IDE. It looks almost identical, but it comes supercharged with the expanded Salesforce Extension pack to help speed up your development.

Let’s take a quick tour of the user interface so you know exactly where everything is!

Agentforce Vibes IDE with the parts of the user interface numbered, corresponding to the descriptions below.

The UI is divided into five main areas.

  1. Activity bar: This holds the icons you select to switch between different views.
  2. Side bar: This panel changes based on what you selected in the Activity Bar. This example uses the Explorer view.
  3. Editors: This is the central area where you actually write and edit your code.
  4. Output panel: As your command center for feedback, the output panel displays your debug info, logs, errors, and warnings, and it houses your integrated terminal. The tabs make it easy to select the exact info you want to see.
  5. Status bar: This little bar keeps you grounded. It displays helpful information about the specific file you’re working on and, most important, shows you exactly which Salesforce org you are connected to.

Now that you’ve got the five main layout zones down, let’s look at the tools you’ll be interacting with the most.

  • Explorer (): Think of this as your filing cabinet. Located right in your side bar, it displays your entire Salesforce DX project structure.
  • Salesforce Org Browser ( ): This one is a massive time-saver. Org Browser lets you peek directly inside your connected Salesforce org without leaving the IDE. You can browse all the cloud metadata and their components—like custom objects, fields, and page layouts—and pull them into your project with a single click.
  • Extensions (): This view lists the plugins you already have up and running. You can also search and install a new extension from the Visual Studio Marketplace.
  • Agentforce Vibes (): This opens the AI-powered developer assistant that enables you to vibe code. Vibe coding lets you build apps by describing your intent in plain language rather than writing every line of code by hand.
  • Command Palette: This is your ultimate shortcut center. Press Ctrl+Shift+P (if you’re on Windows or Linux) or Command+Shift+P (if you’re on a Mac) and type SFDX to see a list of Salesforce-specific actions.

What Is Vibe Coding?

Vibe coding is a modern, AI-powered software development practice, where you build apps and features using plain language prompts rather than writing code line by line.

A prompt is simply the natural language message you write to communicate with an AI. When using Agentforce, the clarity of your prompt directly determines the quality of the code it generates for you. This is why practicing a bit of prompt engineering—taking the time to craft your instructions carefully—makes a huge difference.

You don’t need to worry about getting it perfect on the first try, either. You can easily send follow-up requests to refine the output until you get the exact response you need. Your prompt must include action, context, and any best practices. For example, “Build a small button for the lead page that says ‘Copy Phone Number.' When clicked, it should copy the lead’s phone number to the computer’s clipboard and show a quick success message.”

Agent Modes

Agentforce AI agent has two distinct interaction modes to help you work smarter: Plan mode for strategic thinking and Act mode for implementation. This approach helps you make better design decisions and reduces coding mistakes. You can easily switch between them using the toggle at the bottom right of the chat panel.

Agentforce Vibes chat window with agent modes.

Here’s how to use them.

  • Plan mode (strategic thinking): Use this for new features, complex debugging, or architectural design. For example, if you say, “I need to add a customer portal feature. Help me understand what’s involved,” Agentforce analyzes your org setup, objects, and security to give you a roadmap.
  • Act mode (implementation): Use this to write code, handle routine changes, or follow established patterns. For instance, if you say, “Create the Lightning components for the portal interface,” it generates the Lightning web components (LWCs), writes Jest tests, and connects them to your data. Plus, a built-in Focus Chain feature automatically manages your task list and tracks your progress as you work.

Wrap It Up

You’ve now explored Agentforce Vibes IDE, a browser-based environment that streamlines Salesforce development without local setup. You’ve learned how it differs from traditional VS Code and how to navigate its key interface components. In the next unit, you learn how to enable and authorize this IDE in your own Salesforce org.

Resources

Salesforce ヘルプで Trailhead のフィードバックを共有してください。

Trailhead についての感想をお聞かせください。[Salesforce ヘルプ] サイトから新しいフィードバックフォームにいつでもアクセスできるようになりました。

詳細はこちら フィードバックの共有に進む