정의
Manager stop condition은 self-correcting AI loop에서 Manager가 더 이상 자동 수정 루프를 돌리지 않고 완료, human escalation, 중단을 결정하는 hard logic이다.
구성 요소
- Maximum iteration count: 예를 들어 3회 실패 후 4번째 cycle을 자동 실행하지 않는다.
- Measurable quality threshold: “good enough”가 아니라 checklist pass, test pass, required sections 충족처럼 검증 가능한 기준을 둔다.
- Cost or time ceiling: token, 비용, 실행 시간 상한을 넘으면 현재 상태와 남은 작업을 보고하고 중단한다.
설계 원칙
- stop condition은 prompt 안의 부드러운 지시가 아니라 orchestrator logic이어야 한다.
- Judge가 같은 실패를 반복하면 Manager는 같은 feedback을 다시 보내는 대신 escalation해야 한다.
- 성공 로그만 보지 말고 stop condition trigger 자체를 관찰해야 loop calibration이 가능하다.
연결
- 20260718-ground-truth-based-ai-judge — Judge의 verdict가 Manager routing의 입력
- 20260718-self-correcting-ai-loop-architecture — loop의 전체 역할 구조