惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

Salesforce

How We Protect Our Data as Customer Zero Scale Your MRR: Subscription Management For Small Business Streamlining Commerce Media Ad Inventory Management 12 AI Sales Strategies for Startups That Actually Work Sell Smarter: Ecommerce Metrics To Track For Your Small Business Shop Apply the Orchestration Density Framework to Your Next Automation Decision Wait, Black Friday Planning In Spring? It’s Time to Start Holiday Promotions AI-First Operations, One Process at a Time How BCU Is Transforming Banking Service with Agentforce Salesforce Headless 360: What the Agent Consumer Means for Your Integration Architecture Meet Customers Where They Are: Agentforce Contact Center Now Offers WhatsApp Voice 11 Free Lead Generation Tips for Small and Growing Businesses SFR-VibeTrain: The Agent That Trains Agents Why Technical Accuracy is the Wrong Metric for Agent Success Strengthening Salesforce Security Against AI-Driven Threats Join Us in the Community Hub at Connections 2026 The Best Way To Build AI Agents That Customers Trust 5 Ways AI is Changing the Communication Game For Startups Trust in the Era of Agents: Highlights from the 2nd Annual Trusted AI Impact Report You Can Be an Agentic Enterprise No Matter What Size Business How to Make Your Email Marketing Accessible for Everyone What is Headless? Don’t Lose Your Head, SMBs: It’s a Good Thing Architect the Future UI: Slack as Your Agentic Surface Point of Sale Innovations to Modernize the Shopper Experience Governing the Agentic Enterprise at Scale with MuleSoft Omni Gateway How to Cut Service Time with Case Routing Automation 5 Tips for Marketers to Get Started with Salesforce Flow No One is Vibe Coding Trade Promotion Management 7th Edition State of Sales Report: 3 Growth Trends for Startups and SMBs How the Architect Vista Brought Architectural Thinking to Life at TDX 2026
AI Agents Are Advancing Rapidly… Is Your Testing Strategy...
2026-04-15 · via Salesforce

In Q4 of last year, Agentforce customers consumed more than 20 trillion tokens — a staggering 400% increase year over year. To put that in terms of actual work, Agentblazers clocked in 1.79 billion agentic work units (AWUs) in Q4. It wasn’t just sheer volume, either. Organizations are getting more sophisticated in their agentic deployments, from tool calling capabilities, to deterministic logic to voice-enabled agents. All that work adds up to countless agent conversations and actions that need to be scrutinized, scored and analyzed. But as AI agents become more useful at work, the way we test them must also evolve. 

Since we last wrote about Agentforce Testing Center, we’ve folded it into Agentforce Studio, introduced conversation-level testing to simulate full conversations with user personas, delivered custom evaluations that enable customers to define their own key metrics, and added one of our most requested features: inline editing for testing suites. 

Let’s unpack what’s new and what it means for the way you test your Agentforce.  

Testing inside Agentforce Studio

Testing Center used to live in Setup, disconnected from the tools you actually use to build your agent. To bring testing closer to the forefront, we’ve integrated it directly into Agentforce Studio as a dedicated tab alongside Agent Builder and Observability. Once you’ve built your agent (whether through the legacy builder or new agent builder), you can begin testing it immediately without having to navigate to another surface. 

Agentforce Studio offers a more flexible user interface, as well as more powerful debugging capabilities. We’ve also added the ability to view run history, making it easy to evaluate agent performance over time by comparing historical test results.

You can test your agent directly within Agentforce Studio.

Conversation-level testing

Up until now, testing an agent meant turn-by-turn testing: one user utterance, one agent response, one evaluation. While this was a helpful way of understanding how agents behave on a turn-by-turn basis, it didn’t provide a clear view of how agents function at scale in the real world.

Conversation-level testing changes that. Instead of evaluating isolated exchanges, you can now test a full simulated conversation. When setting up a new test suite, you’ll now see an option for conversation testing. Here, you can select from a set of predefined personas like “frustrated customer,” “non-native English speaker,” or “distracted user.” The system then simulates that persona interacting with your agent across multiple turns and selected subagents, generating the conversation automatically and scoring it on metrics like task resolution, which measures how well the agent completes the user’s original request.

Voice agents are supported too. You can even play back the AI-generated voice conversations used in the test run. 

Conversation-level testing simulates a full conversation with a pre-defined persona.

Custom evaluations

No one can define “good” better than the people building the agent and custom evaluations give you the ability to define your own scoring criteria. Within the test suite wizard, you’ll see an option to add a custom scorer. Define your evaluation criteria using natural language — for example, “Rate the politeness of the agent response on a scale of 0 to 5” — with descriptions of what each score level means and example responses. You can also set a pass/fail threshold. Once saved, your custom metric appears as a new column in the testing grid, right alongside the built-in evaluations.

Custom evaluations let you define your own metrics.

Inline editing

In the previous version of Testing Center, the test suite UI was uneditable. If you wanted to update an AI-generated test case, fix an expected value, or correct a response after a test failure, you had to download a CSV file, edit it locally, and re-upload it as a new test suite. With inline editing in the new Studio experience, you can click into any cell and edit it directly. Updating test cases, adjusting expected values, and correcting failures all happen right in the grid. 

There’s also more flexibility in how you view your data. A new rich JSON viewer gives you column-by-column visibility into test results: scores, pass/fail status, LLM judge reasoning, and the full execution trace of the agent — which subagent was selected, which action was called, what the input and output were, and latency at every step. You can also add any of these attributes as a column in the testing grid, so you can surface latency or reasoning for every row in your suite at once.

In-line editing eliminates the need to download and re-upload CSV files to modify test suites.

Testing from the command line with ADLC Skills

Salesforce’s ADLC (Agent Development Lifecycle) Skills are a set of CLI-based capabilities designed to support the full agent development lifecycle from the command line. Using the Salesforce CLI, developers can trigger test runs with sf agent run test, check on results with sf agent get test status, and retrieve outputs directly, all without opening a browser. This same experience extends to AI-powered IDEs like Cursor or Claude Code. 

For teams running CI/CD pipelines, the CLI integrates with DevOps Testing Center, enabling quality gates that can block agent deployments until a test suite passes. 

Test directly from the command line with ADLC Skills.

To learn more about Agentforce Testing Center, check out our documentation or watch this demo.