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

# AI chat and feedback

> Ask codebase questions and act on immediate, codebase-aware pull request feedback.

Autter provides conversational codebase help and actionable feedback inside the review workflow.

## Pull request feedback

When Autter finds a problem, the comment should explain:

* what behavior is affected
* why the behavior is risky or inconsistent
* which repository context supports the finding
* how the author can fix or investigate it

<Frame caption="Placeholder: replace with an approved AI feedback screenshot.">
  <img src="https://mintcdn.com/autter/ZqVSJE8MeDV-Tn7Q/images/placeholders/review-comment.svg?fit=max&auto=format&n=ZqVSJE8MeDV-Tn7Q&q=85&s=2e8beda19006f0122836004d1fce28b1" alt="Placeholder showing an Autter pull request comment with codebase context and a proposed fix" width="1200" height="620" data-path="images/placeholders/review-comment.svg" />
</Frame>

## Codebase questions

Use AI chat to ask about complex logic, architecture, repository patterns, or a proposed change. Useful questions include:

* Where is authorization enforced for this route?
* Which services call this module?
* What pattern does this repository use for retries?
* Why does this pull request change the cache invalidation path?
* Which tests cover the failure mode in this finding?

Ask focused questions and name the relevant module or behavior. Specific questions make it easier to verify the answer against code.

## Suggested fixes

Autter can propose concrete fixes for review findings. Before applying one:

1. Confirm it addresses the reported behavior.
2. Check that it follows repository conventions.
3. Run the relevant tests and static checks.
4. Review the final diff for unrelated changes.

<Warning>
  A suggested fix is generated code. Treat it as a proposal, not as a verified patch.
</Warning>

## Improve the feedback

* write narrow, testable [review rules](/configuration/rules)
* connect relevant issues and documentation
* keep pull requests focused
* use thumbs feedback where available to help calibrate results
* revise rules that repeatedly flag valid code
