address-github-comments
Systematically addresses PR feedback and code review comments via the GitHub CLI.
Install
mkdir -p .claude/skills/address-github-comments && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/887" && unzip -o skill.zip -d .claude/skills/address-github-comments && rm skill.zipInstalls to .claude/skills/address-github-comments
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use when you need to address review or issue comments on an open GitHub Pull Request using the gh CLI.Key capabilities
- →Fetch PR comments via gh CLI
- →Categorize review threads
- →Plan code fixes based on feedback
- →Mark threads as resolved
- →Verify authentication status
How it works
It uses the GitHub CLI to list PR comments, helps the user plan fixes, and provides commands to respond to threads once changes are applied.
Inputs & outputs
When to use address-github-comments
- →Inspecting open PR comments directly in the terminal
- →Planning fixes for specific code review feedback
- →Updating PRs to address feedback
- →Marking review threads as resolved via CLI
About this skill
Address GitHub Comments
Overview
Efficiently address PR review comments or issue feedback using the GitHub CLI (gh). This skill ensures all feedback is addressed systematically.
Prerequisites
Ensure gh is authenticated.
gh auth status
If not logged in, run gh auth login.
Workflow
1. Inspect Comments
Fetch the comments for the current branch's PR.
gh pr view --comments
Or use a custom script if available to list threads.
2. Categorize and Plan
- List the comments and review threads.
- Propose a fix for each.
- Wait for user confirmation on which comments to address first if there are many.
3. Apply Fixes
Apply the code changes for the selected comments.
4. Respond to Comments
Once fixed, respond to the threads as resolved.
gh pr comment <PR_NUMBER> --body "Addressed in latest commit."
Common Mistakes
- Applying fixes without understanding context: Always read the surrounding code of a comment.
- Not verifying auth: Check
gh auth statusbefore starting.
When not to use it
- →When the PR is already closed
- →When the user lacks gh CLI access
Prerequisites
Limitations
- →Requires manual verification of code context
- →Depends on gh CLI authentication
How it compares
It provides a systematic, CLI-based approach to addressing feedback instead of manually navigating the GitHub web interface.
Compared to similar skills
address-github-comments side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| address-github-comments (this skill) | 3 | 6mo | Review | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| dependency-upgrade | 26 | 5mo | Review | Intermediate |
| git-commits | 21 | 4mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by davila7
View all by davila7 →You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
dependency-upgrade
wshobson
Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.
git-commits
bonny
Create well-structured git commits in logical chunks following best practices
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.
github-multi-repo
ruvnet
Multi-repository coordination, synchronization, and architecture management with AI swarm orchestration
git-workflow-enforcer
CrazyDubya
Ensures commits follow conventional commits, branch naming conventions, and PR templates. Use when creating commits, branches, or PRs, or when user mentions git workflow.