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
Copy file name to clipboardExpand all lines: .coderabbit.yaml
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,12 @@ early_access: false
4
4
tone_instructions: "Only comment on issues introduced by this PR's changes. Do not flag pre-existing problems in moved, re-indented, or reformatted code."
5
5
6
6
reviews:
7
-
profile: "chill"
8
-
request_changes_workflow: false
7
+
profile: "assertive"
8
+
request_changes_workflow: true
9
9
high_level_summary: false
10
10
poem: false
11
11
review_status: false
12
-
review_details: false
12
+
review_details: true
13
13
commit_status: true
14
14
collapse_walkthrough: true
15
15
changed_files_summary: false
@@ -39,6 +39,14 @@ reviews:
39
39
- path: "**"
40
40
instructions: |
41
41
IMPORTANT: Only comment on issues directly introduced by this PR's code changes.
42
+
Treat AGENTS.md as mandatory repository policy, not optional style guidance.
43
+
Flag PR changes that violate AGENTS.md even when the code is otherwise functional.
44
+
In particular, enforce architecture boundaries, dtype/device/memory rules,
45
+
interface contracts, import style, no unnecessary try/except blocks, no inline
46
+
imports, no outbound internet paths in core ComfyUI, and narrow scoped fixes.
47
+
Prefer direct findings over suggestions when a rule is violated. Only ignore
48
+
AGENTS.md when it clearly conflicts with a newer explicit maintainer instruction
49
+
in the PR.
42
50
Do NOT flag pre-existing issues in code that was merely moved, re-indented,
43
51
de-indented, or reformatted without logic changes. If code appears in the diff
44
52
only due to whitespace or structural reformatting (e.g., removing a `with:` block),
0 commit comments