Skip to main content
Decorative dot pattern background
Launch Week #2
November 5-9, 2025

5 days of new features to transform how you build and monitor AI agents.

DAY 1 | NOVEMBER 5, 2025

Triggers - Event Driven Agent Automation

Automate your AI agents with external events and schedules. Connect to Slack, Gmail, Airtable, GitHub, and cron schedules with full observability in VoltOps.

Triggers Feature Preview
DAY 2 | NOVEMBER 6, 2025

Evals - Test and Monitor Your AI Agents

Run offline evaluations against test datasets and monitor live agent performance with customizable scorers. Catch regressions before they ship with integrated VoltOps telemetry.

Evals Feature Preview
DAY 3 | NOVEMBER 7, 2025

Sub-Agent Early Termination - Bail for Better Control

Give your sub-agents the power to bail early when they encounter issues or complete their tasks. Improve agent reliability and prevent wasted tokens with graceful early termination.

supervisor-agent.ts
const supervisor = new Agent({
name: "Workout Supervisor",
subAgents: [exerciseAgent, workoutBuilder],
hooks: {
onHandoffComplete: async ({ agent, result, bail, context }) => {
// Workout Builder produces final JSON - no processing needed
if (agent.name === "Workout Builder") {
context.logger?.info("Final output received, bailing");
bail(); // Skip supervisor, return directly to user
}
// Default: continue to supervisor for processing
},
},
});
DAY 4 | NOVEMBER 8, 2025

VoltAgent Tunnels - Share Your Local Agent Instantly

Expose your local VoltAgent server over HTTPS with a single command. Perfect for teammate reviews, webhook debugging, and mobile testing. No extra setup required.

Evals Feature Preview
DAY 5 | NOVEMBER 9, 2025

Servers – Connect and Manage Your Deployed Agents

Register your deployed VoltAgent URLs in VoltOps to power Triggers and Evals. Instantly switch between environments from the navbar and test live agents in the playground.

VoltAgent Servers Feature Preview

Ready to Get Started?

Join developers building the future of AI agents