该综述论文将基于大模型的Agent抽象为感知、大脑、行动三大部分
在Agent四个核心组件中,大模型和记忆体相对成熟,而规划能力和工具远未成熟
在Agent自动执行多步任务的场景下,一个环节的崩溃可能导致整个工作流失败甚至连锁错误操作
帖子作者认为派出5个以上Agent处理不同任务的人只是在批量生产垃圾(slop),会导致Bug、功能回归和合并冲突
多个Agent之间缺乏有效的协调机制,各自基于启动时的代码库快照工作,对其他Agent的并发修改毫无感知
当前技术成熟度下,完全取消 Agent 的人工审批仍被认为是高风险做法
Chain 的执行路径是预先确定的,比 Agent 的自主决策更可预测、更适合生产环境中对稳定性要求高的场景
与Agent相比,Chain的执行路径更确定、成本更可控,因为Chain流程预先定义而Agent每步需大模型参与决策
帖子作者认为派出5个以上Agent处理不同任务的人只是在批量生产垃圾(slop)
文章建议AI编程工具应给予用户在Agent优先和代码优先两种工作流之间自由切换的选择权
还有 40 条时间轴事件
一个典型的Agent架构包含大模型核心、工具集、记忆系统和规划模块四个核心组件
80%已验证AI Agent通常采用ReAct(Reasoning + Acting)模式,在推理和行动之间循环迭代
80%已验证AI Agent与传统聊天AI的根本区别在于具备感知-决策-行动的闭环能力,采用ReAct(Reasoning + Acting)框架
80%已验证AI Agent是一种能够自主感知环境、做出决策并执行操作的人工智能系统,与传统AI聊天机器人不同,它具有目标导向性、自主规划能力和调用外部工具的能力
80%已验证研究界提出了「最小权限原则」、「人在回路」(Human-in-the-Loop)审批机制和沙箱隔离执行环境等方案来缓解AI Agent安全风险
75%已验证An AI Agent is an AI system capable of autonomously perceiving its environment, making decisions, and executing actions
65%已验证An AI Agent is an intelligent system that can perceive its environment, make autonomous decisions, and execute actions to achieve goals
65%已验证A complete AI Agent typically includes a perception module, a reasoning module based on large language models, and an execution module for calling APIs or operating interfaces.
65%待验证Agents produce execution traces including each step's reasoning process, tool calls, intermediate results, and final outputs
90%待验证AI coding assistants are evolving from autocomplete helpers to Agent-style autonomous feature builders that can plan file structures, write multiple functions, handle dependencies, and run tests to fix errors
85%待验证In the Agent context, a trace records the complete call chain from user input to final output, including LLM inference calls, function/tool calls, retrieval operations, and intermediate state changes
85%待验证Mainstream Agent architectures typically use a large language model as the brain, combined with memory modules, planning modules, and tool interfaces to accomplish complex tasks
85%待验证Traditional print-based logging mechanisms are insufficient for AI Agents because agent execution involves multiple rounds of reasoning, tool calls, state passing, and conditional branching
80%待验证The core pain point in Agent development is that when an Agent execution fails, the hardest question to answer is how it got there step by step rather than what output it produced
75%待验证AI amplifies code output without simultaneously amplifying review capacity, creating a structural contradiction in development workflows
75%待验证AI Agents tend to handle the happy path and often miss boundary and exception handling such as null handling, race conditions, and integer overflow
75%待验证The development bottleneck is shifting from writing code to reviewing code in the AI Agent era
75%待验证In payment scenarios, AI Agents may complete transactions in milliseconds without human intervention, placing new demands on payment systems for programmatic invocation, real-time authorization, micropayments, and machine-to-machine (M2M) authentication
75%待验证AI Agents perform well on tasks with strong determinism and clear rules (such as scheduled email sending and automated data processing)
75%待验证Tool calls are where Agent execution most often goes wrong, as modern Agents rely on numerous external tools like search, code execution, and API calls
70%