Review Follow-up Skill
Use this skill when the user says a PR review has been done and asks to process reviewer comments.
Goal
Process GitHub PR review comments end-to-end:
- •fetch review threads/comments,
- •assess validity,
- •implement fixes when appropriate,
- •push changes,
- •resolve addressed threads.
Workflow
- •Identify current branch and linked open PR.
- •Fetch review threads with:
- •
python3 /Users/g1lom/.codex/skills/gh-address-comments/scripts/fetch_comments.py
- •
- •Build a short numbered list of threads with:
- •issue summary,
- •validity assessment (
valid,partially valid,not needed), - •intended action.
- •Apply code/test/documentation fixes for valid items.
- •Run quality gates:
- •
uv run ruff check . - •
uv run ty check src tests - •
uv run pytest -m unit - •
uv run pytest -m integration - •
uv run pytest -m end2end
- •
- •Commit and push.
- •Resolve threads for addressed comments via GraphQL mutation
resolveReviewThread. - •Report what was fixed and which threads were resolved.
Thread resolution note
Only resolve a thread when:
- •code or docs were actually updated to address it, or
- •a clear rationale is provided in PR discussion for rejecting it.