> ## Documentation Index
> Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Review skill

> Use the review skill to inspect branch changes before merge or release.

Use `review` when you want Agent to find bugs, regressions, missing tests, or release risks.

## When to use it

| Use `review` for              | Use another skill for       |
| ----------------------------- | --------------------------- |
| Branch reviews                | Implementing a known change |
| Security or regression checks | Debugging a live failure    |
| Test coverage gaps            | Planning broad work         |

## What to provide

| Input        | Example                                             |
| ------------ | --------------------------------------------------- |
| Target       | Review the current branch against `main`.           |
| Focus        | Prioritize bugs, security risks, and missing tests. |
| Standard     | Findings first, with file and line references.      |
| Verification | Run or recommend the relevant checks.               |

## Example request

```text theme={null}
/review Review the current branch against main.
Prioritize bugs, regressions, security risks, and missing tests.
List findings first with file and line references.
```

## Expected output

Agent lists findings by severity, explains the risk, and includes verification gaps.

## Related

| Page                               | Use it to                       |
| ---------------------------------- | ------------------------------- |
| [Build skill](/agent/skills/build) | Fix confirmed findings.         |
| [Debug skill](/agent/skills/debug) | Investigate a specific failure. |
