Anthropic has dropped in a feature that solves the big pain point in agentic ops: keeping your autonomous workflows alive when your laptop goes to sleep.
We had seen this coming.
So, whenever I set up a local cron job to have Claude Code sweep open PRs or run overnight maintenance on the BoutPredict repository, the entire system inevitably dies the moment my M3 Max goes to sleep.
Managing an autonomous 10-agent system requires persistent infrastructure, and running a bot locally just does not scale.
Anthropic fixed this entirely.
You can now schedule recurring, cloud-based tasks directly on Claude Code.
Moving the Loop to the Cloud
Until this week, if you wanted Claude to run a recurring prompt, you had to use the /loop command in your local CLI.
It worked well for short bursts, but it was strictly session-scoped. Like If you closed the terminal or your Wi-Fi dropped, the automation stopped completely.
The new cloud-based scheduling shifts the execution directly to Anthropic’s servers.
You simply select a repository (or multiple), define a cron-style schedule, and write your prompt.
Claude wakes up at the designated time, executes the task against your codebase, and goes back to sleep.
You do not need to keep a browser tab open, and you definitely do not need your local machine running :)
The Secrets and Env Vars Question
If you have spent any time building tools for flips, your immediate question is likely exactly what I asked:
How does a cloud agent handle repositories that need secrets or environment variables?
Because the execution is no longer looking at your local .env file, the architecture shifts.
- Repository Access: You authenticate and connect your GitHub or hosted repositories directly to your Claude account.
- External APIs: The scheduled tasks automatically inherit the Model Context Protocol (MCP) servers you have connected via your web account.
- Secrets Management: If your scheduled agent needs to ping Telegram, pull from DexScreener, or access a database, it routes through those authenticated cloud MCPs. The agent has the access it needs without you having to expose your
.envfile to the cloud or hardcode API keys into the prompt. Instead of running the MCP server locally on your M3 Max, you deploy the MCP server to a secure edge provider like Cloudflare Workers, Fly.io, or Vercel. This remote server is where your API keys live. You inject yourTELEGRAM_API_KEYdirectly into the secure environment variables of your Cloudflare Worker. The keys stay locked in your own cloud infrastructure.
Photo by Christin Hume on Unsplash
High-Value Use Cases for the Cloud
Now, how are developers already utilizing the scheduling feature for consistent workflows?
- Overnight CI Triage: Instead of waking up to a wall of red text, you can schedule Claude to analyze any CI failures overnight and draft fix suggestions by the time you open your laptop.
- Sweeping Open PRs: For teams or open-source maintainers, you can schedule a daily code review agent to scan recent changes, flag bugs, and verify architectural standards automatically.
- Doc Synchronization: You can schedule a weekly task to read all newly merged PRs and automatically sync your READMEs and internal wikis with the actual code changes.
- Automated Security Audits: Set a recurring prompt to scan the repository for exposed tokens, outdated dependencies, or bad security practices on a strict cadence.
In Short, Claude Code just made true “always-on” agent ops accessible to solo developers which is a massive step away from treating AI as a chat interface, and a massive step toward treating it as a reliable, asynchronous team member.
I swear tracking these updates is a job in itself, lately.
Here’s the list which I’ve built and keep adding on.
In case we are meeting for the first time, come over here, it’ll be worth the roller coaster of articles that are gonna come up in the next few weeks.
Comments
Loading comments…