Claude Code Unveils Routines for Uninterrupted Cloud Mac Work
AIbase Report | April 15, 2026
Say goodbye to manual cron jobs and server maintenance—let AI fix bugs, review pull requests, and clear your backlog while you sleep.
On April 14, Anthropic introduced Routines in Claude Code as a research preview. In short, you bundle prompts, code repositories, and connectors into one package, save it, and Claude runs automatically based on a schedule, API calls, or GitHub events—all on Anthropic's cloud so you can shut down your local machine.

What exactly is it?
Previously, developers who wanted scheduled Claude Code tasks had to create their own setup: write cron jobs, rent servers, configure MCP servers, and tie everything together. Anthropic acknowledged in their blog that this complexity was a major barrier. While developers already used Claude Code to automate software workflows, they previously had to manage cron jobs, infrastructure, and extra tools like MCP servers themselves.
Routines bundles everything together. Configure it once, and you have a reusable Claude session template with repository permissions and connectors—it knows where to look, which tools to use, and what the objective is.
Three triggering methods cover most common automation scenarios:
Scheduled runs. Hourly, nightly, weekly, or custom cron jobs in CLI (minimum 1-hour interval). The official example: every night at 2 AM, pull the highest-priority bug from Linear, attempt a fix, and open a draft PR. You simply review it the next morning.
API-triggered. Each Routine gets its own endpoint and authentication token. Send a POST message, and receive a session URL. Datadog alerts, CI/CD hooks, internal dashboards, or any HTTP-capable system can directly call Claude.
GitHub event–triggered. After installing the Claude GitHub App, events like pull_request, push, issue, and check run become triggers, filterable by author, tag, branch, or draft status. For example, monitor a sensitive directory: flag any PR touching the /auth-provider module, summarize changes, and post to #auth-changes. Each matching PR gets its own session, and Claude continues to track follow-up comments and CI failures.


Who Can Use It and How Often?
The research preview is open only to Pro, Max, Team, and Enterprise subscribers, with daily run limits: 5 for Pro, 15 for Max, and 25 for Team and Enterprise. Additional runs incur extra charges. All Routine usage draws from the same subscription quota as regular sessions.
GitHub-triggered routines also have hourly rate limits; events beyond the window are discarded. If your repository is highly active, set up filters in advance to avoid burning runs on irrelevant PRs.
A key default security setting: Claude can only push to branches prefixed with claude/ and never modifies main directly. This is a safe default; unless your review process is robust, it's best to keep it enabled.
Access it at claude.ai/code/routines, or type /schedule in the Claude Code CLI.
What Early Users Are Doing With It
Anthropic's blog and early adopters have revealed several proven use cases:
Nighttime backlog cleanup: Schedule the Routine to pull new issues, tag them, assign responsibilities, and push a summary to Slack by morning, giving the team a clear queue overview.Alert triage: Monitor the Routine's API endpoint; Claude can pull stack traces, associate recent commits, and pre-open a draft PR with a candidate fix, so the on-call engineer sees something ready upon arrival.Customized code reviews: Trigger on PR open, leave inline comments based on team checklists, and perform automated checks for security, performance, and style, letting humans focus on design.Deployment verification: Run a Routine after CD pipeline deployment to run smoke tests, scan logs for regressions, and post a go/no-go decision to the release channel.Documentation drift correction: Once a week, scan recently merged PRs for documentation that references changed APIs and automatically open update PRs.Cross-language SDK synchronization: When a PR merges in the Python SDK, the Routine applies the same change to the Go SDK and opens a corresponding PR, keeping both libraries in sync.The last example highlights a real pain point—any team maintaining multiple SDKs knows how tedious this synchronization is.
Community Reaction
After the official announcement, developers responded with one common sentiment: no more keeping Macs on overnight. The discussion quickly hit the Hacker News front page, raising key concerns: token consumption control, idempotency (repeated event triggers and potential chaos), and how Routines compares to multi-agent frameworks like OpenClaw.
Some developers have already scheduled their first Routines: one for PR reviews, one for issue triage, and one for post-deployment smoke testing. Non-engineers remarked this was the first time they believed "AI handling daily chores" was truly practical.
Some Observations
Routines doesn't introduce groundbreaking model capabilities, but it addresses a key gap: turning Claude Code from a terminal-dependent tool into an always-on background worker. This fits Anthropic's recent moves (redesigned desktop app, parallel session sidebar, Cowork GA)—shifting from real-time collaboration toward scheduled orchestration.
Naturally, the research preview comes with uncertainties. The /fire endpoint is served under the experimental-cc-routine-2026-04-01 beta header, and request/response formats, rate limits, and token semantics may change. Anthropic also noted plans to expand webhook triggers beyond GitHub in the future, though no timeline has been provided.
For teams already using Claude Code, this feature is worth testing now. For those on the sidelines, it brings the vision of "AI as a continuously running team member" significantly closer to reality.
Sources: Anthropic's official blog, Claude Code documentation (code.claude.com/docs/en/routines), @claudeai tweets, and reports from The Decoder, 9to5Mac, and others. Details are subject to the latest official documentation.
Related article
Amazon Launches Free Alexa+ on Fire TV Without Prime Membership
AI is making its way into your television, whether you’re ready for it or not.On Wednesday, Amazon announced that its AI assistant, Alexa+, will be available on all compatible Fire TV devices in the U.S. at no cost, regardless of Prime subscription s
OpenAI Closes Gap With Anthropic Among Business Users, New Data Shows
With OpenAI and Anthropic still distant from their anticipated IPOs and the release of detailed financial reports, we must turn to alternative indicators to gauge their business performance. Ramp, a corporate credit card and expense management platfo
Nvidia CEO Jensen Huang tells Trump ‘we’re not going to let [an AI slowdown] happen’
During his appearance at the All-In Summit in Los Angeles on Monday, Nvidia CEO Jensen Huang received an unexpected call from President Donald Trump, one he couldn’t simply ignore.“I’m on stage with the besties,” Huang explained to Trump, referencing
Related Special Topic Recommendations
Comments (0)
0/500
AIbase Report | April 15, 2026
Say goodbye to manual cron jobs and server maintenance—let AI fix bugs, review pull requests, and clear your backlog while you sleep.
On April 14, Anthropic introduced Routines in Claude Code as a research preview. In short, you bundle prompts, code repositories, and connectors into one package, save it, and Claude runs automatically based on a schedule, API calls, or GitHub events—all on Anthropic's cloud so you can shut down your local machine.

What exactly is it?
Previously, developers who wanted scheduled Claude Code tasks had to create their own setup: write cron jobs, rent servers, configure MCP servers, and tie everything together. Anthropic acknowledged in their blog that this complexity was a major barrier. While developers already used Claude Code to automate software workflows, they previously had to manage cron jobs, infrastructure, and extra tools like MCP servers themselves.
Routines bundles everything together. Configure it once, and you have a reusable Claude session template with repository permissions and connectors—it knows where to look, which tools to use, and what the objective is.
Three triggering methods cover most common automation scenarios:
Scheduled runs. Hourly, nightly, weekly, or custom cron jobs in CLI (minimum 1-hour interval). The official example: every night at 2 AM, pull the highest-priority bug from Linear, attempt a fix, and open a draft PR. You simply review it the next morning.
API-triggered. Each Routine gets its own endpoint and authentication token. Send a POST message, and receive a session URL. Datadog alerts, CI/CD hooks, internal dashboards, or any HTTP-capable system can directly call Claude.
GitHub event–triggered. After installing the Claude GitHub App, events like pull_request, push, issue, and check run become triggers, filterable by author, tag, branch, or draft status. For example, monitor a sensitive directory: flag any PR touching the /auth-provider module, summarize changes, and post to #auth-changes. Each matching PR gets its own session, and Claude continues to track follow-up comments and CI failures.


Who Can Use It and How Often?
The research preview is open only to Pro, Max, Team, and Enterprise subscribers, with daily run limits: 5 for Pro, 15 for Max, and 25 for Team and Enterprise. Additional runs incur extra charges. All Routine usage draws from the same subscription quota as regular sessions.
GitHub-triggered routines also have hourly rate limits; events beyond the window are discarded. If your repository is highly active, set up filters in advance to avoid burning runs on irrelevant PRs.
A key default security setting: Claude can only push to branches prefixed with claude/ and never modifies main directly. This is a safe default; unless your review process is robust, it's best to keep it enabled.
Access it at claude.ai/code/routines, or type /schedule in the Claude Code CLI.
What Early Users Are Doing With It
Anthropic's blog and early adopters have revealed several proven use cases:
Nighttime backlog cleanup: Schedule the Routine to pull new issues, tag them, assign responsibilities, and push a summary to Slack by morning, giving the team a clear queue overview.Alert triage: Monitor the Routine's API endpoint; Claude can pull stack traces, associate recent commits, and pre-open a draft PR with a candidate fix, so the on-call engineer sees something ready upon arrival.Customized code reviews: Trigger on PR open, leave inline comments based on team checklists, and perform automated checks for security, performance, and style, letting humans focus on design.Deployment verification: Run a Routine after CD pipeline deployment to run smoke tests, scan logs for regressions, and post a go/no-go decision to the release channel.Documentation drift correction: Once a week, scan recently merged PRs for documentation that references changed APIs and automatically open update PRs.Cross-language SDK synchronization: When a PR merges in the Python SDK, the Routine applies the same change to the Go SDK and opens a corresponding PR, keeping both libraries in sync.The last example highlights a real pain point—any team maintaining multiple SDKs knows how tedious this synchronization is.
Community Reaction
After the official announcement, developers responded with one common sentiment: no more keeping Macs on overnight. The discussion quickly hit the Hacker News front page, raising key concerns: token consumption control, idempotency (repeated event triggers and potential chaos), and how Routines compares to multi-agent frameworks like OpenClaw.
Some developers have already scheduled their first Routines: one for PR reviews, one for issue triage, and one for post-deployment smoke testing. Non-engineers remarked this was the first time they believed "AI handling daily chores" was truly practical.
Some Observations
Routines doesn't introduce groundbreaking model capabilities, but it addresses a key gap: turning Claude Code from a terminal-dependent tool into an always-on background worker. This fits Anthropic's recent moves (redesigned desktop app, parallel session sidebar, Cowork GA)—shifting from real-time collaboration toward scheduled orchestration.
Naturally, the research preview comes with uncertainties. The /fire endpoint is served under the experimental-cc-routine-2026-04-01 beta header, and request/response formats, rate limits, and token semantics may change. Anthropic also noted plans to expand webhook triggers beyond GitHub in the future, though no timeline has been provided.
For teams already using Claude Code, this feature is worth testing now. For those on the sidelines, it brings the vision of "AI as a continuously running team member" significantly closer to reality.
Sources: Anthropic's official blog, Claude Code documentation (code.claude.com/docs/en/routines), @claudeai tweets, and reports from The Decoder, 9to5Mac, and others. Details are subject to the latest official documentation.
Amazon Launches Free Alexa+ on Fire TV Without Prime Membership
AI is making its way into your television, whether you’re ready for it or not.On Wednesday, Amazon announced that its AI assistant, Alexa+, will be available on all compatible Fire TV devices in the U.S. at no cost, regardless of Prime subscription s
OpenAI Closes Gap With Anthropic Among Business Users, New Data Shows
With OpenAI and Anthropic still distant from their anticipated IPOs and the release of detailed financial reports, we must turn to alternative indicators to gauge their business performance. Ramp, a corporate credit card and expense management platfo
Nvidia CEO Jensen Huang tells Trump ‘we’re not going to let [an AI slowdown] happen’
During his appearance at the All-In Summit in Los Angeles on Monday, Nvidia CEO Jensen Huang received an unexpected call from President Donald Trump, one he couldn’t simply ignore.“I’m on stage with the besties,” Huang explained to Trump, referencing





Home






