v1 · 7-day trial · no card
Agents that do
the work,
not imagine it.
TaskDriver builds AI agents you actually deploy. One pipeline — trigger, intelligence, action — wired to your stack in minutes.
/spec
triggermanual · schedule · webhook
modelclaude · sonnet · opus
actionemail · webhook · log
latency< 2s p50
runsmetered · transparent
/01 — anatomy
Three parts.
Zero glue code.
Pick how it fires. Tell the model what to do. Choose where the result lands.
/01step
Trigger
Manual run, cron schedule, or an authenticated webhook endpoint you POST to from anything.
/02step
Intelligence
Claude does the thinking. System prompt + user template with {{trigger.payload.x}} interpolation.
/03step
Action
Email, webhook, log. More coming.
/02 — example
A daily competitor digest, in 90 seconds.
Configure once. The cron handles the rest. Inbox at 09:00 every morning. No webhooks to maintain, no infrastructure to babysit.
agents/daily-digest.json
{
"name": "Daily competitor digest",
"trigger": { "type": "schedule", "cron": "0 9 * * *" },
"model": "claude-sonnet-4-6",
"system": "You write crisp 5-bullet briefings.",
"user": "Top moves from {{trigger.payload.topic}} today.",
"action": { "type": "email", "to": "you@co.com" }
}