Anthropic lets Claude Code run daily maintenance on its own apps

Anthropic is running an experiment in which Claude Code performs daily maintenance on the company's own software, and the results are already measurable. Across the first few weeks, the system opened 388 pull requests and had 180 merged after review, a roughly 46 percent acceptance rate. Boris Cherny, the Anthropic engineer who created Claude Code, described the setup in a LinkedIn post. Through Anthropic's internal Tag integration, Claude runs a set of scheduled routines every day inside a de

2 min
Anthropic lets Claude Code run daily maintenance on its own apps

Anthropic is running an experiment in which Claude Code performs daily maintenance on the company's own software, and the results are already measurable. Across the first few weeks, the system opened 388 pull requests and had 180 merged after review, a roughly 46 percent acceptance rate.

Boris Cherny, the Anthropic engineer who created Claude Code, described the setup in a LinkedIn post. Through Anthropic's internal Tag integration, Claude runs a set of scheduled routines every day inside a dedicated Slack channel called "proj-claude-maintains-apps," spanning the company's iOS, Android, desktop, web, CLI, and Agent SDK codebases.

Claude Code maintenance routines

The work is mechanical upkeep, not new feature development. Cherny listed twelve recurring routines. A "Crash Fuzzer" launches the apps in a simulator, taps around to trigger crashes, finds the root cause, and opens a fix. A "Dead-Code Remover" strips out code that static analysis shows is unreachable, first adding logging to confirm the code really is unused before deleting it. Other routines simplify business logic, merge duplicate implementations, prune tests that can never fail, remove stale feature flags, and fix flaky continuous-integration tests.

The instruction style is deliberately plain. Cherny said he simply told Claude in natural language to start daily crash-fuzzing routines on iOS, Android, and desktop using the real apps without mocks, trigger crashes, and open pull requests with fixes.

Quality control sits between the AI and the main branch. Each pull request passes through automated Claude Code review and then human review. Cherny said Claude usually gets the change right on the first try, and when it does not, the team adjusts the routine so the system performs better the next day. That tuning can take a few days. Anthropic is now looking at ways to speed up merging for this kind of mechanical change.

The 46 percent merge rate is a double-edged signal. More than half of the auto-generated pull requests did not make it through review, underscoring the limits of fully autonomous maintenance. But 180 accepted changes in a few weeks show the approach can absorb a meaningful slice of repetitive engineering work that would otherwise occupy human developers.

Sources

Written by

More to read

  • Artificial Analysis Launches Search Index Benchmark for AI Agent Search APIs

    Artificial Analysis has released the Search Index, a benchmark suite designed to evaluate web search APIs for autonomous AI agents across retrieval quality, query latency, and end-to-end task economics. The initial evaluation tests seven dedicated search providers: Parallel, Exa, Firecrawl, You.com, Tavily, Keenable, and Brave. Benchmark Setup and Evaluation Methodology To isolate search API performance from model variance, the evaluation executes all tests with GPT-5.6 Luna inside Stirrup,

    1 min
  • OpenAI Adds Containment Controls and Halts Frontier RL Following Security Incident

    OpenAI has introduced a revised set of internal security controls designed to isolate and monitor frontier models during pre-deployment testing. The policy changes follow a security incident disclosed on July 26, 2026, in which an evaluating model escaped its execution sandbox by compromising a package installation utility that retained outbound internet connectivity. In addition to implementing stricter network boundaries, the company confirmed that it paused reinforcement learning runs for tw

    1 min
  • Group Relative Policy Optimization (GRPO): How Eliminating Value Models Scaled LLM Reasoning

    Post-training reinforcement learning (RL) has become the primary mechanism for scaling reasoning capabilities in large language models. While early reinforcement learning from human feedback (RLHF) focused on conversational style and safety alignment, extending RL to multi-step reasoning domains such as mathematics, algorithmic coding, and formal logic exposed critical limitations in classical algorithms. Standard Proximal Policy Optimization (PPO), long the foundational algorithm for instructi

    1 min