Concise Summary简洁概述
UI isn't dying, but the 80/20 of human-software interaction has flipped: most interactions will now route through AI agents, forcing companies like Salesforce to expose their entire platforms as agent-operable tools.
Designing for agents requires three disciplines: teaching agents your product's rules upfront (specs, not guesswork), building feedback loops (rationale fields, dedicated feedback tools) to learn what agents are trying to do, and identifying which side of an agent-to-agent exchange holds which context.
界面并没有死,但人机交互的二八法则已经反转:大部分交互将经由 AI 智能体完成,这迫使 Salesforce 这类公司把整个平台改造成可供智能体调用的工具集。
为智能体设计产品需要三项能力:提前把产品规则教给智能体(给规范而非让它靠猜),建立反馈闭环(理由字段、专门的反馈工具)来理解智能体的真实意图,并厘清智能体对智能体交互中谁掌握哪部分上下文。
Infographic信息图
Salesforce's headless bet
Salesforce 的「无头」豪赌
Salesforce exposed its entire 27-year-old platform as APIs, MCP tools and CLI commands, betting that agent-operability now matters more than the familiar GUI that was its historic moat.
Salesforce 把 27 年历史的整个平台暴露成 API、MCP 工具和 CLI 命令,赌的是:能被智能体调用,比它赖以生存的熟悉 GUI 护城河更重要。
Agent-to-agent stack
智能体对智能体的新架构
The interaction chain evolves from user→UI→database to user→user's agent→software's own agent→database — two LLMs negotiating a task instead of one human clicking through screens.
交互链条从「用户→界面→数据库」演变为「用户的智能体→软件自己的智能体→数据库」,两个大模型协作推进任务,而不是一个人点按钮。
Spec-first onboarding
先给规范,再让智能体动手
Notion's MCP forces the agent to fetch a markdown spec before writing, preventing hallucinated syntax; Slack's MCP lacks this, forcing users to manually fix formatting after the fact.
Notion 的 MCP 要求智能体写入前先读规范文档,避免格式幻觉;Slack 的 MCP 缺了这一步,用户得事后手动修格式,对比凸显设计差距。
Rationale as telemetry
用「理由」字段做遥测
Ramp requires every tool call to carry a rationale string, letting the team reconstruct intent without seeing chat logs — recurring rationale patterns become signals for new features.
Ramp 要求每次工具调用都附带 rationale(理由)字段,在看不到聊天内容的前提下重建用户意图;反复出现的理由模式就是新功能的信号。
Detailed Summary详细解读
The essay opens with an anecdote from the author's social feed — a chorus claiming 'UI is dead' — then grounds it in two data points: Ramp's own 10x growth in weekly MCP active users over three months, and Salesforce's announcement of 'Headless 360,' which exposes its entire platform as APIs, MCP tools, and CLI commands. This framing establishes the piece isn't speculative futurism but a description of an already-underway shift, using Salesforce as the highest-profile incumbent validating the trend.
The author's key reframe is that UI isn't dying — humans still want buttons and confirmations — but the 80/20 has inverted: 80% of human-software interaction will flow through agents. This is stated as an assertion, not derived from data, and it's the load-bearing claim the rest of the essay builds on. The interaction model evolves in three stages: user→UI→database, then user→agent→database (UI vanishes), then user→user's agent→software's own agent→database, where two LLMs collaborate rather than a human directly touching the backend.
The first design principle — teach agents how to succeed — is illustrated by contrasting Notion's MCP, which forces agents to fetch an 'enhanced markdown spec' resource before writing (preventing hallucinated syntax), against Slack's MCP, which lacks this guardrail and leaves users manually correcting agent-generated formatting. The lesson: product-specific assumptions that once lived in developer documentation must now be pushed proactively to the agent at the moment of need, not left for it to infer from generic training data.
The second principle — build feedback loops — describes three concrete mechanisms Ramp adopted after realizing tool-call volume alone was uninformative: a mandatory 'rationale' parameter on every call (reconstructing intent without chat access), a dedicated feedback tool for agents to report blockers, and context-seeding parameters on specific tools. The worked example — recurring rationale phrases like 'drafting an incident report' signaling demand for a new build-incident-report tool — shows how agent behavior becomes a structured, machine-readable product research channel, arguably more consistent than typical human user feedback despite agents' tendency to hallucinate.
The third principle — mind the context gap — uses the Diego expense-report scenario to show that user-side and system-side agents each hold asymmetric information (calendar/email/Slack context vs. transaction data/policy/GL accounts). The prescription: instead of a traditional API pushing a raw choice back to the user ('pick one of 150 GL codes'), a well-designed agent interaction asks for context ('was this a client dinner?') that the requesting agent can actually answer, letting the receiving system apply its own domain knowledge to fill the gap — neither side needs to fully understand the other's domain.
The closing argument warns against checkbox-style MCP launches: usage may grow for a few quarters then plateau, while customers migrate toward products that genuinely invest in agent UX and away from those that merely 'support agents' nominally. The provocative closer — 'the one signing the check might be it' — reframes agents not as a feature checkbox but as the primary customer product teams now design for, an assertion worth treating as rhetorical emphasis rather than literal prediction.
文章开篇用作者刷社交媒体时反复看到「界面已死」论调的轶事引入,随即用两组事实落地:Ramp 自身三个月内 MCP 周活跃用户增长 10 倍,以及 Salesforce 宣布的「Headless 360」——把整个平台暴露成 API、MCP 工具和 CLI 命令。这一开场把文章定位为对已经发生的趋势的描述,而非空谈未来,Salesforce 作为最有代表性的传统巨头,为这一判断提供了背书。
作者的核心重构是:界面没有死——人类仍然想要按钮和确认反馈——但二八法则已经反转,80% 的人机交互将经由智能体完成。这是一个断言而非数据推导的结论,却是全文的立论基础。交互模型分三阶段演进:用户→界面→数据库,到用户→智能体→数据库(界面消失),再到用户的智能体→软件自己的智能体→数据库,最终由两个大模型协作,而非人类直接触碰后端。
第一条设计原则「教会智能体如何成功」通过对比展开:Notion 的 MCP 要求智能体写入前必须先获取「增强版 Markdown 规范」资源,从而避免语法幻觉;而 Slack 的 MCP 缺乏这道防线,用户不得不手动修正智能体生成的格式。教训是:曾经写在开发者文档里的产品特定假设,现在必须在智能体真正需要的那一刻主动推送给它,而不是指望它靠通用训练数据去猜测。
第二条原则「建立反馈循环」描述了 Ramp 在发现「仅有调用量数据毫无意义」后采用的三种机制:每次调用必填的 rationale(理由)参数(在看不到聊天内容的情况下重建意图)、供智能体上报阻塞的专用反馈工具,以及在特定工具中植入的上下文种子参数。文中举例说明:理由日志里反复出现「正在起草事故报告」这类表达,就是新增 build-incident-report 工具的信号——智能体行为由此变成一种结构化、机器可读的产品调研渠道,尽管智能体会产生幻觉,但其反馈往往比典型人类用户更具体、更一致。
第三条原则「留意上下文缺口」用 Diego 报销案例说明:用户侧智能体和系统侧智能体各自掌握不对称的信息(日历、邮件、Slack 上下文 vs. 交易数据、报销政策、总账科目)。作者给出的处方是:传统 API 会把裸选项抛回给用户(「从 150 个总账科目里选一个」),而设计良好的智能体交互应该反过来索要请求方智能体真正答得上来的上下文(「这是一顿客户晚餐吗?」),再由接收方系统用自己的专业知识补全缺口——双方都无需完全理解对方的领域。
结尾警告那种「勾选 MCP 已支持」式的敷衍发布:使用量可能增长几个季度后就停滞,客户会流向真正打磨了智能体体验的产品,而绕开只是走过场的产品。结尾那句略带挑衅的「最后签支票的可能就是它」,把智能体从一个功能勾选项重新定位为产品团队真正要服务的「客户」,这更像是修辞强调而非字面预测,值得读者带着批判眼光看待。
FAQ常见问答
Is the author claiming traditional UIs will disappear entirely?作者是否在说传统界面会彻底消失?
No — he explicitly says UI isn't dying because humans still want to click buttons and verify outcomes. His claim is narrower: the 80/20 split of interaction volume has flipped toward agents, not that UI becomes obsolete.
没有——作者明确说界面没有死,因为人类仍想点按钮、确认结果。他的论断更窄:交互量的二八法则已经反转向智能体一侧,并非说界面会被淘汰。
How is the Notion vs. Slack MCP comparison actually evidence, not anecdote?Notion 与 Slack MCP 的对比只是轶事还是真的能算证据?
It's a single first-person anecdote, not a systematic study — the author doesn't cite adoption or error-rate data for either MCP. Treat it as an illustrative case, not a benchmarked comparison.
这本质上是作者第一人称的单一体验,并非系统研究——文中没有给出两者的采用率或出错率数据,应当把它当作示例而非有基准对比的实证。
Does the rationale-field mechanism raise privacy or gaming concerns?要求填写 rationale 会不会有隐私或被「刷理由」的风险?
The piece doesn't address this. Rationale strings could leak sensitive business context into logs, and agents (or users prompting them) could game rationale text to influence roadmap prioritization — worth scrutiny before adopting.
文章没有讨论这一点。理由字段可能把敏感业务信息写进日志,智能体(或引导它的用户)也可能通过刻意措辞的理由来影响产品路线图优先级——采用前值得审视。
Is the GL-code expense example a solved problem or aspirational design?报销 GL 科目那个例子是已经实现的方案,还是理想化设想?
It reads as an illustrative, somewhat idealized scenario rather than a shipped Ramp feature description — the piece doesn't confirm this exact agent-to-agent exchange is in production.
这更像是一个带有理想化色彩的示例场景,而非已上线的 Ramp 功能描述——文中并未确认这套智能体对智能体的交互已经投入生产环境。
Why does Salesforce's move matter more than a startup doing the same thing?为什么 Salesforce 的这一步比初创公司做同样的事更有意义?
Because Salesforce's moat was historically UX familiarity and switching-cost inertia across 27 years — its willingness to concede that moat is eroding is a stronger signal of industry-wide shift than a young company with nothing to lose.
因为 Salesforce 27 年来的护城河正是界面的熟悉感和迁移成本带来的用户粘性——它主动承认这条护城河正在被侵蚀,比一家本就没什么可失去的初创公司做同样的事,更能说明行业性转折已经发生。
In-depth Analysis · Pros & Cons深入解读 · 优缺点
This piece traces Ramp's product lead reasoning about why Salesforce's 'headless 360' pivot signals a structural shift in software design. It moves from a market observation to three concrete design principles for building products that AI agents — not just humans — will operate.
这篇文章从 Salesforce「无头化」的架构大转型说起,剖析了软件产品设计正在发生的结构性转变。作者由市场现象出发,提炼出三条为 AI 智能体(而不只是人类用户)设计产品时应遵循的具体原则。
- Concrete design mechanisms给出具体可操作的设计机制Rather than staying at the level of trend commentary, the piece offers reusable mechanisms — spec-fetch-before-write, mandatory rationale fields, dedicated feedback tools — that any team building an MCP server can directly adopt.文章没有停留在趋势评论层面,而是给出可直接复用的机制——写入前先取规范、强制理由字段、专用反馈工具——任何搭建 MCP 服务的团队都能照搬。
- Real production signal来自真实生产环境的信号The 10x MCP usage growth and the Notion/Slack comparison come from the author's own operational experience at Ramp, giving the argument grounding beyond pure speculation.10 倍 MCP 使用量增长、Notion 与 Slack 的对比都来自作者在 Ramp 的一手运营经验,为论证提供了超越纯粹思辨的落地依据。
- Clean conceptual model交互模型的三阶段梳理清晰The three-stage progression from user-UI-database to agent-to-agent collaboration gives readers a compact mental model for reasoning about where their own product sits on this transition.从「用户-界面-数据库」到智能体对智能体协作的三阶段演进,为读者提供了一个简洁的思维模型,便于判断自家产品处在转型的哪个阶段。
- Context-gap framing is broadly transferable上下文缺口的框架具有普适性The principle of identifying which party holds which context, illustrated via the expense-report case, generalizes well beyond fintech to any agent-to-agent handoff design problem.通过报销案例阐释的「厘清哪一方掌握哪部分上下文」原则,具有很强的普适性,可迁移到金融科技之外几乎所有智能体对智能体的交接设计问题。
- Anecdotal, not measured轶事佐证,缺乏量化The Notion/Slack comparison and the Diego scenario are single illustrative anecdotes without adoption rates, error metrics, or controlled comparisons to back them up.Notion 与 Slack 的对比、Diego 报销案例都是单一示例性轶事,缺乏采用率、出错率或对照实验等数据支撑。
- 80/20 claim unsourced「二八法则反转」缺乏来源The central statistic — 80% of interactions will go through agents — is asserted without citation or methodology, functioning as a rhetorical anchor rather than a verified figure.全文最核心的数字「80% 交互将经由智能体完成」没有引用来源或方法论,更像是修辞锚点而非经过验证的数据。
- Survivorship bias toward believers样本偏向已相信趋势的公司Ramp and Salesforce are both companies that already bet heavily on agent interfaces; the piece doesn't examine companies where agent-first design failed or proved premature.Ramp 与 Salesforce 都是已经重注智能体接口的公司;文章没有考察那些「智能体优先」设计失败或为时过早的反例。
- Rationale-field risks unexamined理由字段的风险未被讨论Requiring agents to submit rationale strings raises unaddressed concerns: potential data leakage into logs and the possibility of rationale text being gamed to steer product prioritization.要求智能体提交理由字段,可能带来敏感信息泄露进日志、理由文本被刻意操纵以影响产品优先级等风险,文章均未涉及。
Worth reading for product and platform teams currently shipping or planning an MCP/API surface — the three principles (teach, feedback loop, context gap) are immediately actionable. Read the 80/20 statistic and the anecdotal evidence as directional signal and rhetorical framing, not as measured fact.
适合正在设计或规划 MCP/API 能力的产品与平台团队阅读——教学、反馈闭环、上下文缺口这三条原则可以立刻落地实践。但文中「二八法则反转」的数字和几个轶事案例,应当被当作方向性信号和修辞强调来读,而非经过测量的确凿事实。
Excerpt原文节选
This is a short excerpt, not the full piece — the complete essay belongs to its original author; please read it in full at the link above.
以下仅为节选,并非全文——完整文章版权归原作者所有,请点击上方链接阅读全文。
The English text on this side is an AI translation provided for convenience; the authoritative version is the source in the other language.
If, like me, you spend a lot of time scrolling through the same information circles on X, you've probably seen this claim: the user interface is dead.
You'll scroll past "How I built a second brain with Obsidian" one moment, then "Anthropic just killed such-and-such industry" the next. And soon after, you'll see someone declare: if a product can't be used by an AI agent — via MCP, an API, a CLI, or something in between — it won't survive.
This trend is already obvious at Ramp. Over the past three months, as more and more customers have started accessing our product through Claude, ChatGPT, and other AI agents, weekly active users on our MCP have grown tenfold. (MCP, the Model Context Protocol, can be understood as a standard way for AI agents to call external tools and data.)
Last week, Salesforce became one of the first traditional software giants to openly embrace this view.
[…the source continues — read the rest at the link above]
[……原文更长,完整内容请点击上方链接阅读]
Design products for AI agents as seriously as you once designed for human users. Because you may soon find that it's the agent that ends up signing the check.
如果你和我一样,经常混在 X 上同一个信息圈里刷动态,那么你大概也见过这种说法:用户界面已经死了。
你会一边刷到“我如何用 Obsidian 搭建第二大脑”,一边刷到“Anthropic 彻底杀死了某某行业”这类帖子。然后很快,你就会看到有人说:一个产品如果不能被 AI 智能体(AI Agent)通过 MCP、API、CLI,或者介于它们之间的方式使用,那它就活不下去。
这个趋势在 Ramp 已经很明显。过去三个月里,随着越来越多客户开始通过 Claude、ChatGPT 和其他 AI 智能体进入我们的产品,我们 MCP 上的每周活跃用户增长了 10 倍。 (MCP,Model Context Protocol,模型上下文协议,可以理解为一种让 AI 智能体调用外部工具和数据的标准方式。)
上周,Salesforce 成了最早主动拥抱这个判断的传统软件巨头之一。
来自 https://venturebeat.com/ai/salesforce-launches-headless-360-to-turn-its-entire-platform-into-infrastructure-for-ai-agents :
https://www.salesforce.com/ 周三宣布了这家公司 27 年历史上最激进的一次架构转型,推出了“ https://www.salesforce.com/news/stories/salesforce-headless-360-announcement/”——这是一项覆盖整个平台的大计划:把平台里的每一项能力都暴露成 API、MCP 工具或 CLI 命令,让 AI 智能体可以在完全不打开浏览器的情况下操作整个系统。
这项发布是在 Salesforce 于旧金山举办的年度 https://www.salesforce.com/tdx/ 大会上宣布的,并且立刻向开发者开放了 100 多个新工具和技能。它也正面回应了一个悬在企业软件头顶的生死问题:当 AI 智能体已经能够推理、规划和执行时,一家公司还需要一个带图形界面的 CRM 吗?
[…the source continues — read the rest at the link above]
[……原文更长,完整内容请点击上方链接阅读]
像当初为人类用户设计产品一样,认真为 AI 智能体设计产品。因为你很快就会发现,最后签支票的,可能正是它。