Module 03

五个动作

一个 loop 的一轮不是空转,而是发现、交接、验证、记住、再来。Scheduling 把一次运行变成下一轮。

五个动作循环图
图示:验证站点可以说“不通过就停下”。这就是 loop 不变成自我点头机器的关键。
动作中文解释English
Discovery发现这一轮值得做什么。Find what is worth doing this turn.
Handoff把任务隔离交给执行者。Hand off the task with clear boundaries.
Verification用独立检查说“不”。Install an independent check that can reject.
Persistence把状态写到聊天窗口之外。Persist state outside the chat window.
Scheduling让下一轮自动发生。Make the next turn happen.
中文

判断标准

如果一个系统不能自己发现下一步、不能保存状态、没有独立验证、也不会再次启动,它只是一次运行,不是 loop。

English

Test

If a system cannot discover the next step, persist state, verify independently, and start again, it is one run, not a loop.

记住:五个动作缺一个,就会退化成脚本、批处理或无人看管的 agent。