From c74fc9e17f153bddaa8807bca33ff00294ad8ec8 Mon Sep 17 00:00:00 2001 From: Pierre Brisorgueil Date: Fri, 20 Mar 2026 18:36:48 +0100 Subject: [PATCH] chore(skills): unify PR monitor loop stop condition to 3 consecutive clean passes --- .claude/skills/pull-request/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/skills/pull-request/SKILL.md b/.claude/skills/pull-request/SKILL.md index 555a54b7b..a103d704e 100644 --- a/.claude/skills/pull-request/SKILL.md +++ b/.claude/skills/pull-request/SKILL.md @@ -135,7 +135,7 @@ REPEAT: 6. If actionable comments → fix all, /verify, commit, push, reply, resolve, consecutive_zero=0, GOTO 1 7. If non-actionable unresolved → reply all explaining why, resolve all, consecutive_zero=0, GOTO 5 8. If zero unresolved threads → consecutive_zero++ - if consecutive_zero >= 2 → check branch protection (see 6f), then STOP ✓ + if consecutive_zero >= 3 → check branch protection (see 6f), then STOP ✓ else GOTO 3 ```