/fix-pr-comments
Systematically resolve Pull Request review comments using gh CLI to fetch comments and apply requested changes.
$ npx -y skills add fusengine/agents --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/fix-pr-comments
Context preview
What this command does when you run it.
Systematically resolve Pull Request review comments using gh CLI to fetch comments and apply requested changes.
Command definition
fix-pr-comments.mddescription: Systematically resolve Pull Request review comments using gh CLI to fetch comments and apply requested changes.
disable-model-invocation: false
Fix PR Comments
Systematically address all PR review comments:
1. **Fetch PR Comments**:
gh pr view [PR_NUMBER] --comments
gh api repos/{owner}/{repo}/pulls/[PR_NUMBER]/comments2. **Categorize Comments**:
- **Must Fix**: Blocking issues (security, bugs, breaking changes)
- **Should Fix**: Code quality, performance, best practices
- **Nice to Have**: Style preferences, minor suggestions
- **Questions**: Clarifications needed
3. **Address Each Comment**: For each comment:
- Locate relevant file and line
- Understand the requested change
- > Use research-expert if clarification needed on best practices
- Apply fix following project patterns
- Mark comment as resolved
4. **Run Quality Checks**: > Use sniper to ensure all changes maintain code quality
bun run lint
bun test
5. **Commit Fixes**:
git commit -m "$(cat <<'EOF'
fix: Address PR review comments
- [Comment 1 fix]
- [Comment 2 fix]
- [Comment 3 fix]
EOF
)"
6. **Push and Notify**:
git push
gh pr comment [PR_NUMBER] --body "✅ All review comments addressed"
**Arguments**:
- $ARGUMENTS specifies PR number or focuses on specific comment type
**Example Usage**:
- `/fix-pr-comments 123` → Fix all comments for PR #123
- `/fix-pr-comments` → Fix comments for current PR
Read more
description: Systematically resolve Pull Request review comments using gh CLI to fetch comments and apply requested changes. disable-model-invocation: false
Fix PR Comments
Systematically address all PR review comments:
1. **Fetch PR Comments**:
gh pr view [PR_NUMBER] --comments
gh api repos/{owner}/{repo}/pulls/[PR_NUMBER]/comments2. **Categorize Comments**:
- **Must Fix**: Blocking issues (security, bugs, breaking changes)
- **Should Fix**: Code quality, performance, best practices
- **Nice to Have**: Style preferences, minor suggestions
- **Questions**: Clarifications needed
3. **Address Each Comment**: For each comment:
- Locate relevant file and line
- Understand the requested change
- > Use research-expert if clarification needed on best practices
- Apply fix following project patterns
- Mark comment as resolved
4. **Run Quality Checks**: > Use sniper to ensure all changes maintain code quality
bun run lint bun test
5. **Commit Fixes**:
git commit -m "$(cat <<'EOF' fix: Address PR review comments - [Comment 1 fix] - [Comment 2 fix] - [Comment 3 fix] EOF )"
6. **Push and Notify**:
git push gh pr comment [PR_NUMBER] --body "✅ All review comments addressed"
**Arguments**:
- $ARGUMENTS specifies PR number or focuses on specific comment type
**Example Usage**:
- `/fix-pr-comments 123` → Fix all comments for PR #123
- `/fix-pr-comments` → Fix comments for current PR
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Other commands on fusengine-agents.
- /apex-quick
Quick Flow for simple fixes - Single expert handles explore, code, review, and validate in one pass. Inspired by BMAD Barry.
Open command - /apex
APEX Methodology - The systematic Analyze-Plan-Execute-eLicit-eXamine approach for intelligent development. Reduces hallucination and defect risk through mandatory parallel research, self-review, and validation gates.
Open command - /cleanup-context
Memory optimization - removes duplicates, consolidates knowledge, and cleans memory banks for better performance.
Open command - /create-pull-request
Auto-generate Pull Request with comprehensive description, test plan, and changelog. Uses gh CLI for creation.
Open command - /deep-code-analysis
Comprehensive codebase investigation using research-expert for documentation, explore-codebase for structure, and deep analysis. Perfect for understanding complex systems.
Open command - /epct
Systematic Explore-Plan-Code-Test methodology for structured development. Ensures comprehensive approach to feature implementation.
Open command

