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

Perplexity Computer adds a Command Panel

Summer Sale gives Nothing’s lineup a more tempting price tag

Also Read
Collage of four web-based artifacts created with Claude Code, including an analytics dashboard, a mobile app design showcase, a software migration report, and a systems workflow visualization. The examples demonstrate interactive interfaces, data-rich dashboards, design systems, and technical documentation generated through AI-assisted development.

Live artifacts come to Claude Code

Illustration of a Claude Connectors settings panel with organization-wide access enabled. A large toggle switch labeled “Enable for organization” is turned on, and a hand-shaped cursor points to it. Below, a list of connected apps—Asana, Atlassian, Canva, Figma, and Granola—each displays an enabled blue toggle switch. The interface appears on a light gray background with a clean, minimalist design.

Claude just solved the enterprise AI authorization headache — and it only took one login

Abstract 3D visualization of a connected network represented as a dark globe covered with intersecting lines and glowing spherical nodes. The illuminated points appear linked across the curved surface, symbolizing artificial intelligence, neural networks, global data connections, and knowledge processing.

Perplexity launches Brain for its Computer agent

Simple illustration of a shopping bag with a keyhole symbol on the front, representing secure or private shopping, on a solid orange background.

Anthropic killed the API key (for workloads, at least)

Design editor interface displaying a crowdfunding webpage for Maple Grove Park alongside a Claude Code terminal window. The design canvas shows editable text, fundraising progress, and donation information, while Claude Code is used to synchronize design components between the visual editor and development workflow.

Claude Design adds admin controls, direct editing, and a connector army

Abstract promotional graphic for LifeSciBench featuring layered design elements on a soft blue gradient background with light reflections and blurred yellow highlights. The composition includes a pale yellow rectangle, a scientific-style bar chart with error bars, and a large cropped text block reading “LifeSciBench” in bold black lettering on a light blue panel. The clean, modern layout combines data visualization and branding elements to represent a life sciences benchmarking or evaluation platform.

OpenAI’s GPT-Rosalind leads LifeSciBench — at a 36% pass rate

Abstract science-themed graphic featuring a soft green and blue gradient background with layered geometric shapes. A chemical structure diagram labeled “4-hydroxy-TEMPO” appears in the upper-right section, while large cropped black typography partially displays the letters “Mo.” The composition combines molecular chemistry imagery with modern design elements, suggesting a scientific research, chemistry, or drug discovery platform.

OpenAI’s near-autonomous chemist just proved it can do real wet-lab science

Apple iCloud logo displayed on a blue gradient background. The image features the iCloud cloud icon centered above the “iCloud” wordmark in white, representing Apple’s cloud storage and synchronization service used for backing up data, syncing files, photos, documents, and settings across iPhone, iPad, Mac, Apple Watch, and other Apple devices.

Apple’s new private.icloud.com domain has a downside

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.