用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/spiriMirror/libuipc --skill fix-pr命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | fix-pr |
| description | Fix a pull request based on review feedback |
| disable-model-invocation | true |
Fix a pull request based on review feedback comments.
If no PR number is provided, list and ask the developer to pick:
gh pr list --repo spiriMirror/libuipc
Note: Always use --repo spiriMirror/libuipc to reference the upstream repository (works with forks).
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).
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):
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:
gh pr status --conflict-status --repo spiriMirror/libuipc
Switch to plan mode. Address each review comment, then implement the fixes.
Build with the build command.
Follow the same test procedure as fix-issue step 4:
Use the commit command to format, commit, and push.
The PR will update automatically. Clean up any temporary files:
rm -rf output/.cursor