google / fetch-pr-comments
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/fetch-pr-comments && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2814" && unzip -o skill.zip -d .claude/skills/fetch-pr-comments && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/fetch-pr-comments/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Fetches comments and reviews from the current GitHub Pull Request and formats them as Markdown.
0 views
0 installs
Skill Content
--- name: Fetch PR Comments description: Fetches comments and reviews from the current GitHub Pull Request and formats them as Markdown. --- # Fetch PR Comments This skill allows you to retrieve comments and reviews from the current GitHub Pull Request (PR) associated with the active branch, or a specific PR by number/URL. It converts the data into a readable Markdown format, including code review comments with file and line context. ## Usage To use this skill, run the provided Python script. It requires the GitHub CLI (`gh`) to be installed and authenticated. ### Command ```bash # Fetch comments for the current branch's PR python3 .agent/skills/fetch_pr_comments/scripts/fetch_comments.py # Fetch comments for a specific PR python3 .agent/skills/fetch_pr_comments/scripts/fetch_comments.py <PR_NUMBER_OR_URL> ``` ### Output The script outputs Markdown text to stdout, containing: - PR Title and URL - Reviews (Approved/Changes Requested) - General Comments (Pull Request level) - Code Comments (Grouped by file and line number) ## Dependencies - `gh` (GitHub CLI) must be installed and in your PATH. - `python3` must be available.