
structure|1️⃣ 三级笔记、思想框架
Notion 官方总结的 Custom Agent 最佳实践:一个可靠的 Agent = 明确的目标 + 最小化的上下文 + 清晰的完成定义 + 持续的迭代调试。核心思想是——先做减法,再做加法。
Run 按钮手动执行,确认行为符合预期三个影响效率的因素:运行频率 × 读取内容量 × 完成任务的步骤数
concepts|2️⃣ 关键概念、概念网络
context:
Custom Agents run on Notion credits because they work autonomously in the background, whether you're online or not.
费曼一下:Notion 平台上的自定义 AI 助手,与内置的 Notion Agent 不同,Custom Agent 能在后台自主运行、响应触发器、按时间表执行任务,是为重复性自动化工作设计的。消耗 credits 而非免费。
context:
Define “done” upfront. Tell your agent exactly what a complete run looks like. The cleaner the instructions, the faster it gets to the result.
费曼一下:在给 agent 写指令时,明确告诉它「一次完整运行的结果是什么样」。这个概念借自敏捷开发,在 agent 语境下意味着:不要只列步骤,要描述最终产出的样子。指令越清晰,agent 越快完成,消耗越少。
context:
Choose a trigger when the task should run in response to something happening. Examples include a bug filed in Slack, a new page added to a database, or an email from a specific sender.
费曼一下:事件驱动的运行机制——某件事发生时自动启动 agent。关键是选择「高信号触发器」(high-signal triggers):触发特定 @mention 或特定属性变更,而非所有消息或每次数据库更新。触发越精准,无效运行越少。
context:
Choose a schedule when the task should run at a set cadence, regardless of activity. Ideal for recurring work like weekly reports, daily briefs, or monthly summaries.
费曼一下:时间驱动的运行机制——不管有没有事件发生,按固定节奏执行。适合周报、日报等可预测的重复性工作。与 trigger 可以组合使用。
context:
Point the agent to the smallest possible scope. Ideally a single page or a few pages that link to sub-pages the agent can load only if needed. Avoid asking the agent to search broadly if you already know which database or page it should use as the source of truth.
费曼一下:agent 每次运行时能读取的内容范围。文章的核心主张是「越小越好」:指向尽可能小的范围,让 agent 只读它必须读的内容。范围越紧,每次运行越聚焦、越快、越省 credit。
context:
It’s more efficient if the agent calls multiple tools at the same time. Encourage parallel tool use in your instructions when possible.
费曼一下:让 agent 同时执行多个独立操作,而非逐个串行。比如同时读取三个不相关的数据源,而非先读第一个再读第二个。但有依赖关系的步骤必须串行(如先创建页面再发链接)。这是减少步骤数、提升效率的关键策略。
agentic reading|3️⃣ 费曼 x3