claude-codex-code-review 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -52,6 +52,8 @@ max_fix_rounds: 2
|
|
|
52
52
|
auto_fix_severities: [P0]
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
+
To customize, create `.codex-review.yml` in the project root, or pass command-line arguments to the script.
|
|
56
|
+
|
|
55
57
|
Configuration meanings:
|
|
56
58
|
|
|
57
59
|
- `mode: ask` — always ask before fixing.
|
|
@@ -59,13 +61,24 @@ Configuration meanings:
|
|
|
59
61
|
- `mode: severity` — only auto-fix findings matching `auto_fix_severities`; ask for all others.
|
|
60
62
|
- `max_fix_rounds` — limits automatic review/fix loops.
|
|
61
63
|
|
|
62
|
-
The script also accepts command-line options:
|
|
64
|
+
The script also accepts command-line options. IMPORTANT: each option and its value must be passed as separate arguments, not as a single string.
|
|
65
|
+
|
|
66
|
+
Correct:
|
|
67
|
+
```bash
|
|
68
|
+
~/.codex/skills/claude-review/claude-review.sh --mode severity --auto-fix-severities P0,P1
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Wrong (do NOT do this):
|
|
72
|
+
```bash
|
|
73
|
+
~/.codex/skills/claude-review/claude-review.sh "--mode severity --auto-fix-severities P0,P1"
|
|
74
|
+
```
|
|
63
75
|
|
|
76
|
+
Available options:
|
|
64
77
|
```
|
|
65
78
|
--mode ask|auto|severity
|
|
66
79
|
--review-scope uncommitted
|
|
67
|
-
--max-fix-rounds
|
|
68
|
-
--auto-fix-severities P0,P1
|
|
80
|
+
--max-fix-rounds <number>
|
|
81
|
+
--auto-fix-severities <comma-separated list, e.g. P0,P1>
|
|
69
82
|
```
|
|
70
83
|
|
|
71
84
|
## Dependencies
|