Module 06

架构

好的 Loop 架构把职责分开:调度启动,技能发现,状态保存,生成者产出,验证者说不,人工门决定是否进入下一步。

Loop Engineering 架构小房间
图示:小旅人点亮人工门旁的小灯。架构的核心不是自动化本身,而是让审查点始终可见。
中文

最小数据流

Scheduler 调用 skill;skill 读取来源和上次状态;发现写入 triage;不确定项进入 inbox;generator 在稳定发现之后起草;evaluator 用证据检查;human review 决定下一步。

English

Minimal Data Flow

The scheduler invokes a skill. The skill reads sources and previous state. Findings go to triage. Uncertain items go to inbox. The generator drafts only after discovery is stable. The evaluator checks with evidence. Human review decides what moves forward.

组件职责边界
Scheduler启动 loop不放业务逻辑
Discovery Skill发现任务跳过噪音和重复项
State Files保存跨轮事实可读、可 diff
Generator起草输出不批准自己
Evaluator验证并拒绝行动式验证
Human Review决定是否推进永久人工门

记住:自动化不应该擦掉判断;架构要让人随时能走进去看、停下来改。