⚠️ Potential issue | 🔴 Critical
Fix invalid --model argument
The CLI expects a full model identifier (e.g. claude-3.5-sonnet), not the shorthand sonnet. As written, the action will exit with “unknown model” and the workflow will fail. Please switch to a valid model slug.
- claude_args: '--model sonnet --allowed-tools "Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*)"'
+ claude_args: '--model claude-3.5-sonnet --allowed-tools "Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*)"'
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
claude_args: '--model claude-3.5-sonnet --allowed-tools "Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*)"'
Originally posted by @coderabbitai[bot] in #105 (comment)
Fix invalid
--modelargumentThe CLI expects a full model identifier (e.g.
claude-3.5-sonnet), not the shorthandsonnet. As written, the action will exit with “unknown model” and the workflow will fail. Please switch to a valid model slug.📝 Committable suggestion
Originally posted by @coderabbitai[bot] in #105 (comment)