git-ai-review 2.3.0 → 2.3.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/README.md CHANGED
@@ -164,6 +164,7 @@ In each target repository:
164
164
  - `CODEX_BIN`: custom Codex executable path/name.
165
165
  - `COPILOT_BIN`: custom Copilot executable path/name.
166
166
  - `CLAUDE_BIN`: custom Claude executable path/name.
167
+ - `CLAUDE_MAX_TURNS`: max agentic turns for Claude CLI; default `2`.
167
168
  - `COPILOT_REVIEW_MODEL`: default `gpt-5.3-codex`.
168
169
  - `AI_REVIEW_TIMEOUT_MS`: default `300000` (5 min).
169
170
  - `AI_REVIEW_PREFLIGHT_TIMEOUT_SEC`: default `8`.
package/dist/review.js CHANGED
@@ -287,7 +287,6 @@ async function runClaude(prompt, verbose, skipPreflight = false) {
287
287
  '--print',
288
288
  '--output-format', 'json',
289
289
  '--no-session-persistence',
290
- '--max-turns', '1',
291
290
  '--allowedTools', '',
292
291
  ];
293
292
  if (verbose) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-ai-review",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "Review your git diff with local Codex CLI, Copilot CLI, or Claude CLI — run manually in one command or automatically as a git hook",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",