| 组件 | 职责 | Supports |
|---|---|---|
| Automations | 定时或事件触发。 | Scheduling |
| Worktrees | 隔离并行任务。 | Handoff |
| Skills | 固化项目知识。 | Discovery |
| Connectors | 连接外部系统。 | Discovery / Persistence |
| Sub-agents | 分离生成和验证。 | Verification |
| Memory | 保存跨轮状态。 | Persistence |
中文
设计原则
调度器只启动,不承载业务逻辑;skill 保存项目知识;state 保存事实;evaluator 负责拒绝。
English
Design Principle
The scheduler starts the loop, but should not hold business logic. Skills hold project knowledge, state files hold facts, and evaluators reject unsafe output.
记住:组件越清楚,越容易验证;职责越混乱,越容易失控。