Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review infoConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughConfiguration adjustments to the Claude Code Review workflow and a minor documentation text update. The workflow now limits agent turns to 10 (from 80), removes a PATH override, adds clarifying comments about sandboxing, and specifies PR comment title format. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~5 minutes Possibly related PRs
Suggested labels
Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Updated Claude Code Review workflow to modify max turns and comment behavior.
There was a problem hiding this comment.
Pull request overview
This PR makes small documentation and CI workflow adjustments related to the Claude Code Review tooling.
Changes:
- Updates the
./mfc.sh paramshelp text inCLAUDE.mdto remove the approximation marker. - Simplifies the Claude code review GitHub Actions workflow by removing a PATH override and reducing
--max-turns, and tweaks the in-workflow prompt text.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
CLAUDE.md |
Updates CLI usage documentation for the params command. |
.github/workflows/claude-code-review.yml |
Adjusts Claude Code Review action configuration and prompt instructions. |
| # Other | ||
| ./mfc.sh validate case.py # Validate case file without running | ||
| ./mfc.sh params <query> # Search ~3,400 case parameters | ||
| ./mfc.sh params <query> # Search 3,400 case parameters |
There was a problem hiding this comment.
./mfc.sh params line now says "Search 3,400 case parameters" (exact), but later in the same doc the source-of-truth count is described as "~3,400". Consider keeping these consistent (either both approximate or both exact) to avoid the doc getting stale as the parameter count changes.
| ./mfc.sh params <query> # Search 3,400 case parameters | |
| ./mfc.sh params <query> # Search ~3,400 case parameters |
| plugins: "code-review@claude-code-plugins" | ||
|
|
||
| # NOTE: do NOT use --dangerouslyDisableSandbox (it can crash the CLI). | ||
| # This flag is for non-interactive CI runs (bypasses approval prompts). |
There was a problem hiding this comment.
The comment above claude_args says "This flag is for non-interactive CI runs (bypasses approval prompts)", but the flag being warned about there is --dangerouslyDisableSandbox (which is not being used). The approval-prompt bypass behavior belongs to --dangerously-skip-permissions; please reword/move the comment so it's unambiguous which flag it refers to.
| # This flag is for non-interactive CI runs (bypasses approval prompts). | |
| # The --dangerously-skip-permissions flag is for non-interactive CI runs (bypasses approval prompts). |
test pr
Summary by CodeRabbit
Chores
Documentation