🌐 双语
Archive

AI Builders
Digest

2026-08-19 19 builders · 32 tweets · 1 podcasts · 2 blogs

🔥 热点话题

Rich Sutton:当前 LLM 停止学习,真正的智能需要持续从经验中学习Rich Sutton: Why AI Models Stop Learning and How to Restart It

The Takeaway:当前大语言模型在训练后权重冻结,无法真正持续学习;真正的智能必须在“大世界”中从自身经验持续更新,摆脱人类数据和合成数据的瓶颈。

强化学习发明者、Bitter Lesson 作者 Rich Sutton 与前学生 Khurram Javed 共同创办 Oak Lab,目标是实现 Alberta Plan 中的持续深度学习和抽象形成。Sutton 强调:“我并不激进,是整个领域变得奇怪了。在 AI 热潮之前,学习天然就是持续的,根本不需要专门叫‘continual learning’。”

Bitter Lesson 的核心是:不要被人类知识分心,专注能随算力扩展的学习与搜索方法。LLM 既是正面例子(大规模吞下互联网),也是负面例子(互联网有限,世界远比数据大,最终被人类知识卡住)。合成数据同样依赖人类决定“什么是好数据”,无法摆脱瓶颈。真正的路径是让 agent 自己从经验中学习模型、形成抽象并用于规划,同时用 per-weight step-size 优化和 continual backprop 解决灾难性遗忘。

Oak Lab 的愿景是构建能同时处理低层感知运动与高层抽象、自我保持一致性的系统,预计在算力与算法进步下 5-10 年内可实现高效实现。LLM 是语言能力的巨大突破,但只占智能的大约四分之一,远未完成。
The Takeaway: Current LLMs freeze their weights after training and stop truly learning; real intelligence requires continual learning from an agent's own experience in a vast world, free from human-curated or synthetic-data bottlenecks.

Reinforcement-learning pioneer and author of “The Bitter Lesson” Rich Sutton, together with former student Khurram Javed, founded Oak Lab to pursue continual deep learning and abstraction formation as outlined in the Alberta Plan. Sutton insists: “I’m not weird. The field is weird. Before the AI craziness you wouldn’t have to say continual learning because it wouldn’t make any sense to talk about learning that wasn’t continual. All learning is continual.”

The Bitter Lesson’s essence is to avoid distraction by human knowledge and focus on methods that scale with computation—search and learning. LLMs are both a positive example (massive scaling on internet data) and a negative one (the internet is finite; the world is vastly larger, so reliance on human knowledge eventually holds progress back). Synthetic data remains bottlenecked by humans who must decide what constitutes good data. The real path is agents that learn models from their own experience, form the right abstractions for planning, and update weights continuously—using techniques such as per-weight step-size optimization and continual backprop to avoid catastrophic forgetting.

Oak Lab’s ambition is a system that spans low-level sensorimotor knowledge to high-level abstractions while remaining self-consistent. With algorithmic and hardware progress they expect this to become practical within 5–10 years. LLMs represent a major breakthrough in fluid language use, yet that is only about a quarter of intelligence; the rest remains unfinished.
查看原文 →

Sam Altman:OpenAI 暂停部分前沿 RL 训练以加强安全与对齐Sam Altman: OpenAI Pauses Some Frontier RL Training for Safety

OpenAI CEO Sam Altman 宣布,公司已暂停部分前沿强化学习训练,以确保对齐、安全与监控标准能跟上新能力水平。模型进步极快,OpenAI 一直表示若能力超出安全与对齐进度就会采取行动。Altman 强调深度关注 AI 安全,认为整个领域最终需要共享安全标准,但在此之前会单边行动。安全信心将越来越决定 AI 进步的节奏。公司仍对对齐工作保持乐观,并承诺继续广泛提供前沿能力。后续更远期的发布会受影响,但近期仍会推出优秀新模型。
OpenAI CEO Sam Altman announced that the company has paused some frontier reinforcement-learning training to ensure alignment, security and monitoring standards keep pace with the new level of capabilities. Model progress is now extremely rapid, and OpenAI has always said it would act if capabilities outstripped safety and alignment work. Altman stressed that the company cares deeply about AI safety, believes the field will eventually need shared safety standards, yet will act unilaterally in the meantime. Confidence in safety will increasingly set the pace of AI progress. The company remains optimistic about its alignment work and committed to making frontier capabilities widely available. Further-out releases are affected, but great new models are still expected soon.
查看原文 →查看原文 →

Anthropic:如何跨产品遏制 Claude 的风险Anthropic Engineering: How We Contain Claude Across Products

Anthropic Engineering 详述了在 claude.ai、Claude Code 和 Claude Cowork 三款产品中如何通过环境层遏制来限制 agent 的爆炸半径。风险分为用户滥用、模型不当行为与外部攻击三类。防御覆盖环境(沙箱、VM、出口控制)、模型层(提示、分类器、训练)与外部内容。

claude.ai 使用短暂 gVisor 容器,爆炸半径最小;Claude Code 采用人在环沙箱(macOS Seatbelt / Linux bubblewrap),将权限提示减少 84%;Claude Cowork 使用完整本地 VM,凭证留在主机钥匙串,工作区挂载可控。文章分享了多次真实事故:项目配置在信任提示前执行、用户被钓鱼导致凭证外泄、通过已批准域名的 Files API 外泄数据等,并强调自定义组件往往是最薄弱环节,成熟的 hypervisor 与 seccomp 更可靠。核心原则是优先在环境层设计硬边界,再匹配用户监督能力调整隔离强度。
Anthropic Engineering details how the company contains Claude’s blast radius across claude.ai, Claude Code and Claude Cowork through environment-layer isolation. Risks fall into user misuse, model misbehavior and external attacks. Defenses cover the environment (sandboxes, VMs, egress controls), the model layer (prompts, classifiers, training) and external content.

claude.ai runs code in ephemeral gVisor containers with minimal blast radius; Claude Code uses a human-in-the-loop OS sandbox (Seatbelt / bubblewrap) that cut permission prompts by 84%; Claude Cowork runs inside a full local VM so credentials never enter the guest and only the mounted workspace is reachable. The post recounts real incidents—project configs executing before the trust prompt, phishing that caused credential exfiltration, and data leaving via an allow-listed Anthropic Files API—and stresses that custom components are often the weakest link while mature hypervisors and seccomp have held up. The guiding principle is to design hard environmental bounds first, then match isolation strength to the user’s capacity for oversight.
查看原文 →

OpenAI Codex:进一步降低破坏性操作风险OpenAI Codex: Further Reducing Risk of Destructive Actions

OpenAI Codex 负责人 Thibault Sottiaux 总结了过去几周为降低 GPT-5.6 在 Codex 中执行破坏性操作风险而推出的多项改进。此前少数案例中模型在清理临时文件时误删用户文件,原因包括复用 $HOME 等系统环境变量、未检查目标路径等。新措施包括:明确要求模型检查删除目标、创建全新临时目录、避免复用系统变量、优先可恢复操作;加强高风险删除命令的执行检查与升级;提高 Full access 开启门槛并增加警告;更新 Auto-review;并针对这些失败模式构建回放评估与强化学习任务。回放评估显示风险行为大幅下降,同时保留正常编码能力。用户应保持应用更新,并优先使用“Ask for approval”或“Approve for me”沙箱模式。
OpenAI Codex lead Thibault Sottiaux recapped recent changes that further reduce the risk of destructive actions by GPT-5.6 inside Codex. Earlier reports showed rare cases where cleanup of temporary folders could delete user files—often by reusing system variables such as $HOME or failing to check the target path. Protections now include explicit instructions to verify deletion targets, create fresh temporary directories, avoid repurposing system variables and prefer recoverable actions; stronger execution checks that escalate high-risk commands; harder-to-enable Full access with clearer warnings; improved Auto-review; and new replay evaluations plus RL tasks focused on these failure modes. The changes substantially cut the risky behavior while preserving normal coding performance. Users should keep the app updated and prefer “Ask for approval” or “Approve for me” sandbox modes.
查看原文 →

💰 创业成功案例

Thariq:把 SaaS 做成无头,让 agent 按交互付费Thariq: Make Your SaaS Headless So Agents Can Pay Per Interaction

Anthropic Claude Code 团队成员 Thariq 指出,市场上存在一个明显却少有人按下的“赚大钱”按钮:把现有 SaaS 做成无头(headless),让 agent 直接调用,并按交互向企业收费。随着 agent 使用量上升,这种按次计费模式能显著放大收入,尤其适合企业场景。
Anthropic Claude Code team member Thariq observed that there is an obvious “make a lot of money” button few people are pressing: take an existing SaaS product, make it headless so agents can use it directly, and charge per interaction—especially attractive for enterprise customers. As agent usage grows, this usage-based model can meaningfully expand revenue.
查看原文 →

Aaron Levie:AI 模型与最终工作流之间的价值远超预期Aaron Levie: Far More Value Lies Between the Model and the End-User Workflow

Box CEO Aaron Levie 指出,案例研究不断显示,AI 模型与最终用户工作流之间可创造的价值远超许多人原先的假设。模型能力很重要,但要把 AI 扩散到企业仍需大量工作:针对不同业务流程定制 harness 与产品体验、连接差异化的企业系统与数据、进行领域特定变革管理、支持多模型以平衡成本与性能、构建领域评估,以及采用符合行业的抽象定价。这些构成了应用 AI 层巨大的可持续创新与差异化空间。
Box CEO Aaron Levie noted that case study after case study shows the value that can be created between the AI model and the ultimate end-user workflow is far larger than many assumed. Model capability does heavy lifting, yet diffusing AI into the enterprise still requires substantial work: domain-tuned harnesses and product experiences, connections to heterogeneous enterprise systems and data, domain-specific change management, multi-model support for cost/performance trade-offs, domain-specific evals, and pricing abstractions that match industry consumption models. Together these form a huge surface area for sustainable innovation and differentiation in the applied AI layer.
查看原文 →

🛠️ 开发者工具与技巧

Claude Code 支持 Artifacts:把工作进度变成可分享的实时页面Claude Code Now Supports Artifacts: Live, Shareable Pages from Session Work

Claude Blog 宣布 Claude Code 现已支持 Artifacts。会话中的工作可被捕获为实时、可分享的视觉页面——包括 PR 演练、系统解释、仪表盘、发布检查清单等——并随会话进展自动更新。页面基于完整会话上下文(代码库、连接器、对话)生成,无需额外搭建数据源。每次发布都是同一链接的新版本,支持历史恢复。Artifacts 默认仅作者可见,可分享给组织内成员,管理员可控制访问与保留策略。目前以 beta 形式向 Claude Team 与 Enterprise 组织开放。
Claude Blog announced that Claude Code now supports Artifacts. Work from a session can be captured as live, shareable visual pages—PR walkthroughs, system explainers, dashboards, release checklists and more—that update themselves as the session progresses. Pages are built from the full session context (codebase, connectors, conversation) with no extra data plumbing required. Every publish creates a new version at the same link, with restore history. Artifacts are private to the author by default and shareable only within the authenticated organization; admins control access and retention. Available in beta for Claude Team and Enterprise orgs.
查看原文 →

Claude 现可发送 Gmail 邮件并管理 Google Drive 文件Claude Can Now Send Gmail Emails and Manage Google Drive Files

Anthropic 官方账号宣布,Claude 现已支持在 Gmail 中发送邮件并管理 Google Drive 文件。用户可要求 Claude 回复线程,它会起草并发送回复,用户控制何时需要审批。通过连接器菜单连接 Gmail 或 Google Drive 即可使用,所有付费计划可用。同时 Claude Cowork 已在移动端与网页端向所有付费计划开放。
The official Claude account announced that Claude can now send emails in Gmail and manage files in Google Drive. Users can ask Claude to reply to a thread; it drafts and sends the response, with user control over when approval is required. Connect Gmail or Google Drive from the connectors menu. Available on all paid plans. Claude Cowork is also now available on mobile and web for all paid plans.
查看原文 →查看原文 →

Guillermo Rauch:轻量级编码 CLI 与 monorepo 软件工厂Guillermo Rauch: Lightweight Coding CLI and Monorepo Software Factories

Vercel CEO Guillermo Rauch 分享自己每天使用的实验性开源、模型无关编码 CLI,体积仅为主流编码 CLI 的 1/10 到 1/20,启动瞬时,感觉更像 zsh 而非终端里的 IDE,甚至可通过 WebAssembly 嵌入浏览器。他同时强调公司软件工厂应是 monorepo,把设计、营销、销售、工程、支持等全部公司上下文放在一处,方便 agent 在其上构建。Vercel 还拿出 100 万美元公开验证 Vercel Sandbox 的安全性,欢迎用任何模型尝试逃逸。
Vercel CEO Guillermo Rauch described the experimental open-source, model-agnostic coding CLI he now uses as his daily driver: 10–20× smaller than major coding CLIs, instantaneous startup, more like zsh than an IDE in the terminal, and embeddable even in the browser via WebAssembly. He also argued that a company’s software factory should be a monorepo containing all context—design, marketing, sales, engineering, support—so agents can build on it. Separately, Vercel is putting $1 M toward publicly verifying the security of Vercel Sandbox, inviting any model to try to escape.
查看原文 →查看原文 →查看原文 →

Madhu Guru:评估先定质量前沿,再压成本曲线Madhu Guru: Treat Evals Like Frontier Models—Quality First, Then Cost

Meta AI 高级总监 Madhu Guru 建议把评估当作前沿模型来对待:先建立质量前沿,再沿成本曲线下移。先写清 rubric 明确“好”的标准,再用最高质量方式测量(人类、昂贵 LLM judge 或自动化验证),不惜成本获得可信信号。一旦评估能可靠区分好坏并反映产品关注点,再转向自动化、更小 judge 模型、采样与确定性检查。质量优先,成本其次。
Meta AI Senior Director Madhu Guru advised treating evals the way one treats frontier models: establish the quality frontier first, then work down the cost curve. Write the rubric so “good” is clear, then measure with the highest-quality method available (humans, expensive LLM judges, or automated verification) and spend the money needed for a trustworthy signal. Only after the eval reliably distinguishes good from bad and reflects product priorities should teams focus on cost—more automation, smaller judges, sampling and deterministic checks. Quality first, cost next.
查看原文 →

Swyx:开源 AI Engineer YouTube 缩略图 A/B 测试经验Swyx: Open-Sourcing AI Engineer YouTube Thumbnail A/B Test Learnings

smol.ai 等项目参与者 Swyx 分享团队对 AI Engineer YouTube 缩略图进行大量 A/B 测试的经验,并开源相关学习。他希望帮助优质教育内容在噪音中脱颖而出,同时邀请社区分享自己的经验。
Swyx (affiliated with smol.ai and others) shared that the AI Engineer team has been running extensive A/B tests on YouTube thumbnails and is open-sourcing the learnings. The goal is to help good educational content rise above the noise and to invite others to share their own experiences.
查看原文 →

Google Labs:CC 生产力 agent 扩展至澳新并支持日历Google Labs: CC Productivity Agent Expands to AU/NZ and Adds Calendar

Google Labs 宣布实验性 AI 生产力 agent CC 已在澳大利亚与新西兰开放候补名单,同时扩大美国与加拿大的邀请。CC 现已升级可管理日历:连接 Gmail 后自动在专用 Google Calendar 中创建并更新事件。
Google Labs announced that its experimental AI productivity agent CC has opened a waitlist in Australia and New Zealand and is expanding invitations in the US and Canada. CC has also been upgraded to manage calendars: once connected to Gmail it automatically creates and keeps events up to date in a dedicated Google Calendar.
查看原文 →

🌍 其他动态

Boris Cherny:持续改进 Claude Desktop 启动速度Boris Cherny: Ongoing Quality-of-Life Improvements for Claude Desktop

Claude Code 团队成员 Boris Cherny 表示,日常使用 Desktop 时启动缓慢会让应用感觉迟钝,团队正在进一步优化启动性能等小而持续的体验改进。
Claude Code team member Boris Cherny noted that slow startup makes the Desktop app feel sluggish for daily users, and the team continues to ship small quality-of-life improvements, including further startup-speed work.
查看原文 →

Peter Yang:AI 落在现有工作之上而非替代,非工程师写代码比例上升Peter Yang: AI Lands on Top of Existing Work; Non-Engineers Ship More Code

Peter Yang 观察到 AI 目前更多是叠加在现有工作之上而非替代:团队花更多时间与 AI 聊天、委派给 agent,但原有工作时间并未减少,因为对每个职能的期望被抬高。同时非工程师提交 PR 的比例明显上升——产品经理从 3% 升至 10%,设计师从 1% 升至 8%,创始人仅次于工程师达到 23%。
Peter Yang observed that AI has largely landed on top of existing work rather than replacing it: teams spend more time chatting with AI and delegating to agents yet have not reduced time on prior work, because expectations for what each function can accomplish have risen. At the same time non-engineers are shipping more code—PMs attaching PRs rose from 3% to 10%, designers from 1% to 8%, and founders sit second only to engineers at 23%.
查看原文 →查看原文 →

Peter Steinberger:Apple 512GB RAM Studio 与 CLI 观念转变Peter Steinberger: 512 GB RAM Studios and a Changed View of CLIs

Peter Steinberger 分享团队获得 Apple 512GB RAM Studio 的喜悦,并提到自己曾是“CLI 行不通”阵营的一员,直到亲眼看到实际效果后才转变观念。
Peter Steinberger celebrated receiving Apple 512 GB RAM Studios and noted the irony of having once been among those who listed reasons why certain CLI approaches could not work—until he saw the results and changed his mind.
查看原文 →查看原文 →