
Welcome back. Anthropic is on a roll. First, Claude took over your Mac (Computer Use). Then, Claude Code started managing its own permissions (Auto Mode). Now, they're coming for your phone.
Also: Anthropic engineer explains how Claude takes control of your computer, how to build CLIs for AI agents, and why engineering roles are up 400% since last year.
Today’s Insights
Powerful new updates and hacks for devs
How Uber uses AI for development
How to auto-generate your CLAUDE.md
Trending social posts, top repos, and more

TODAY IN PROGRAMMING
Claude now lets you access work tools from your phone: The AI lab just brought popular workplace tools like Figma, Slack, and Amplitude directly into the Claude mobile app. Now, you can now review designs, debug analytics, and manage tasks straight from your phone. This marks Anthropic’s third big release this week, following the launch of Computer Use for Mac and Auto Mode for Claude Code (a new feature that allows the coding assistant to manage its own permissions instead of stopping to ask for approval on every single task).
Cursor's cloud agents can now run entirely in your own network: The AI coding startup just made self-hosted cloud agents generally available. Each agent runs in an isolated VM with full access to internal caches, dependencies, and network endpoints, ensuring that code, secrets, and build artifacts never leave the team's environment. While Cursor handles the orchestration and model access, teams maintain their existing security setup. Companies like Brex, Notion, and Money Forward are already using them to delegate end-to-end software builds.
Cloudflare launches 100x faster sandboxing for AI agents: Cloudflare just dropped its Dynamic Worker Loader API as an open beta, offering a fresh approach for teams to securely run AI-generated code at scale. Rather than spinning up heavy containers that take hundreds of milliseconds to boot, this system uses V8 isolates that start in under ten milliseconds and use significantly less memory. Additionally, agents can now interact with tools using typed TypeScript APIs, which helps keep token counts low and efficiency high.

INSIGHT
How Uber uses AI for development

Source: The Code, Superhuman
Uber pulls back the curtain. At the Pragmatic Summit in San Francisco, Ty Smith and Anshu Chadha from the Dev Platform team gave a rare look at how the company is rolling out AI agents across its 3,000-person engineering team. While many companies claim to be AI-powered, Uber actually showed what it takes to get there.
Engineers have changed how they work. About 84% of Uber's developers now use agentic coding workflows, which look nothing like simple tab completion. Engineers now kick off multiple agents in parallel on different tasks, then review and redirect the output. Their role has shifted from writing code to orchestrating the systems that write it. In fact, Claude Code adoption nearly doubled in three months while traditional IDE tools plateaued.
This shift requires serious infrastructure. Uber built a central MCP Gateway to turn internal endpoints into MCP servers, an AIFX CLI for provisioning tools, and Minion, a platform for running background agents with monorepo access. All of this drove AI costs up 6x since 2024. The team also noted that top-down mandates didn't work. Instead, peer-driven adoption, where engineers shared their wins, was what really moved the needle.
The cost of AI is the part everyone skips. Most rollout stories focus only on adoption numbers. Uber’s story is different because it covers the infrastructure decisions, the tooling mistakes, and what happens when agents start opening 11% of pull requests. If your team is working through its own AI strategy, the full talk is well worth your time.

IN THE KNOW
What’s trending on socials and headlines

Meme of the day.
Screen Takeover: An Anthropic engineer shared exactly how Claude takes control of your computer.
Caught by a Bug: A supply chain attack hit LiteLLM (one of the most popular AI packages) and stole credentials from anyone who installed the package. Andrej Karpathy breaks it down (61.7M views).
Cognitive Debt: AI-heavy codebases are creating a new problem: code that nobody on the team can keep in their head. An ex-Vercel engineer just shared a simple rule to fix it.
Plot Twist: Engineering roles are up over 400% since last year's slump. Ex-Airbnb product lead Lenny Rachitsky's viral post on why the job market is defying the doom narrative (1.2M views).
CLI Blind Spot: Agents choke on interactive prompts, missing examples, and unpredictable command structures. A Cursor engineer posted a guide to building CLIs that agents can actually use.
Prompt Vault: 300 copy-paste Claude prompts just dropped, built for real dev work, from code reviews to AI agent design.

AI CODING HACK
How to auto-generate your CLAUDE.md
Most Claude Code users still write their CLAUDE.md files by hand, even though Claude can already infer most of that information directly from the source code. To automate this, developer Daniel San discovered an experimental flag from the Claude Code team that handles the heavy lifting for you.
To enable it, just add this snippet to your “.claude/settings.local.json”:
{
{
"env": {
"CLAUDE_CODE_NEW_INIT": "1"
}
}Just run “/init”. The latest version automatically scans your codebase to pick up on your tech stack, linters, and CI configs. You'll even get a chance to review and approve the proposal before anything actually gets written.
San's repo went from a 458-line CLAUDE.md to 68 lines. The new “/init” command focuses purely on the context Claude might miss if it weren't explicitly briefed. It's still an experimental flag, though, so keep in mind that things are likely to change.

TOP & TRENDING RESOURCES
Top Tutorial
How to build software using multi-agent AI workflows: This tutorial shows developers how to quickly build apps using multi-agent AI workflows in Claude Code. You will learn hands-on techniques for structuring prompts, enforcing software design principles, and managing project architecture - effectively leading AI agents the same way you would a team of human engineers.
Top Repo
Gemini API skills: Skills are a lightweight technique for adding relevant context to your agents. This repo contains a library of skills for the Gemini API, SDK and model interactions.
Trending Paper
A safer way to skip permissions (by Anthropic): Being bombarded with permission requests eventually leads to approval fatigue, which often pushes users to bypass security checks altogether. Anthropic's "auto mode" fixes this by using AI classifiers to handle routine approvals automatically while still blocking anything potentially dangerous.
Grow customers & revenue: Join companies like Google, IBM, and Datadog. Showcase your product to our 200K+ engineers and 100K+ followers on socials. Get in touch.
What did you think of today's newsletter?
You can also reply directly to this email if you have suggestions, feedback, or questions.
Until next time — The Code team


