Back to skills
SkillHub ClubShip Full StackFull Stack

fix-pr

Fix a pull request based on review feedback

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
238
Hot score
98
Updated
March 20, 2026
Overall rating
C3.2
Composite score
3.2
Best-practice grade
B81.2

Install command

npx @skill-hub/cli install spirimirror-libuipc-fix-pr

Repository

spiriMirror/libuipc

Skill path: .cursor/skills/fix-pr

Fix a pull request based on review feedback

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: spiriMirror.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install fix-pr into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/spiriMirror/libuipc before adding fix-pr to shared team environments
  • Use fix-pr for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: fix-pr
description: Fix a pull request based on review feedback
disable-model-invocation: true
---

# Fix PR

## Overview

Fix a pull request based on review feedback comments.

## 1. Identify the PR

If no PR number is provided, list and ask the developer to pick:

```bash
gh pr list --repo spiriMirror/libuipc
```

**Note:** Always use `--repo spiriMirror/libuipc` to reference the upstream repository (works with forks).

## 2. Checkout the PR Branch

```bash
gh pr checkout <PR_NUMBER> --repo spiriMirror/libuipc
```

Or the developer may already be on their own branch for the PR (e.g., from a forked repository).

## 3. Read Review Comments

```bash
gh pr view <PR_NUMBER> --comments --repo spiriMirror/libuipc
```

If the output is too long, store it in a temporary file for reference (`output/` is gitignored):

```bash
mkdir -p output/.cursor
gh pr view <PR_NUMBER> --comments --repo spiriMirror/libuipc > output/.cursor/pr_comments.txt
```

Analyze all review comments and identify what needs to change.

Check the PR status, if there is a conflict, you need to resolve it first:

```bash
gh pr status --conflict-status --repo spiriMirror/libuipc
```

## 4. Plan & Implement Fixes

Switch to **plan mode**. Address each review comment, then implement the fixes.

Build with the [build command](./build.md).

## 5. Test

Follow the same test procedure as [fix-issue step 4](./fix-issue.md):

- Run relevant tests to verify the fix. See [run-tests command](./run-tests.md).
- Add new tests if the feedback requires new coverage.
- **Do NOT modify existing tests** to make a fix pass.

## 6. Commit & Push

Use the [commit command](./commit.md) to format, commit, and push.

The PR will update automatically. Clean up any temporary files:

```bash
rm -rf output/.cursor
```
fix-pr | SkillHub