What are the two primary methods for automating repetitive work on a pull request?	CodeReview (managed) and the Cloud Code GitHub Action (DIY).
What is the core function of CodeReview, an Anthropic-hosted service?	To analyze code diffs against the full codebase and post findings as inline comments.
Does CodeReview automatically approve or block a pull request?	No, the judgment call always remains with the human reviewer.
When should a user utilize the Cloud Code GitHub Action instead of CodeReview?	When the job requires custom CI or workflow implementation that goes beyond simple review.
What are the essential inputs required to configure the Cloud Code GitHub Action?	The Anthropic API key, the GitHub token, and the trigger phrase.
What is the default trigger phrase that the Cloud Code Action listens for in comments?	`at cloud`.
How are fine-tuning parameters, such as setting `max turns` or `allow tools`, configured in the GitHub Action?	They are set within the `cloud args` line of the workflow.
What command is used locally to apply findings generated by a CodeReview analysis?	The `/code review --fix` command in the terminal.
