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

Dell XPS 16 Creator Edition: Tandem OLED, RTX Spark, and 128GB unified memory

OpenAI expands GPT-Rosalind access with new Rosalind Biodefense program

Dell’s new XPS 13 has more features than a MacBook Neo – at the same price

Claude Opus 4.8 now powers Perplexity Max and Computer

Codex computer use comes to Windows, with mobile in the loop

Also Read
A person wearing Apple Vision Pro on a train.

Vision Pro 2 isn’t dead – it’s just slowing down

The classic Apple logo, shown in light silvery-blue, set against a black background. The logo has a clean, minimalist design featuring the iconic bitten apple silhouette with a soft, matte finish.

Apple Car Key is finally headed to future Mahindra models

WWDC 2026 wallpaper on Apple's Mac, iPad, and iPhone devices.

WWDC26 hype starts: new Apple wallpaper, playlist, and more

Promotional poster for Apple's WWDC26 developer conference featuring a glowing Apple logo centered on a black background. Beneath the illuminated logo, the text reads “WWDC26” and the slogan “All systems glow.” with event dates listed as June 8–12. The design uses bright white highlights and subtle blue reflections to create a futuristic, luminous effect.

Apple teases WWDC 2026 with ‘All systems glow’ and a big Siri reboot incoming

Grocery, gardening, and household items from a Walmart delivery are arranged on a front doorstep outside a brick home. A blue Walmart shopping bag, a bag of Miracle-Gro potting mix, bread, and potted flowers sit on a welcome mat, surrounded by decorative planters and colorful blooming plants near a wooden front door.

Walmart’s 30-minute delivery is now live in 33 U.S. cities

Acer Iconia Duo S14 Android tablet

Acer announces three Iconia Duo tablets with 3:2 OLED displays

Acer AR Vision GR0 glasses (GR100F)

Acer announces AR Vision GR0 and GI0 AI Glasses for 2026

Stylized rendering of a Qualcomm Snapdragon C processor mounted at the center of a translucent microchip, surrounded by circuit pathways on a light gray background. The black Snapdragon C logo stands out against the monochrome chip design, symbolizing computing performance, connectivity, and modern processor technology.

Qualcomm’s new Snapdragon C is the budget laptop chip nobody knew they were waiting for

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.