PR feedback
ZAR’s primary output is feedback on a pull request. Three things can appear, depending on what changed and how you’ve configured ZAR.1. The zar/docs commit status
On every analyzed commit, ZAR posts a commit status with the context name zar/docs. It’s the at-a-glance signal:
| State | Meaning |
|---|---|
success | Docs are in sync, or ZAR opened a docs PR / committed an update. |
pending | Docs need an update and ZAR is batching it (e.g. “Docs need update — N changes detected”). |
failure | ZAR couldn’t proceed — typically a subscription is required, or analysis errored. |
2. A comment on the pull request
When ZAR has something to propose and comments are enabled (comment_enabled, on by default), it posts a comment on the PR. The comment:
- summarizes what changed in the code that affects docs,
- shows the proposed Markdown edits (as diffs),
- links to the docs PR that contains the change.
3. A documentation pull request
The substantive output is a separate docs PR:- It lives on a dedicated branch named
zar-updates/…and targets your base branch. - It contains the minimal Markdown patches Claude proposed.
- ZAR keeps at most one open docs PR per base branch — new suggestions update or supersede the existing one rather than piling up.
- The PR title starts with
docs:and the body explains the change in plain language.
When you’ll see nothing
ZAR stays quiet when:- the change isn’t significant (test-only, config-only, or trivial);
- the docs already match the change;
- the trigger mode is batching the change for later;
- a rate limit has been hit for this PR.
zar/docs status with no comment usually means “docs look fine” — that’s success, not silence-by-error. Check the dashboard run if you want the details.
Large changes
For very large diffs, ZAR analyzes up to its configured file cap and notes in the PR body when it only covered part of the change, so you know to glance at the rest.Next steps
- CI gate — turn the
pendingstatus into a merge blocker. - Auto-commit — skip the docs PR and commit fixes directly.
- Dashboard — see the full timeline behind any PR’s feedback.