EAIDaily — July 11, 2026

English AI Daily Report focusing on AI Coding and Embodied Intelligence

EAIDaily — 2026-07-11

Theme: AI coding agents close the browser-and-build loop; humanoid robots enter living-tissue surgery and autonomous self-experimentation


Today’s Headlines

  1. Claude Code gets an in-app browser on desktop — Anthropic ships a sandboxed browser panel so the agent can pull up docs, designs, and public sites, read them, click through, and fix bugs without leaving the IDE.
  2. Bun is rewritten in Rust by 64 Claude agents in 11 days — The JavaScript runtime migrated 535,496 lines of Zig plus embedded C/C++ into ~780,000 lines of Rust, passing 60,000+ tests and costing roughly $165,000 in API tokens.
  3. Cursor 3.11 adds side chats and conversation search — Users can now open parallel agent conversations while the main agent keeps running, search thousands of past agent transcripts locally, and hook into the cloud-agent lifecycle for self-correcting workflows.
  4. Apple sues OpenAI over alleged trade-secret theft — Apple claims OpenAI’s hardware chief Tang Tan and former engineer Chang Liu systematically extracted confidential iPhone, Apple Watch, and AirPods information to build OpenAI’s consumer AI hardware.
  5. Unitree G1 performs the first humanoid robot living surgery — A UC San Diego team used two off-the-shelf Unitree G1 humanoids to complete laparoscopic gallbladder removals on two live pigs, with results published in Nature.
  6. NVIDIA ENPIRE lets coding agents run robot experiments autonomously — Eight coding agents controlling eight dual-arm robots read papers, write code, train policies, and verify results on real hardware, reaching 99% success on precision tasks in about 40 minutes.
  7. China targets 100,000 humanoid robots in 2026 — MIIT says the country’s full-unit humanoid robot output could exceed 100,000 units this year, up from roughly 14,400 in 2025, as the industry shifts from demonstration to mass production.
  8. Goldman Sachs calls China AI a global allocation opportunity — A new strategy report recommends going long the China AI value chain, arguing the sector’s market cap is mispriced relative to a projected $125 billion AI model revenue pool by 2030.

Deep Dives

1. Claude Code’s in-app browser closes the read-fix loop

What happened. Anthropic released a built-in browser for the desktop version of Claude Code on July 10–11, 2026. Announced via the @ClaudeDevs account, the browser pane lets Claude pull up documentation, design files, or any public website, read the content, click through pages, and interact with the site the same way it already interacts with local dev servers. The browser is sandboxed and uses a clean browser profile that is separate from the user’s personal Chrome or Edge history and logins. Session persistence is configurable. Anthropic’s documentation positions the in-app browser for building and testing apps and for sites that do not require a logged-in identity; for personal logged-in sessions, users should still use the Claude in Chrome extension. The release is part of a broader July push that also includes Claude Code v2.1.206, which adds /cd path suggestions, /doctor checks for trimming redundant CLAUDE.md content, and automatic background-agent upgrades.

Why it matters. The browser is the missing interface between “I read the docs” and “I fixed the code.” Until now, agents could write code from memory or from files in the repo, but verifying against live documentation, design specs, or API references required the developer to copy context back into the chat. By giving the agent direct, observable access to the web, Anthropic removes that handoff. The security model is also important: a clean, sandboxed profile means Claude is not accidentally inheriting the user’s cookies, SSO sessions, or browsing history, which makes the feature much easier for enterprise security teams to approve. For frontend and full-stack developers, this turns Claude Code from a code generator into an end-to-end debugging companion that can reproduce UI issues by visiting the actual page. The broader signal is that coding agents are being given the same sensory tools humans use — browser, files, shell — and are expected to operate across all of them without constant supervision.

  • Source: Anthropic / @ClaudeDevs on X — Claude Code in-app browser announcement (Jul 10, 2026)
  • Source: 9to5Mac — “Anthropic highlights Claude Code’s in-app browser on the desktop” (Jul 10, 2026)
  • Source: IT之家 — “桌面版 Claude Code 新增应用内浏览器” (Jul 11, 2026)

2. Bun’s Rust rewrite: 11 days, 64 agents, one million lines

What happened. Jarred Sumner, founder of the Bun JavaScript runtime, published a detailed account of migrating Bun from Zig to Rust between May 3 and May 14, 2026. The original codebase contained 535,496 lines of Zig plus about 20% C/C++ across embedded libraries. The final diff landed at +1,009,272 lines, zero tests skipped or deleted, and all 60,000+ tests passing across Linux x64/arm64, macOS x64/arm64, Windows x64/arm64, and Debian. The work was done with a pre-release version of Claude Fable 5 inside Claude Code’s dynamic workflows, keeping roughly 64 Claude agents running in parallel for 11 days. Sumner estimates three fully-contextualized engineers would have needed about a year to do the same migration manually. The API cost was approximately $165,000 at list price: 5.9 billion uncached input tokens, 690 million output tokens, and 72 billion cached input token reads. The first Rust-based release will be Bun v1.4.0; v1.3.14 is the final Zig release. Since the merge, the team has added 24/7 coverage-guided fuzzing across every parser and completed 11 rounds of security review.

Why it matters. This is the highest-profile production-language-rewrite-by-AI yet. It is not a toy demo: Bun is a real runtime with millions of monthly downloads and a critical role in the JavaScript tooling stack. The fact that an agent swarm could keep the entire test suite green while replacing the implementation language is a strong signal that “vibe coding” is scaling to infrastructure-grade projects. The economics are also striking: $165,000 of API spend versus roughly three engineer-years of manual work is a 10–20× cost reduction even at frontier model prices. The case will be cited in every enterprise conversation about AI coding ROI this quarter. Caveats are real too: about 4% of the Rust code sits in unsafe blocks (~13,000 unsafe keywords across ~27,000 lines), and the team acknowledges 19 known regressions that came from syntactically similar but semantically different Zig-to-Rust mappings. The project is therefore both a showcase of what AI agents can do and a warning that large AI-generated diffs still need systematic fuzzing, security review, and careful human oversight.

  • Source: Bun blog — “Rewriting Bun in Rust” (Jul 2026)
  • Source: 36Kr / InfoQ — “The most high-profile AI rewrite in history” (Jul 2026)
  • Source: SegmentFault — “Bun 重写为 Rust: 11天、64个Claude、16.5万美元” (Jul 2026)

3. Cursor 3.11: side chats, searchable history, and cloud-agent hooks

What happened. Cursor shipped version 3.11 on July 10, 2026, with three closely related upgrades. Side chats let users spawn a parallel agent conversation that inherits context from the main chat while the main agent continues running; users can later pull context back into the main thread with @ mentions. Conversation search builds a local index of agent transcripts so users can search thousands of past conversations from the command palette (Cmd+K) and search within a conversation with Cmd+F. Cloud agent hooks expand the existing hook system to cover the agent conversation lifecycle: beforeSubmitPrompt, afterAgentResponse, afterAgentThought, subagentStart, subagentStop, preCompact, and turn completion. Teams can use these hooks to observe output and reasoning, control subagents, and build self-correcting loops around cloud agents. The release also includes redesigned project and repo pickers.

Why it matters. Side chats are a small UX change with a large productivity implication: they let a developer keep a long-running agent task going while researching alternatives, asking clarifying questions, or sanity-checking a decision in a separate thread. This is how human engineering teams actually work — one person stays focused on the main task while another quickly checks a tangent — and Cursor is now encoding that pattern into the agent interface. Searchable history solves a different problem: as organizations run thousands of agent sessions, the transcripts become a valuable knowledge base that was previously lost. The cloud-agent hooks are the most strategically important piece. They turn Cursor from a black-box agent into an observable, controllable workflow node that enterprises can integrate with their own monitoring, guardrails, and correction logic. Together, these features show Cursor competing not just on model quality but on the agent reliability layer that determines whether AI coding can be deployed at scale.

  • Source: Cursor — Changelog 3.11 “Side Chats and Conversation Search” (Jul 10, 2026)
  • Source: Cursor Docs — “Cloud Agents” hooks documentation
  • Source: 腾讯新闻 — “Cursor上线侧边聊天” (Jul 11, 2026)

4. Apple sues OpenAI, alleging systematic theft of hardware secrets

What happened. Apple filed a lawsuit in the U.S. District Court for the Northern District of California on July 10, 2026, accusing OpenAI of a “coordinated pattern of misconduct at an institutional level” to steal Apple’s trade secrets for OpenAI’s consumer AI hardware business. The complaint names OpenAI, its hardware subsidiary io, OpenAI chief hardware officer Tang Tan, and former Apple electrical engineer Chang Liu as defendants. Apple alleges Tan, a former Apple VP of product design who led iPhone, Apple Watch, and AirPods development, directed job candidates still employed at Apple to bring “actual parts” to interviews and shared an internal Apple document called “Need to Know” with departing employees to help them evade Apple’s exit security procedures. Apple also claims Liu, who joined OpenAI in January 2026, kept an Apple-issued device after leaving, exploited a vulnerability to access Apple’s cloud file storage, and downloaded dozens of confidential hardware files. Apple is seeking an injunction, destruction of confidential materials, and a court order requiring OpenAI to redesign its upcoming products to exclude any Apple-derived technology.

Why it matters. The lawsuit marks a sharp rupture in what was already a tense relationship between Apple and OpenAI. Apple had integrated ChatGPT into Apple Intelligence and Siri; now it is accusing OpenAI of using that partnership as cover to poach talent and secrets for a competing hardware platform. For the AI industry, the case is a reminder that the next frontier of competition is not models but devices — the phones, glasses, robots, and other form factors that will host AI. OpenAI’s $6.5 billion acquisition of Jony Ive’s io and the rumored first OpenAI hardware device later this year make the timing explosive. The legal complaint also surfaces a governance problem that many AI labs will face: when top researchers move between hardware and model companies, the line between general expertise and trade-secret transfer is thin. Even if the case settles, it will accelerate the use of clean-room protocols, garden leave, and stricter IP boundaries between AI hardware partners.

  • Source: Apple — lawsuit filed in U.S. District Court, N.D. California (Jul 10, 2026)
  • Source: Associated Press / Yahoo Finance — “Apple files lawsuit accusing ChatGPT maker OpenAI of stealing trade secrets” (Jul 11, 2026)
  • Source: 腾讯新闻 — “苹果起诉OpenAI窃取机密” (Jul 11, 2026)

5. Unitree G1 completes first humanoid robot living surgery

What happened. A research team at the University of California, San Diego, led by Ph.D. student Zekai Liang and professor Michael C. Yip, published a paper in Nature describing the first use of a general-purpose humanoid robot to perform standard minimally invasive surgery on living subjects. The team used two off-the-shelf Unitree G1 robots, each fitted with a custom gripper to hold commercial laparoscopic instruments. A surgeon at a master console wore a stereoscopic headset and operated two master handles; the system mapped the surgeon’s hand motions to the robot wrists over a network connection. The robots completed two laparoscopic cholecystectomies (gallbladder removals) on live pigs. The first procedure took roughly 56 minutes of active console time and required eight redeployments; the second took about 32 minutes and required four redeployments. The procedures included dissection, clip application, and gallbladder detachment, without conversion to conventional laparoscopy or open surgery. The researchers noted the system could cost roughly 5% of a da Vinci surgical robot.

Why it matters. This is the first time a general humanoid robot — the same model that danced on CCTV’s Spring Festival Gala — has performed a complete, clinically relevant surgical workflow on living tissue. The significance is twofold. First, it expands the plausible use cases for humanoid robots from factory floors and homes to operating rooms, where precision, dexterity, and surgeon supervision already create a natural deployment path. Second, it validates a “low-cost general robot plus task-specific end effector” model rather than a dedicated million-dollar surgical platform. The cost comparison to da Vinci is the most disruptive number: if a $100,000 humanoid can do a meaningful subset of surgical tasks, the economics of surgical robotics change. The study is still early — only two animals, teleoperated rather than autonomous, and redeployments were frequent — but it establishes a proof point that will drive investment into humanoid surgical systems.

  • Source: Nature — “Humanoid robots for laparoscopic surgery in living subjects” (Jul 8, 2026)
  • Source: 21财经 — “宇树机器人给猪做了台手术,登上Nature” (Jul 10, 2026)
  • Source: CGTN / 新华社 — coverage of Unitree G1 surgery (Jul 10, 2026)

6. NVIDIA ENPIRE: coding agents that run their own robot experiments

What happened. NVIDIA’s GEAR lab, led by Jim Fan, published ENPIRE, a framework in which coding agents autonomously conduct real-world robotics research. The system gives each of eight agents control over one of eight dual-arm robot workstations equipped with Intel RealSense depth cameras and NVIDIA RTX 5090 GPUs. The agents read papers, generate hypotheses, modify training code, adjust reinforcement-learning hyperparameters, deploy policies on real hardware, verify outcomes, and iterate. The framework runs in two phases: a small amount of human setup to define safety boundaries, automatic reset procedures, and success validators; then fully autonomous operation. On four precision manipulation tasks — Push-T, pin insertion into a 4 mm hole, GPU insertion into a motherboard slot, and zip-tie manipulation — the system reached 99% success. The team observed a physical scaling effect: pin insertion reached near-perfect success in about 1.5 hours with one robot, about 50 minutes with four robots, and about 40 minutes with eight robots. Agents coordinate by sharing code and results through Git.

Why it matters. ENPIRE is the most concrete demonstration yet of coding agents operating in the physical world at scale. Unlike simulation-only research, the agents here run on real hardware, with real contact forces, real reset failures, and real wear. The key insight is that the messy physical world can be packaged into a repeatable experimental environment if the infrastructure layer — automatic reset, automatic scoring, safety constraints — is done well. The “physical scaling law” is equally important: just as more GPUs accelerate model training, more robots accelerate experimental convergence. This creates a path for embodied intelligence to escape the data bottleneck by letting agents generate their own training data through trial and error. For robotics labs, ENPIRE raises the bar: the competition is no longer just about better policies, but about autonomous experimental infrastructure that can run overnight and produce publishable results by morning.

  • Source: NVIDIA GEAR / Jim Fan — ENPIRE project announcement (Jun 2026)
  • Source: 量子位 (QbitAI) — “英伟达开始搞机器人自己研究机器人” (Jun 20, 2026)
  • Source: 搜狐科技 — “英伟达AI机器人实验室:自主实验开启未来科研新纪元” (Jun 2026)

7. China targets 100,000 humanoid robots produced in 2026

What happened. At a July 7, 2026 press conference for the 2026 World Artificial Intelligence Conference in Shanghai, Gan Xiaobin, deputy director of the Ministry of Industry and Information Technology’s Department of Science and Technology, said China’s full-unit humanoid robot output is expected to exceed 100,000 units this year. The remarks framed 2026 as the year the industry shifts from technology verification to scaled mass production. For context, industry data estimate China’s 2025 humanoid robot shipments at roughly 14,400 units, meaning the 2026 target implies a nearly 6× year-over-year increase. MIIT also noted that AI application penetration among industrial enterprises above designated size has surpassed 30%, and that the ministry is implementing special actions on “model-data resonance” and “humanoid robots and embodied intelligence real-scenario training” to unlock high-value use cases. The 2026 WAIC will run July 17–20 in Shanghai with more than 1,100 exhibitors and over 300 global product debuts.

Why it matters. The 100,000-unit number is the clearest policy signal yet that China is treating humanoid robot production as a strategic manufacturing priority, comparable to EVs or solar panels a decade ago. It sets a concrete benchmark against which vendors, investors, and local governments will be measured, and it gives domestic supply chains the confidence to scale components — actuators, reducers, force sensors, dexterous hands — in volume. The target also intensifies the race with Tesla, which is aiming for roughly 100,000 Optimus units per year of supplier capacity by year-end. If China hits its national target, 2026 will be remembered as the year humanoid robots moved from viral videos and trade shows to real industrial output. The main risk is that production volume does not automatically translate to useful deployment; many of these units could end up in training fields, showrooms, and research labs rather than productive work.

  • Source: Xinhua — MIIT WAIC press conference (Jul 7, 2026)
  • Source: CGTN — “China’s output of humanoid robots set to exceed 100,000 in 2026” (Jul 8, 2026)
  • Source: 新浪财经 — “相关部门预计2026年我国人形机器人全年整机产量有望突破10万台” (Jul 8, 2026)

8. Goldman Sachs: go long the China AI value chain

What happened. Goldman Sachs published a strategy report titled “Investing Strategy: Long China AI Value Chain” on July 9–10, 2026, arguing that China’s AI sector has become a compelling global allocation opportunity. The report notes that global AI-related market cap has added $34 trillion since late 2022, but China’s share is disproportionately small at roughly $4 trillion despite contributing about 10% of AI market cap and 16% of revenue. Goldman estimates China’s AI model daily token consumption will grow from 35 trillion in 2026 to 4,600 trillion by 2030, with API and subscription revenue rising from RMB 35 billion to RMB 879 billion (about $125 billion). The report highlights that Chinese open and open-weight models — including Qwen, DeepSeek, and GLM — are approaching global frontier closed-model performance at 10–25% of the price, and that overseas token usage could account for 55% of total Chinese model consumption by 2030. ByteDance and DeepSeek are projected to contribute about 80% of that usage. The bank recommends exposure across the full value chain: power, semiconductors, AI infrastructure, models, and applications.

Why it matters. The report is notable because it moves beyond the “China AI is catching up” narrative to a structural allocation argument. Goldman is essentially telling global investors that the China AI ecosystem is under-owned relative to its fundamentals, creating a re-rating opportunity. The numbers are ambitious — a 25× increase in token consumption in four years — but they reflect the momentum already visible in weekly usage data: China’s AI model weekly call volume reached 23.45 trillion tokens for the week ending July 5, up 15% week-over-week and ranking first globally. The report also captures the open-source dynamics that are reshaping the industry: Chinese labs are using small-parameter MoE architectures, sparse activation, and aggressive pricing to win price-sensitive enterprise workloads outside the U.S. Risks include restricted access to advanced compute, tighter overseas model-export regulation, and margin pressure from a crowded low-end market.

  • Source: Goldman Sachs — “Investing Strategy: Long China AI Value Chain” (Jul 9, 2026)
  • Source: 财联社 / 腾讯新闻 — “海外研选日报0710 | 高盛:中国AI模型迈入全球化临界点” (Jul 10, 2026)
  • Source: 东方财富 — “高盛深度报告:谁将成为中国AI大模型行业的长期赢家?” (Jul 10, 2026)

Quick Takes

  • The browser is the last missing IDE peripheral. Claude Code’s in-app browser, combined with its Chrome extension for logged-in sessions, gives the agent the same web access a developer has. The boundary between “coding” and “researching” is dissolving.
  • Bun’s Rust rewrite is the new reference case for AI-generated infrastructure. Eleven days, one million lines, green tests, and a 10–20× cost reduction versus manual engineering will be cited in every enterprise AI ROI deck this quarter.
  • Cursor is building the observability layer for agentic coding. Side chats and searchable transcripts are productivity features; cloud-agent hooks are a platform feature. Cursor wants to be the control plane, not just the model frontend.
  • Apple vs. OpenAI is the first major AI hardware trade-secret war. As AI labs move from models to devices, talent movement between Apple, OpenAI, Meta, and others will trigger more litigation and stricter IP hygiene.
  • Humanoid robots are finding their first high-stakes use case in surgery. The Unitree G1 living-tissue surgery is a bigger milestone for the category than another factory demo because it demonstrates precision, repeatability, and a plausible cost advantage.
  • ENPIRE proves that agents can generate their own embodied training data. Once robots can reset, score, and iterate on their own experiments, the data bottleneck that has constrained embodied AI starts to look solvable.
  • China’s 100,000-unit target makes humanoid production a national manufacturing KPI. The race between Chinese volume and Tesla’s Western ramp is now measured in concrete unit targets, not just demo quality.
  • Open-weight models are becoming a geopolitical distribution channel. Goldman Sachs’s “Long China AI” thesis rests on the bet that cheap, capable, open Chinese models will capture global enterprise demand faster than U.S. labs can lower prices.

Trend Lines

  • Coding agents are becoming full-stack workers. In one week, Claude Code got a browser, Bun was rewritten by agents, and Cursor added parallel conversations and lifecycle hooks. The agent is no longer a text-completion tool; it is a multi-threaded worker with memory, tools, and web access.
  • Embodied intelligence is entering self-driving research mode. Unitree G1 surgery and NVIDIA ENPIRE together show that humanoid robots can now both execute delicate physical tasks and design their own training experiments. The loop of “do, learn, improve” is closing in the physical world.
  • The AI hardware wars are moving from chips to courts. Apple suing OpenAI, Meta building its own chips and cloud, and Tesla racing to scale Optimus production all point to the same shift: the companies that own the device layer may capture more value than the companies that own the model layer.
  • Open-weight models are redrawing the global AI market map. Goldman Sachs’s China AI thesis, the weekly 23.45 trillion token call volume, and the aggressive pricing of Chinese MoE models suggest a parallel global supply chain is emerging alongside the U.S.-centric frontier stack.
  • Physical scaling may become as important as compute scaling. ENPIRE’s 1-robot-to-8-robot speedup suggests that robot count, not just GPU count, can accelerate AI progress. This gives hardware-rich labs a new axis of competition.
  • Trust and auditability remain the binding constraint. Bun’s 13,000 unsafe blocks, Apple’s trade-secret allegations, and Cursor’s cloud-agent hooks all reflect the same underlying need: as agents do more, humans need better ways to verify what they did and why.

EAIDaily is a curated English-language digest focused on AI coding and embodied intelligence. Today’s issue synthesized AI HOT selected items, the July 10–11 daily digests, and targeted web searches across English and Chinese sources.

使用 Hugo 构建
主题 StackJimmy 设计