Files
myWiki/concepts/loop-maturity-levels.md

49 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Loop Maturity Levels循环成熟度"
created: 2026-06-29
updated: 2026-06-29
type: concept
tags: [loop-engineering, maturity, agent]
sources: [[prompt-to-loop-engineering-2026]]
confidence: high
---
# Loop Maturity Levels
> [[loop-engineering|Loop Engineering]] 中自主循环系统的三级成熟度划分。
## 三级模型
### L1: Open Loop开环
- 模型自行判断并输出 `done` 即告结束
- 没有外部验证机制
- **适用场景**Demo 演示
- **风险**:输出可能未通过任何质量检查
### L2: Closed Loop闭环
- 每轮执行必须强制通过**单元测试**、**Lint 检查**或**自动化 Review**
- 不合格 → 错误回灌 → 模型修复 → 重新验证
- **达到生产级交付标准**
- 核心流水线AI 编码 → 沙箱测试 → 日志回灌 → AI 修复 → CI 绿标
### L3: Review Loop评审环
- 后台常驻的**异步审查 Agent** 在新鲜上下文中提供持续反馈
- Maker 和 Verifier 由**不同 Agent** 承担(研发与审计分离)
- **解决长会长任务的最优解**
- 避免"自己给自己改作业必然放水"的问题
## 成熟度跃迁
```
Open Loop ──[+ 单元测试/Lint]──→ Closed Loop ──[+ 异步审查 Agent]──→ Review Loop
```
## 相关概念
- [[loop-engineering|Loop Engineering]]
- [[loop-contract|Loop Contract]]
- [[agent-harness|Agent Harness]]