You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Workflow fixes **cannot be verified locally** — the fix is only confirmed once the remote CI re-runs and passes
11
11
12
+
### Review Restraint Policy
13
+
14
+
Before acting on any review comment or suggestion, classify it by importance:
15
+
16
+
| Level | Criteria | Action |
17
+
|-------|----------|--------|
18
+
|**P1 — Must Fix**| Bug, security issue, broken behavior, API contract violation, CI failure | Fix immediately |
19
+
|**P2 — Should Fix**| Correctness risk, meaningful maintainability improvement, clear code smell with real impact | Fix with brief justification |
20
+
|**P3 — Optional**| Style preference, minor naming nitpick, debatable design choice, "could be cleaner" |**Do NOT auto-fix** — surface to user for decision |
21
+
|**P4 — Reject**| Contradicts project conventions, introduces unnecessary complexity, or is factually wrong | Reject with explanation |
22
+
23
+
**Rules:**
24
+
-**Do not implement P3 suggestions automatically.** Note them in the final summary and let the user decide.
25
+
-**Do not add comments to code** unless the comment explains non-obvious logic that is truly necessary. Never add comments just to acknowledge a review suggestion was applied.
26
+
- When in doubt about importance, prefer the lower severity (P3/P4) and defer to the user rather than making the change.
27
+
12
28
## Procedure
13
29
14
30
1.**Locate PR** — get PR number for current branch
@@ -22,12 +38,24 @@ description: Address review comments and CI failures for the current branch's PR
22
38
5. If it **still fails** → fetch new logs (`gh run view <NEW_RUN_ID> --log-failed`) and repeat from step i
0 commit comments