git:20260601.78c5566 to git:20260601.050794c
2 added, 2 removed. Audit A to A.
- # AGENTS.md — River Reviewer integration
+ # AGENTS.md — River Review integration
## Code review
- Before finalizing any code change, run River Reviewer to catch issues:
+ Before finalizing any code change, run River Review to catch issues:
```bash
river run . --reviewers auto
```
If the `ANTHROPIC_API_KEY` environment variable is not set, use dry-run mode:
```bash
river run . --dry-run
```
## When to invoke
- After implementing a feature or fix, before committing.
- When the user explicitly requests a review.
- Before opening or updating a pull request.
## Interpreting results
| Severity | Action |
| -------- | ------------------------------------------ |
| Critical | Must fix before merging. Report to user. |
| Major | Should fix before merging. Report to user. |
| Minor | Advisory. Surface to user; does not block. |
| Info | Informational only. |
Output in JSON for programmatic use:
```bash
river run . --reviewers auto --output json
```