Claude Code can now run scheduled cloud tasks against remote repos and MCP-connected tools, while Anthropic is also pushing reusable agent SDK and skill controls. Test remote automation paths carefully, because messaging and multi-repo edge cases still surface in practice.

The new feature is scheduled cloud tasks: jobs kicked off on a remote machine instead of a local terminal. TestingCatalog's summary says those tasks run remotely with access to "your MCPs, repositories, and more," which matters because it suggests Anthropic is wiring the same tool-and-context surface used in live Claude Code sessions into unattended execution cloud tasks.
That changes the operating model more than the UI. Claude Code had already been moving toward being accessible "from anywhere," as Matthew Berman put it from anywhere, but scheduled cloud tasks turn that into actual automation infrastructure: repository-aware work running off the developer laptop, potentially against MCP-connected services and internal tooling MCP access.
Anthropic's broader message is that Claude Code is becoming a substrate for agents, not just a coding assistant. In a thread linking Anthropic's post, trq212 called the Agent SDK "the easiest way to build agents," and the linked article describes it as a toolkit for building "computer-powered agents" on top of Claude Code agent SDK Claude post.
The same thread sketches the design philosophy behind that push: "skills are the abstraction," "your agent should use a file system," and even "bash is all you need" for many workflows agent thread bash thread. That lines up with scheduled cloud tasks running against repos and MCPs: Anthropic seems to be standardizing around agents that can operate through terminal-native tools rather than bespoke app-specific actions.
A smaller but practical control landed alongside that direction. Retweeted release notes from Lydia Hallie say developers can now set effort level in skills and slash commands, which "controls how long the model thinks before answering" effort control second signal. For engineers building repeatable commands, that implies another latency-versus-quality knob inside Claude Code's reusable command layer.
The biggest caveat in the current evidence is scope and session plumbing. Simon Willison says Claude Code for web does not appear to support checking out two private repos at once, because Git operations seem to go through a local proxy that only authenticates the private repo attached to that session multi-repo issue. If accurate, that would constrain cross-repo maintenance and monorepo-adjacent workflows in the web product.
There are also UX reliability reports around remote messaging surfaces. Hamel Husain says a Telegram-connected setup is a "very nice addition" but sometimes Claude Code is "not receiving the message" he sends, and he sometimes has to go back to the terminal and say "hello" to get it unstuck again Telegram issue unstuck report. Another reaction asks for multiple projects and worktrees in the same Telegram bot, which points to the next layer of operator demand once remote access works reliably worktree request.
Vercel Emulate added a programmatic API for creating, resetting, and closing local GitHub, Vercel, and Google emulators inside automated tests. That makes deterministic integration tests easier to wire into CI and agent loops without manual setup.
releaseOpenClaw shipped version 2026.3.22 with ClawHub, OpenShell plus SSH sandboxes, side-question flows, and more search and model options, then followed with a 2026.3.23 patch. Teams get a broader plugin surface, but should patch quickly and review plugin trust boundaries as the ecosystem grows.
releaseCursor shipped Instant Grep, a local regex index built from n-grams, inverted indexes, and Bloom filters that drops large-repo searches from seconds to milliseconds. Faster candidate retrieval shortens the coding-agent loop, especially when ripgrep-style scans become the bottleneck.
breakingChatGPT now saves uploaded and generated files into an account-level Library that can be reused across conversations from the web sidebar or recent-files picker. It removes repetitive re-uploading and makes past PDFs, spreadsheets, and images part of a persistent working context.
breakingEpoch AI says GPT-5.4 Pro elicited a publishable solution to one 2019 conjecture in its FrontierMath Open Problems set, with a formal writeup planned. Treat it as an early milestone worth reproducing, not blanket evidence that frontier models can already automate math research.
the agent SDK is the easiest way to build agents claude.com/blog/building-…
I just noticed that its often not receiving the message I send from telegram and I have to repeat myself is part of the problem
In case you missed it 🤖: Claude Code now has scheduled cloud tasks, which are being executed on the remote machine with access to your MCPs, repositories, and more.
It has access to any MCPs you've connected via claude.ai Try it out at claude.ai/code/scheduled or via the desktop
You can now set effort level in skills/slash commands! This controls how long the model thinks before answering, and overrides your session default
Anyone know if it's possible to checkout two private repos at the same time in Claude Code for web? As far as I can tell it isn't, because all Git operations go through a local proxy which only allows authenticated access to the private repot that the session is attached to