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

Claude for Microsoft 365 is now generally available

How to stream all five seasons of The Boys right now

Anthropic launches full Claude Platform on AWS with native integration

OpenAI upgrades its Realtime API with three new voice AI models

AI-powered Google Finance launches across Europe now

Also Read
Person holding a smartphone displaying the Gemini app in dark mode with an AI-generated optics study guide on screen. The document includes explanations of spherical mirror geometry, focal points, and mirror equations, along with mathematical formulas and bullet-point notes for exam preparation. The phone is held in a warmly lit indoor environment with a blurred background, creating a focused study atmosphere.

Turn handwritten notes into a smart Gemini study guide

Screenshot of a dark-themed terminal window running “Claude Code” on a desktop interface. The terminal displays project task management information for a workspace named “acme,” including one task awaiting input and several completed coding tasks such as test coverage improvements, load testing, payment migration, performance auditing, PR reviews, and dark mode implementation. A highlighted task labeled “release-notes” requests guidance on feature priorities. At the bottom, a command prompt invites the user to “describe a task for a new session.” The interface appears on a muted green background with subtle wave patterns.

Anthropic ships agent view to tame your Claude Code chaos

Apple App Store logo

Apple rebalances South Korea App Store pricing to keep global tiers in line

Close-up mockup of an iPhone displaying an RCS text conversation in the Messages app. The chat is with a contact named “Grace,” shown with a profile photo at the top. Below the contact name, the interface displays “Text Message • RCS” and “Encrypted,” indicating secure RCS messaging support. A green message bubble asks, “How are you doing?” and the reply says, “I’m good thanks. Just got back from a camping trip in Yosemite!” The screen uses Apple’s clean light-mode Messages interface with the Dynamic Island visible at the top.

iOS 26.5 update adds secure RCS messaging for iPhone users

Modern kitchen interior featuring a Samsung Bespoke AI Refrigerator Family Hub in a soft green-themed space. The large white refrigerator has a built-in display panel on the upper door showing abstract artwork. Surrounding the refrigerator are matching pastel green cabinets, a kitchen island with open shelving, and a dark countertop with a gold-tone faucet. Natural light enters through a large window beside the minimalist kitchen setup, highlighting the clean and modern design.

Gemini AI comes to Samsung’s Bespoke AI refrigerator Family Hub screen

Screenshot of the Windows 11 touchpad “Scroll & zoom” settings page in dark mode. The panel shows multiple enabled touchpad options with blue checkmarks, including “Drag two fingers to scroll,” “Automatic scrolling at edge,” “Automatic scrolling with pressure,” “Accelerated scrolling,” and “Pinch to zoom.” A “Single-finger scrolling” option is set to “Right Side.” The interface also includes sliders for “Scroll speed” and “Zoom speed,” along with a dropdown menu for “Scrolling direction” set to “Down motion scrolls up.”

Windows 11 adds custom scroll sliders to Settings

Illustration comparing Gmail writing suggestions before and after personalization. On the left, under the heading “Today,” a generic email draft to “Alex Liu” uses formal, template-style language with placeholder text. On the right, under “With personalization,” the same draft is rewritten in a more natural and conversational tone with specific influencer campaign details, highlighted text snippets, and a personalized sign-off. Along the right side are three colored labels reading “Personalized tone and style,” “Based on past emails,” and “Based on Drive files,” emphasizing how Gmail uses user context to improve writing suggestions.

Help me write in Gmail gets smarter with personalization

Three smartphone mockups displaying a ChatGPT trusted contact safety feature. The first screen explains how adding a trusted contact can help someone receive support during serious mental health or safety concerns. The second screen shows a form for inviting a trusted contact with fields for name, phone, email, and consent confirmation. The third screen confirms that the invitation was sent and offers an option to send a personal note.

OpenAI adds an emergency-style Trusted Contact option inside ChatGPT settings

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.