By using this site, you agree to the Privacy Policy and Terms of Use.
Accept

GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Mobile
  • Gaming
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • AI
    • Anthropic
    • ChatGPT
    • ChatGPT Atlas
    • Gemini AI (formerly Bard)
    • Google DeepMind
    • Grok AI
    • Meta AI
    • Microsoft Copilot
    • OpenAI
    • Perplexity
    • xAI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Follow US
AIAnthropicTech

Anthropic gives Claude Code cloud routines that work while you sleep

Anthropic’s new routines turn Claude Code into a background engineer that quietly reviews PRs, triages issues, and reacts to alerts without needing your laptop on.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Apr 17, 2026, 10:50 AM EDT
Share
We may get a commission from retail offers. Learn more
Illustration of Claude Code routines concept: An orange-coral background with a stylized design featuring two black curly braces (code brackets) flanking a white speech bubble containing a handwritten lowercase 'u' symbol. The image represents code execution and automated routines within Claude Code.
Image: Anthropic
SHARE

Anthropic is turning Claude Code into something closer to a 24/7 junior engineer that quietly works in the background, and the new “routines” feature is the clearest step in that direction so far. Instead of just chatting with an AI about code, you can now set up automations that watch your repos, react to alerts, and file PRs while you sleep.

At a basic level, a routine is an automation you define once with three main ingredients: a prompt (what you want Claude to do), a code repo for context, and any connectors like GitHub, Linear, Slack, or Datadog. You then decide how it should run: on a fixed schedule, via a simple API call, or in response to a GitHub event such as a new pull request. The important part is that all of this runs on Anthropic’s cloud infrastructure, not your laptop, so your workflows keep chugging along even if your machine is closed.

Scheduled routines are the easiest on-ramp, and they’ll feel familiar to anyone who has ever set up a cron job or a CI task. You give Claude Code a natural language instruction plus a cadence like hourly, nightly, or weekly, and it executes like clockwork from the cloud. Anthropic’s own examples are very “real dev team” chores: nightly backlog triage that labels and assigns new Linear issues, or weekly scans of merged PRs to catch documentation that went stale and open PRs to fix it. There is no extra server to babysit or cron configuration to remember, and if you have been using the /schedule command in the Claude Code CLI, those tasks now show up as routines under this new system.

The second flavor is API routines, which effectively let you bolt Claude Code onto any system that can hit an HTTP endpoint. Every routine gets its own endpoint and auth token, so a POST request with some payload is enough to spin up a fresh session and get back a URL where you can inspect what the AI is doing. The intended use cases are classic “on-call pain” scenarios: your CD pipeline pings the routine after every deploy so Claude can run smoke checks, scan logs for regressions, and post a structured go/no-go update into a release channel before a human even clicks through. Similarly, teams can point Datadog or Sentry at the endpoint so when an alert fires, Claude pulls traces, correlates them with recent commits, and drafts a fix or at least a high‑signal triage note for the on-call engineer.

The third piece is webhook‑style routines, starting with GitHub integration that turns Claude into a PR-aware agent. You subscribe to a routine for certain repository events, such as PRs that touch specific paths like an /auth-provider module, and Claude spins up one dedicated session per PR. It can then run your own checklist for security, performance, or style, leaving inline comments and summaries before human reviewers arrive, and it keeps following that same PR as comments come in or CI fails. Anthropic is signaling that more event sources will plug into this webhook system over time, but GitHub is clearly the first big one because it sits at the heart of so many engineering workflows.

Claude Code 'New routine' creation form. At the top is a Name field with placeholder text 'e.g., Daily code review'. Below is a large text area prompting 'Describe what Claude should do in each session' with a model selector showing 'Opus 4.6' in the top right. The form displays Git repository details: 'anthropic-experimental/clark-test' with an 'x' to remove and a plus icon to add more, and 'test-cloud-environment' on the right. The 'Select a trigger' section offers three options: Schedule (run on recurring cron schedule), GitHub event (run when a GitHub webhook event fires), and API (trigger from your own code by sending a POST request). At the bottom left is a navigation sidebar with tabs for Connectors (showing count 2), Behavior, and Permissions. The Connectors section displays already connected integrations: Slack and Asana with remove options, plus an 'Add connector' button.
Image: Anthropic

Early patterns from users show how quickly this can evolve from “cute automation” to meaningful offload of engineering drudge work. Teams are wiring up nightly backlog management that sorts issues, assigns owners based on CODEOWNERS files, and posts digest summaries directly into Slack channels used for standups. Others are leaning into library portability: when a Python SDK PR is merged, a routine automatically ports the change into a Go SDK and opens a matching PR, turning a historically tedious multi‑language maintenance task into something close to one-click. There’s also a growing trend around bespoke code review, where routines run your house rules on every PR, flagging common security or performance pitfalls before senior reviewers even take a look.

If you zoom out, routines are Anthropic’s answer to a problem that has dogged “AI coding agents” from the start: the cost of keeping them running reliably around real production systems. Earlier setups often involved local agents or bespoke scripts that depended on a developer’s laptop being awake, plus brittle glue code to connect different tools. By moving routines into Claude Code’s web infrastructure, giving each one a stable endpoint, and bundling repo and connector access into the core feature, Anthropic is trying to make this feel more like a managed service and less like a side project someone hacked together after hours. It also fits neatly into a broader push toward more “agentic” workflows in the Claude ecosystem, alongside recent moves like the advisor strategy that pairs cheaper executor models with a powerful advisor model for complex decisions.

On the practical side, this is not a free-for-all; Anthropic has put some clear guardrails and quotas around usage. Routines are available in research preview for Claude Code users on Pro, Max, Team, and Enterprise plans who have Claude Code on the web enabled. Pro users can run up to 5 routines per day, Max users get 15, and Team or Enterprise can run up to 25 per day, with the option to pay for extra runs on top of those caps. Behind the scenes, routines draw down the same subscription usage limits as regular interactive sessions, which is a reminder that every automated run still costs tokens and compute.

Of course, the freedom to let an autonomous agent touch your codebase and infrastructure comes with a responsibility to write careful prompts, and the early ecosystem around routines is already emphasizing that. Guides circulating in the community and in the docs recommend being explicit about what “success” looks like, tightly scoping tasks to avoid runaway changes, and clearly stating when a routine should stop. That might mean telling Claude to only touch issues created in the last 24 hours, or to only modify files in a specific directory, or to skip anything that already has both a label and an owner. It’s a very human reminder that as these tools get more powerful, prompt design starts to look less like casual chat and more like writing a spec for a very literal junior engineer who never gets tired.

If you are already living inside the Claude ecosystem, routines are easy to bump into rather than some separate product you have to learn from scratch. You can reach them from the Claude Code web experience at claude.ai/code, from the CLI using the /schedule command, or from the redesigned desktop app that Anthropic shipped around the same time with parallel sessions, integrated terminal, file editing, and faster diffs. Combine that with Claude Cowork’s growing enterprise feature set and the advisor-style agent patterns on the API side, and you can see Anthropic sketching a future where Claude is less of a chatbot and more of a full stack of always-on collaborators woven into the software development lifecycle.


Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Topic:Claude AIClaude Code
Leave a Comment

Leave a ReplyCancel reply

Most Popular

DeepMind’s Gemini Robotics-ER 1.6 pushes embodied AI into the real world

Gemini 3.1 Flash TTS is Google’s new powerhouse text-to-speech model

Google app for desktop rolls out globally on Windows

Google debuts Gemini app for Mac with instant shortcut access

Perplexity brings an always-on Personal Computer to Mac users

Also Read
A graphic design featuring the text “GPT Rosalind” in bold black letters on a light green background. Behind the text are overlapping translucent green rectangles. In the bottom left corner, part of a chemical structure diagram is visible with labels such as “CH₃,” “CH₂,” “H,” “N,” and the Roman numeral “II.” The right side of the background shows a blurred turquoise and green abstract pattern, evoking a scientific or natural theme.

OpenAI launches GPT-Rosalind to accelerate biopharma research

Perplexity interface showing a model selection menu with options for advanced AI models. The default choice, “Claude Opus 4.7 Thinking,” is highlighted as a powerful model for complex tasks. Other options include “GPT-5.4 New” for complex tasks and “Claude Sonnet 4.6” for everyday tasks using fewer credits. A toggle for “Thinking” is switched on, and a tooltip on the right reads “Computer powered by Claude 4.7 Opus.”

Perplexity Max users now get Claude Opus 4.7 in Computer by default

Anthropic brand illustration divided into two halves: On the left, an orange-coral background displays a stylized network or molecule diagram with white circular nodes connected by white lines, enclosed within a black wavy border outline representing a head or mind. On the right, a light teal background features an abstract line drawing of a figure or person with curved black lines and black dots, sketched over a white grid on transparent checkered background, suggesting data points and analytical thinking. The composition symbolizes the intersection of artificial intelligence and human cognition.

Claude Opus 4.7 is Anthropic’s new powerhouse for serious software work

Illustration of a speech bubble with code brackets inside, framed by curly braces on an orange background, representing coding conversations or AI-assisted programming.

Anthropic’s revamped Claude Code desktop app is all about parallel coding workflows

Gemini interface showing a NEET Mock Exam Practice Session. On the left side, a chat message from the user says 'I want to take a NEET mock exam.' Below it is Gemini's response explaining a complete NEET mock exam designed to test concepts in Physics, Chemistry, and Biology, with a 'Show thinking' option expanded. The response includes an embedded card for 'NEET UG Practice Test' dated Apr 11, 7:10 PM, with options to 'Try again without interactive quiz' and encouragement message. On the right side is a panel titled 'NEET UG Practice Test' displaying three subject sections: Physics (45 Questions with a yellow icon and blue Start button), Chemistry (45 Questions with a purple icon and blue Start button), and Biology (90 Questions with a green icon). Each section includes a brief description of question topics covered.

Google Gemini now lets you take full NEET mock exams for free

AI Mode in Chrome showing AI-powered shopping assistant panel alongside a Ninja coffee machine product page with pricing and details

Chrome’s AI Mode puts search and pages side by side

Google Gemini AI

Google Gemini can now craft images from your personal photos

Google AI Studio Gemini API Billing dashboard showing credit balance of $25.00, billing account details, and payment methods

Google AI Studio now lets you top up Gemini API credits in advance

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.