AI Agent SDK & Bulk Operations
Build custom agents programmatically, plus 5x faster bulk operations across workflows.

This release is one of our biggest yet — packed with a brand new SDK and major performance improvements across the platform.
What's new
AI Agent SDK
We've launched the Evolv Ai Agent SDK, letting you build custom AI agents programmatically using TypeScript or Python. Define goals, tools, and guardrails in code:
import { Agent } from "@Evolv Ai/sdk";
const agent = new Agent({
name: "report-generator",
tools: ["notion", "slack", "linear"],
schedule: "0 9 * * MON",
});
await agent.run();
