github-pr-reviewer is an agentsfleet Fleet
Bundle. It reviews GitHub pull requests and posts focused review comments.
The fleet checks changes for correctness bugs, security risks, and missing tests. It can read pull request data and post comments. It cannot push, merge, approve, or close a pull request.
| File | Purpose |
|---|---|
SKILL.md |
Defines the review goal, steps, and safety limits. |
TRIGGER.md |
Declares the GitHub event, tool, credential, network, and budget policy. |
Both files use github-pr-reviewer as the bundle name. agentsfleet rejects a
bundle when these names differ.
You need Node.js 24 or later. You also need an agentsfleet account and a
GitHub repository that you can manage.
Create a GitHub token that can read the repository and post comments. Create a random webhook secret with at least 32 characters.
-
Install the
agentsfleetcommand-line interface (CLI).npm install --global @agentsfleet/cli
added <varies> packages in <varies> -
Sign in through your browser.
agentsfleet login
Login session session_id: <varies> login_url: <varies> browser: opened login complete -
Save the GitHub token and webhook secret in your active workspace.
Replace
<GITHUB_TOKEN>and<GITHUB_WEBHOOK_SECRET>with the values you created above.agentsfleet secret create github --data='{"token":"<GITHUB_TOKEN>","webhook_secret":"<GITHUB_WEBHOOK_SECRET>"}'✓ Secret 'github' stored in vault. -
Install the fleet from the platform library.
agentsfleet install --library github-pr-reviewer
✓ github-pr-reviewer is live. Fleet ID: <varies> Webhook URLs (register on the upstream provider): github: <varies> -
Open Repository settings → Webhooks → Add webhook in GitHub.
Use the GitHub URL from step 4 as the payload URL. Choose
application/json, enter the secret from step 3, and select Pull requests as the event.
Open a pull request in the connected repository. GitHub sends the event after you open the pull request.
Replace <FLEET_ID> with the identifier from the install output.
agentsfleet logs <FLEET_ID>Event Stream
<varies> webhook:github <varies>
The event stream should show a GitHub event. The pull request should contain the fleet's review comments.
This repository owns only the github-pr-reviewer Fleet Bundle.
agentsfleet/platform-opsowns theplatform-opsFleet Bundle.agentsfleet/skillsowns host-side skills, including/agentsfleet-install-platform-ops.
An installation skill teaches Claude Code, Codex CLI, Amp, or another host how
to install a fleet. It is not part of the fleet that runs inside agentsfleet.
MIT. See LICENSE.