For a while now, every agent setup I've built has had the same quiet limitation sitting underneath it. The agent could do the work, but something still had to kick it off. A person, a cron job somebody else maintained, a webhook trigger watching for the right moment. The intelligence was automated. The starting it part wasn't, not really.
That gap just closed, at least for anyone building on Claude. Agents can now run on a schedule directly, no separate scheduler to stand up or babysit. You give a deployment a cron schedule, and every time it fires, the agent starts its own session and does the thing. Nightly sync, weekly compliance pass, a digest that lands every morning before anyone's even checked their inbox.
I want to be honest about why this matters more than it might sound like at first glance, because "you can now schedule a task" doesn't sound like news on its own. Plenty of tools could already do that. The difference is what's running on the other end of the trigger.
What used to sit in that gap
Before this, if you wanted an agent to run on a schedule, you were really building two things, not one. The agent itself, and then a small piece of infrastructure whose entire job was waking it up at the right time, handling retries if it failed, and somewhere keeping track of whether the last run actually finished. Most teams I've worked with ended up with an n8n flow doing that second job, which is fine, it works, but it's still a second system you own. Another thing that can break quietly on a Tuesday while nobody's looking.
"One less moving part, one less thing on your maintenance list, one less message at 2am because a cron job on some forgotten server stopped firing."
Now that piece is just gone. The scheduling lives with the agent itself.
Where this actually changes how you'd build something
Think about the kind of work that's always been a bad fit for a person but a fine fit for automation, mostly because it's regular, a bit boring, and nobody wants to own checking it every single day. A nightly reconciliation between two systems that should agree but sometimes drift. A weekly scan through new contracts for anything that breaks a compliance rule. A daily summary of what changed overnight across your tools, sitting in someone's inbox before their coffee's even done.
These were always automatable in theory. In practice they often didn't get built, because the automation itself, the scheduler, the retry logic, the "did this actually run" tracking, took almost as much effort as the task it was wrapping. That's the part that's shifted. The task and the trigger are now the same system, which means the threshold for "is this worth automating" just dropped a lot.
A scheduled agent that runs unattended is a different trust question than one a person kicks off and watches. If it's writing back to a system of record every night, you want it to stop cleanly when something looks wrong, not keep going and repeat the same mistake fifty times before anyone notices. Easier scheduling means more of these things get built — which makes the guardrails matter more, not less.
The pattern that's worked for us is simple. Anything writing to a system of record runs in a draft or review mode first, for at least a couple of weeks, before it's trusted to act on its own. Logging stays verbose even after that. And there's always a way to pause it without needing to find whoever originally built it.
What this is genuinely good for right now
Recurring reporting that currently depends on someone remembering to run a query. Data syncs between tools that don't talk to each other natively, the kind of thing that's been "we should really automate that" for over a year. Compliance or quality checks that are tedious enough that they quietly get skipped some weeks when things get busy.
None of this is exotic. It's the unglamorous, recurring stuff that eats a surprising amount of a team's week without ever feeling like a single big project worth fixing. That's exactly the kind of work that's now genuinely a day's build instead of a quarter's infrastructure project.
If there's something in your business that runs on a schedule purely because a person remembers to do it, that's usually the first candidate worth looking at.
Bring us the recurring task that currently depends on a person remembering. We'll tell you honestly whether it's worth automating, and if it is, how fast.
Start the conversation →