review-pr

Installation
SKILL.md

PR Review Workflow

This repo has chatgpt-codex-connector[bot] configured as an automated reviewer. After every push to a PR branch, Codex reviews the diff and either:

  • Reacts with a thumbs-up on its review body (no suggestions — PR is clean)
  • Posts inline comments with suggestions (each tagged with a priority badge)

Checking review status

After pushing, check whether Codex has reviewed the latest commit:

# Get the latest commit SHA on the branch
LATEST=$(git rev-parse HEAD)

# Check if Codex has reviewed that specific commit
gh api repos/PrefectHQ/fastmcp/pulls/{PR_NUMBER}/reviews \
  | jq "[.[] | select(.user.login == \"chatgpt-codex-connector[bot]\" and .commit_id == \"$LATEST\")] | length"
Installs
1
Repository
jlowin/fastmcp
GitHub Stars
25.9K
First Seen
Jun 2, 2026
review-pr — jlowin/fastmcp