🌐 双语
Archive

AI Builders
Digest

2026-08-21 14 builders · 31 tweets · 1 podcasts · 3 blogs

🔥 热点话题

Anthropic:Claude Code 质量问题复盘与修复Anthropic: Claude Code Quality Issues Postmortem

Anthropic Engineering: An update on recent Claude Code quality reports

过去一个月,Anthropic 调查了部分用户反馈 Claude 回复质量下降的问题,最终定位到三个独立变更,分别影响 Claude Code、Claude Agent SDK 和 Claude Cowork,API 未受影响。所有问题已在 4 月 20 日(v2.1.116)修复。

第一个变更是 3 月 4 日将默认 reasoning effort 从 high 调至 medium,以减少高延迟,但用户更偏好默认更高智能,4 月 7 日回滚。第二个是 3 月 26 日为闲置超过一小时的会话清理旧 thinking 的缓存优化,bug 导致每轮都清理,造成遗忘与重复,4 月 10 日修复。第三个是 4 月 16 日系统提示中加入长度限制以减少冗长,反而损害编码质量,4 月 20 日回滚。

Anthropic 承认内部评估与使用初期未能复现问题,并重置所有订阅用户的使用限额。未来将加强公共版本的内部使用、代码审查工具、系统提示变更的严格评估与渐进发布。

“We never intentionally degrade our models.”
Anthropic Engineering: An update on recent Claude Code quality reports

Over the past month Anthropic investigated reports of degraded Claude responses and traced them to three separate changes affecting Claude Code, the Claude Agent SDK, and Claude Cowork. The API was unaffected. All issues were resolved as of April 20 (v2.1.116).

On March 4 the default reasoning effort was lowered from high to medium to cut latency; users preferred higher intelligence and it was reverted April 7. On March 26 a caching optimization intended to clear older thinking after one hour of idle time instead cleared it on every subsequent turn, producing forgetfulness and repetition; fixed April 10. On April 16 a system-prompt instruction to reduce verbosity combined with other changes hurt coding quality and was reverted April 20.

Because the changes hit different traffic slices on different schedules the aggregate effect looked like broad, inconsistent degradation. Anthropic has reset usage limits for all subscribers and is tightening internal dogfooding, code-review tooling, and evals for any change that could trade off intelligence.

“We never intentionally degrade our models.”
查看原文 →

Anthropic:Managed Agents——把大脑与双手解耦Anthropic: Scaling Managed Agents by Decoupling Brain from Hands

Anthropic Engineering: Scaling Managed Agents: Decoupling the brain from the hands

Anthropic 推出 Managed Agents,一种托管服务,通过稳定接口运行长周期 agent,接口设计目标是超越任何具体实现。核心思路是把 agent 的三个组件虚拟化:session(追加日志)、harness(调用 Claude 并路由工具)、sandbox(执行环境),使它们可独立替换与故障。

早期把所有组件塞进同一容器导致“宠物”问题:容器故障即丢失会话,调试困难。解耦后 harness 离开容器,通过 execute(name, input) → string 调用 sandbox;session 日志独立存储,harness 崩溃后可用 wake(sessionId) 恢复。凭证被隔离在 sandbox 之外,防止 prompt injection 窃取 token。

结果是 p50 TTFT 下降约 60%,p95 下降超过 90%。同一 brain 可连接多个 hands,hands 也可在 brains 间传递。接口只保证 session 可查询、sandbox 可执行,对未来 harness 与模型保持开放。

“We virtualized the components of an agent... so the implementation of each to be swapped without disturbing the others.”
Anthropic Engineering: Scaling Managed Agents: Decoupling the brain from the hands

Anthropic launched Managed Agents, a hosted service that runs long-horizon agents through a small set of durable interfaces. The design virtualizes three components—session (append-only event log), harness (the loop that calls Claude and routes tools), and sandbox (execution environment)—so each can be replaced or fail independently.

Coupling everything in one container created a “pet” that could not be lost and was hard to debug. Decoupling moved the harness out of the container; it now calls the sandbox via execute(name, input) → string. Session state lives outside the harness, enabling wake(sessionId) recovery. Credentials are kept unreachable from the sandbox, closing a prompt-injection vector.

The architecture cut p50 TTFT by roughly 60% and p95 by over 90%. One brain can now address many hands, and hands can be passed between brains. The interfaces deliberately avoid assumptions about future harnesses or model capabilities.

“We virtualized the components of an agent... so the implementation of each to be swapped without disturbing the others.”
查看原文 →

Claude Managed Agents 新能力:自托管沙箱与 MCP 隧道New in Claude Managed Agents: Self-Hosted Sandboxes and MCP Tunnels

Claude Blog: New in Claude Managed Agents: self-hosted sandboxes and MCP tunnels

Claude Managed Agents 现支持在企业自控沙箱中执行工具,并通过 MCP 隧道连接私有网络内的 MCP 服务器。自托管沙箱(公共 beta)可运行在自有基础设施或 Cloudflare、Daytona、Modal、Vercel 等托管提供商上;agent 循环仍在 Anthropic 侧,工具执行与敏感数据留在企业边界内。

MCP 隧道(研究预览)让 agent 安全访问内部数据库、私有 API 与知识库,无需暴露公网端点,仅需出站连接。管理员可在 Claude Console 工作区设置中管理。

Amplitude、Clay、Rogo 等客户已在使用这些能力构建内部设计 agent、GTM 工程 agent 与金融分析 agent。
Claude Blog: New in Claude Managed Agents: self-hosted sandboxes and MCP tunnels

Claude Managed Agents can now execute tools inside a sandbox the customer controls and reach private MCP servers via tunnels. Self-hosted sandboxes (public beta) run on the customer’s infrastructure or with providers such as Cloudflare, Daytona, Modal, or Vercel; the agent loop stays on Anthropic’s side while tool execution and sensitive data remain inside the enterprise perimeter.

MCP tunnels (research preview) let agents call internal databases, private APIs, and knowledge bases without public endpoints—only an outbound connection is required. Workspace admins manage tunnels from the Claude Console.

Early adopters including Amplitude, Clay, and Rogo are already building design, GTM-engineering, and finance analyst agents on the new primitives.
查看原文 →

Max Hodak:从恢复视力到脑的底物独立性Max Hodak on Restoring Sight and Substrate Independence

The Takeaway:把大脑当作计算机来处理,比用药物随机试错更能快速产生医学级效果,而视网膜假体只是通向底物独立性的第一步。

Science 创始人兼 CEO Max Hodak(前 Neuralink)把公司定位为医疗器械公司,核心产品 Prima 是植入视网膜下的芯片,配合激光投影眼镜,绕过死亡视杆/视锥细胞直接刺激视网膜。欧洲已获 CE 认证,商业销售即将开始。临床试验中患者已能填数独、读段落。

Hodak 坚持“大脑非常字面地、清楚地就是一台计算机”。与小分子药物的随机游走不同,电极植入运动皮层后一小时内就能让四肢瘫痪患者打游戏。公司同时推进生物杂交神经接口与灌注医学项目 Vessel,目标是让大脑成为可升级、可替换的中心,最终实现底物独立性。

“The brain very literally, very clearly, plainly is a computer... If you can get the visual signal, auditory signal, balance, motor, in and out of the brain, that is an end in itself.”
The Takeaway: Treating the brain as a computer yields medical-scale results far faster than the random walk of drug discovery, and a retinal prosthesis is only the first step toward substrate independence.

Max Hodak, founder and CEO of Science (formerly of Neuralink), positions the company as a medical-device firm whose flagship product Prima is a chip implanted under the retina. Paired with laser-projector glasses it bypasses dead photoreceptors and restores form vision. It received European CE marketing approval in July; first commercial sales are weeks away. Trial patients have completed Sudoku puzzles and read books.

Hodak’s core claim is blunt: “The brain very literally, very clearly, plainly is a computer.” Unlike small-molecule discovery, placing electrodes in motor cortex lets a quadriplegic patient play video games within an hour. Science’s pipeline also includes biohybrid neural interfaces and a perfusion program called Vessel, all aimed at making the brain the upgradable, replaceable center of the human experience and ultimately achieving substrate independence.

“If you can get the visual signal, auditory signal, balance, motor, in and out of the brain, that is an end in itself.”
查看原文 →

💰 创业成功案例

Amjad Masad:Replit 与 OpenAI 的长期伙伴关系Amjad Masad on Replit’s Long-Overdue Partnership with OpenAI

Replit CEO Amjad Masad 宣布与 OpenAI 的合作“早该到来”。他回忆 YC 之前 Paul Graham 曾让 Sam Altman 招募他们,并分享了两人初次见面的故事。Masad 同时强调新 Free Mode 的速度让编程重新变得交互式,用户可真正用它构建大量应用。
Replit CEO Amjad Masad called the newly announced partnership with OpenAI “long overdue.” He recalled that before Replit joined YC, Paul Graham asked Sam Altman to recruit the team, and shared Sam’s own retelling of their first meeting. Masad also highlighted that the new Free Mode is fast enough to make coding interactive again and that users can already build a ton with it.
查看原文 →查看原文 →查看原文 →

Guillermo Rauch:Vercel 在为 Agent 构建 AWSGuillermo Rauch: Vercel Is Building AWS for Agents

Vercel CEO Guillermo Rauch 表示公司正在“为 agent 构建 AWS”。他同时祝贺 Bun 发布,称其追求简单、快速与开放的理念与 Vercel 完全契合,并预告 0.0.5 版本将进一步缩小体积(xz 压缩后仅两张软盘大小)并带来最受期待的功能。
Vercel CEO Guillermo Rauch declared “We’re building AWS for agents.” He also congratulated Jarred Sumner on Bun’s latest release, calling its pursuit of simple, fast and open a perfect match for how Vercel sees the world, and teased that version 0.0.5 ships even smaller (fits on two floppy disks when xz-compressed) together with the team’s most-requested feature.
查看原文 →查看原文 →查看原文 →

Nikunj Kothari:为什么野心对投资人如此重要Nikunj Kothari on Why Ambition Matters So Much to Investors

FPV Ventures 合伙人 Nikunj Kothari 解释了当前风险资本的数学:Anthropic、OpenAI、SpaceX、Cursor 等公司以惊人速度创造万亿级或数百亿级结果,LP 因此把钱集中到超大基金。基金规模膨胀后,每一笔投资都必须按“能否成为万亿公司”来承销。遗漏错误的代价远高于入场错误,因此一旦出现热度,价格几乎不再重要。这就是为什么创始人在 pitch 时必须展示足够野心。
FPV Ventures partner Nikunj Kothari laid out the new venture math: Anthropic, OpenAI, SpaceX and Cursor have produced trillion- or multi-tens-of-billions outcomes so quickly that LPs are pouring capital into mega-funds. At that scale every investment must be underwritten to a potential trillion-dollar outcome; the cost of omission now dwarfs the cost of commission. Once a deal has heat, entry price barely matters. That is why ambition has become non-negotiable in every pitch.
查看原文 →

🛠️ 开发者工具与技巧

Boris Cherny 与 Thariq:Anthropic 为企业推出 Mythos 级安全与 Fable 保障Boris Cherny & Thariq on Enterprise Safeguards for Mythos-Class Models

Claude Code 负责人 Boris Cherny 宣布,Mythos 级模型需要额外安全措施,企业可完全拥有并控制自己的数据,Anthropic 不保留任何数据,功能将于秋季推出。Thariq 同步介绍了新的 Fable 保障,让企业在自有基础设施上运行,已与约 100 家公司共同开发。
Claude Code lead Boris Cherny announced that Mythos-class models require additional safety measures; enterprises will own and control their own data and Anthropic retains none. The capability is coming this fall. Thariq added that new Fable safeguards let enterprises keep data and access control on their own infrastructure; the system has been co-developed with roughly 100 companies and will roll out more broadly in the fall.
查看原文 →查看原文 →

Thibault Sottiaux:Codex 用量限制澄清与 GPT-Image-2 透明图Thibault Sottiaux Clarifies Codex Limits and Ships Transparent Images

OpenAI Codex 与 ChatGPT 负责人 Thibault Sottiaux 澄清:用量限制不会在未透明沟通的情况下更改。部分用户因使用 sub2api 把订阅流量转售或共享而被风控系统标记;通过官方 Sign in with ChatGPT 或支持的 OSS 客户端则完全正常。同时宣布 GPT-Image-2 现已支持生成透明背景图片,可在 ChatGPT 与 API 中使用。
OpenAI Codex & ChatGPT lead Thibault Sottiaux clarified that usage limits are never changed without transparent community communication. Many reported discrepancies came from users converting subscriptions into API traffic via sub2api for resale or multi-user sharing—behavior flagged by fraud systems. Legitimate use through Sign in with ChatGPT or supported OSS clients is unaffected. He also shipped transparent-image generation in GPT-Image-2 for both ChatGPT and the API.
查看原文 →查看原文 →查看原文 →

Madhu Guru:如何构建阶梯式评估体系Madhu Guru on Building a Laddered Eval Strategy

Meta AI 高级总监 Madhu Guru(前 Google Gemini/Veo)强调企业 AI 系统失败的主因是缺乏评估策略。他提出四层阶梯:Hill-climb evals 持续推高产品上限并扩展功能;Regression evals 防止在爬山时破坏现有能力;Smoke-test evals 覆盖绝不能出错的基础与安全项;Launch evals 接近真实流量的上线前检验。
Meta AI Sr Director Madhu Guru (ex-Google Gemini/Veo) argues the root cause of enterprise AI struggles is the absence of an eval strategy. He recommends a ladder: hill-climb evals that continually push product quality and feature scope; regression evals that catch breakage while climbing; smoke-test evals for non-negotiable safety and basics; and launch evals that approximate real traffic before release.
查看原文 →

Peter Yang:用 Manager Agent 负面提示提升输出质量Peter Yang’s Simple Loop for Better AI Output

实用 AI 教程作者 Peter Yang 分享直觉:大量 AI 输出只需一个简单循环即可显著提升——让 manager agent 用“你确定这是最好的吗?”“再试一次,给我 11/10 的输出”这类负面提示去“否定” worker agent。他同时庆祝 YouTube 突破 10 万订阅,并预告与 AI 评估、Replit、OpenAI Finance、SpaceX Grok 团队的实战访谈。
Practical AI educator Peter Yang shared a gut instinct: much AI output can be improved by a simple loop in which a manager agent “negs” the worker with prompts such as “Are you sure this is the best you can do?” or “Give me 11/10 output.” He also marked crossing 100 k YouTube subscribers and previewed upcoming interviews with AI-evals experts, Replit’s product-engineering lead, OpenAI’s Finance product lead, and the SpaceX Grok bot team.
查看原文 →查看原文 →

Aaron Levie:后训练让垂直 AI 公司同时降本提质Aaron Levie on Post-Training for Applied AI Cost and Accuracy

Box CEO Aaron Levie 转发并评论一篇关于后训练的文章:一旦公司足够接近企业工作流并拥有足够同类任务量,就可以为特定任务定制模型。通过奖励塑形鼓励高效工具使用与推理,可在保持成本稳定的同时显著提升性能。这对拥有深度垂直专长的应用型 AI 公司构成强有力的竞争路径。
Box CEO Aaron Levie highlighted a post-training approach that co-optimizes cost and quality: once a company understands a domain deeply and has volume on similar tasks, purpose-built models become viable. Reward shaping that prefers trajectories reducing inference tokens while holding performance constant lets teams gain accuracy without raising cost—an increasingly attractive path for applied-AI companies with vertical expertise.
查看原文 →

Swyx:Latent Space 播客与 AI Engineer 技能覆盖Swyx on Latent Space Podcast and AI Engineer Skills

Latent Space 主持人 Swyx 为与 Vibhu 共同完成的最新一期播客感到自豪,嘉宾是被 NVIDIA 以 60 亿美元收购的模型工厂创始人,其模型在多项基准上超越 Thinky。他同时指出 Matt Pocock 的 /grill-me 已成为顶级技能,并推出 /wayfinder 帮助人们在未知领域编排研究,Ric Mac 的课程也正式上线。
Latent Space host Swyx celebrated the latest podcast episode co-hosted with Vibhu featuring the founder whose model factory NVIDIA just acquired for $6 B—models that actually beat Thinky on the numbers. He also noted that Matt Pocock’s /grill-me skill has reached the highest echelons (including variations seen by Satya Nadella) and that the new /wayfinder skill plus Ric Mac’s course expand the AI Engineer skills coverage.
查看原文 →查看原文 →

🌍 其他动态

Garry Tan:YC 正在成为 AI 研究者与消费硬件的 YCGarry Tan: YC Is Becoming the YC for AI Researchers and Consumer Hardware

Y Combinator 总裁兼 CEO Garry Tan 连续指出两个趋势:YC 正成为 AI 研究者的 YC,也正成为消费硬件的 YC。他同时调侃某个“应该自己吃狗粮却没吃”的有趣反例。
Y Combinator President & CEO Garry Tan observed that YC is becoming “the YC for AI Researchers” and, separately, “the YC for consumer hardware.” He also flagged an amusing violation of the “dogfood your own product” rule.
查看原文 →查看原文 →查看原文 →

Aditya Agarwal:最好的创始人是简化主义者Aditya Agarwal: The Best Founders Are Reductionists

SPC 普通合伙人 Aditya Agarwal(前 Dropbox CTO)强调团队最看重的品质是 Clarity——诚实、穿透迷雾、在混沌中画出路径的能力。他引用 Sridhar Ramaswamy(前 Google Ads 从 10 亿做到 1000 亿,现领导 Snowflake AI 转型)作为典范,并推出 Minus One 播客最新一集。
SPC General Partner Aditya Agarwal (ex-Dropbox CTO) stated that the attribute they prize most is Clarity: the ability to be honest, cut through the fog of war, and chart a path through murky water. He held up Sridhar Ramaswamy—who scaled Google Ads from $1 B to $100 B and now leads Snowflake through the AI shift—as the extreme example, and released the latest Minus One episode with him.
查看原文 →查看原文 →

Zara Zhang:动力跟随行动,而非先于行动Zara Zhang: Motivation Follows Action

独立开发者 Zara Zhang 分享与 Claude 的一次对话:当她感到缺乏动力时,Claude 说“Motivation follows action more than it precedes it”,这句话彻底改变了她对动力的看法。
Builder Zara Zhang recounted a conversation with Claude while feeling unmotivated. Claude’s line—“Motivation follows action more than it precedes it”—completely reframed how she thinks about motivation.
查看原文 →