Address PR review comments. Use when the user says \"check comments\", \"address comments\", \"fix PR feedback\", or similar.
Scanned 9/20/2026
Install to Claude Code
npx -y skills add ayunis-core/ayunis-core --skill pr-review-comments --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pr Review Comments?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ayunis-core-pr-review-comments)More formats (shields.io, HTML) on the badges page.
---
name: pr-review-comments
description: "Address PR review comments. Use when the user says \"check comments\", \"address comments\", \"fix PR feedback\", or similar."
---
# PR Review Comments
## Context
- GitHub user: **devbydaniel**
- Relevant comment authors: `devbydaniel`, `cursor[bot]` (Bugbot)
- Ignore automated/bot comments: Graphite stack comments, `github-actions` size warnings
## Fetching Comments
PR comments live in two separate API resources. Fetch both:
```bash
# 1. PR conversation comments (rare for review feedback, but check)
gh pr view <number> --json comments --jq \
'.comments[] | select(.author.login == "devbydaniel" or .author.login == "cursor[bot]") | "--- \(.author.login) at \(.createdAt) ---\n\(.body)\n"'
# 2. Inline review comments (where most feedback lives)
gh api repos/{owner}/{repo}/pulls/<number>/comments --jq \
'.[] | select(.user.login == "devbydaniel" or .user.login == "cursor[bot]") | "--- \(.user.login) at \(.created_at) on \(.path):\(.line // .original_line) ---\n\(.body)\n"'
```
The `{owner}/{repo}` can be read from `gh repo view --json nameWithOwner --jq .nameWithOwner`.
## Finding the PR
If no PR number is given, use the current branch:
```bash
gh pr view --json number --jq .number
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!