Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

fix-pr修复公关

Agent Skill

fix-pr 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

212

周安装

9

GitHub Stars

1

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fix-pr(修复公关)
来源仓库:https://github.com/richardwu/agent-skills
仓库路径:skills/fix-pr
安装命令:
npx skills add https://github.com/richardwu/agent-skills --skill fix-pr
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/richardwu/agent-skills --skill fix-pr

简介

fix-pr 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在代码审查或发布流程中整理变更内容。
  • 通过 npx skills add 命令从 richardwu/agent-skills 仓库安装。
  • 需确认是否自动创建 PR 或修改提交历史。
  • 建议先在 fork 仓库中测试其行为。

SKILL.md

Fix PR

Fixes the current PR by addressing bot review comments and failing CI checks. Runs in a loop until everything is green.


Prerequisites

  • You must be on a branch that has an open PR
  • The repo remote is on GitHub (uses gh CLI)

Step 1: Identify the PR

Run:

gh pr view --json number,headRefName,url

If no PR is found for the current branch, tell the user and stop.


Step 2: Fix Loop

Repeat the following loop. Each iteration is called a "round". Track what you fix in each round for the final summary.

2a. Wait for CI checks to settle

Poll CI status until all checks have completed (no PENDING or IN_PROGRESS states):

gh pr checks {pr_number} --json name,state

Poll every 30 seconds. If checks haven't settled after 10 minutes, tell the user and stop.

While waiting, print a brief status update each poll (e.g. "Waiting for CI... 3/6 checks complete").

2b. Wait for bot review (if applicable)

After CI settles, check if there's a bot code review check (e.g. claude-review). If so, wait for the bot to post its review comment.

Count existing bot comments:

gh api repos/{owner}/{repo}/issues/{pr_number}/comments --jq '[.[] | select(.user.type == "Bot")] | length'

If the bot review check passed but no new bot comment appeared since your last push (track the comment count from before your push), poll every 15 seconds for up to 5 minutes for a new comment to appear.

If no bot review check exists, skip this step.

2c. Fetch bot review comments

Get reviews from bots on the PR:

gh api repos/{owner}/{repo}/pulls/{pr_number}/reviews --jq '.[] | select(.user.type == "Bot") | {id: .id, user: .user.login, body: .body, state: .state}'

Also fetch issue-level comments from bots:

gh api repos/{owner}/{repo}/issues/{pr_number}/comments --jq '.[] | select(.user.type == "Bot") | {id: .id, body: .body, user: .user.login}'

Only consider the latest comment from each bot (by id). Ignore older comments from the same bot — they relate to previous iterations.

2d. Parse actionable issues from bot reviews

From the latest bot review comments, identify actionable issues. Ignore:

  • Comments that are purely informational
  • Comments on code that is not part of this PR's changes
  • Issues marked as resolved or "✅" in the review

If the user asked to ignore nits or minor issues, also ignore style nitpicks and suggestions that are not bugs.

2e. Check user exclusions

The user may specify bugs NOT to fix when invoking this skill (e.g. /fix-pr skip US-033 skeleton issue). If the user specified exclusions, match them against the identified issues and skip those.

Present the list of issues you plan to fix to the user before proceeding. Format:

Round N — Found M issues:
1. [file:line] Description of issue (source: bot-name / CI check-name)
2. [file:line] Description of issue
   (skipped - user excluded)

Fixing M issues...

2f. Fix failing CI checks

Check which CI checks failed:

gh pr checks {pr_number} --json name,state

For each failing check, look at the CI workflow config (e.g. .github/workflows/) to determine the command that failed.

Reproduce and fix locally:

  1. Run the failing command locally to see the errors
  2. Review the PR diff against the base branch (git diff main...HEAD) and causally trace what changes could have caused the failure. Focus your fix on code introduced or modified in this PR — don't patch unrelated code.
  3. Fix the issues based on your causal analysis
  4. Re-run the same command to verify it passes before moving on

For example, if a lint check failed, run the linter locally, apply auto-fixes if available, and manually fix the rest. If a typecheck failed, run the type checker and fix the type errors.

2g. Fix bot review issues

Read each affected file, understand the context, and apply fixes. Follow the project's existing patterns and conventions (check CLAUDE.md or AGENTS.md).

2h. Commit and push

After all fixes for this round are applied:

  1. Stage the changed files (use specific file names, not git add -A)
  2. Commit with a descriptive message following the repo's commit style: fix: address PR review feedback - [describe each fix briefly]
  3. Push to the current branch
  4. Record the bot comment count before this push (for step 2b next round)

2i. Check if done

If there were no failing CI checks and no actionable bot review issues in this round, exit the loop and go to Step 3.

If this is round 3 or higher, stop looping — tell the user the remaining issues and ask for guidance.


Step 3: Summary

Print a summary table of everything fixed across all rounds:

## Fix PR Summary

| Round | Source | Issue | File | Status |
|-------|--------|-------|------|--------|
| 1 | CI: lint | Formatting error | src/api/users.ts | ✅ Fixed |
| 1 | coderabbit[bot] | Missing null check on response | src/api/users.ts:54 | ✅ Fixed |
| 2 | CI: typecheck | Type error from previous fix | src/api/users.ts:51 | ✅ Fixed |

All checks passing. PR is ready for review.

Include:

  • Every issue encountered (fixed, skipped, or excluded)
  • The source (which bot or CI check)
  • The file and line where relevant
  • Status: ✅ Fixed, ⏭️ Skipped (with reason), 🚫 Excluded (user requested)

Important Notes

  • Do NOT fix issues the user explicitly excluded
  • Do NOT make unrelated changes or refactors while fixing
  • If a review comment is ambiguous or you're unsure how to fix it, ask the user
  • If a CI check failure is unrelated to this PR's changes (e.g. flaky test, pre-existing issue), tell the user rather than attempting a fix
  • Always verify fixes locally before committing (re-run the failing command)
  • Max 3 rounds to avoid infinite loops — escalate to user after that

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.08%
按下载量换算27

Claude

30.91%
按下载量换算23

Cursor

18.65%
按下载量换算14

Gemini CLI

9.46%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills