5 days of new features to transform how you build and monitor AI agents.
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.

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.

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.
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
},
},
});
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.

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.
