pr-fix

Solid

PR Review Fix: automatically fix all issues identified in a pr-review report. Use when: (1) User says "fix all review issues", (2) User says "/pr-fix", (3) After pr-review skill has produced a report, (4) User wants to address PR review feedback.

AI & Automation 28,123 stars 2742 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# PR Review Fix Skill Automated workflow to resolve all issues surfaced in a pr-review report — parse summary → detect PR status → create fix branch or checkout original branch → **triage & validate** → fix by priority → quality gate → commit → publish → verify. **Announce at start:** "I'm using pr-fix skill to fix all review issues." ## Usage ``` /pr-fix [pr_number] ``` `pr_number` is optional. The skill requires a pr-review report to be present in the current session. --- ## Mode Detection At the very start of execution, check `$ARGUMENTS` for the `--automation` flag: ```bash # $ARGUMENTS example: "123 --automation" or "123" AUTOMATION_MODE=false if echo "$ARGUMENTS" | grep -q -- '--automation'; then AUTOMATION_MODE=true fi ``` In **automation mode**: - Skip all yes/no confirmation prompts — follow the default best path --- ## Steps ### Step 0 — Locate the Review Report The pr-review skill must have been executed in the current session. The review report (containing a "汇总" table) must be present in the conversation. If no review report is found in the current session, abort immediately with: > No pr-review report found in this session. Please run `/pr-review <pr_number>` first. Extract the PR number from the report header: ``` ## Code Review:<PR 标题> (#<PR_NUMBER>) ``` If `pr_number` is provided as an argument, use it to override the extracted number. --- ### Step 1 — Parse the Summary Table Locate the **汇总** section in the review report: ```markdow...

Details

Author
iOfficeAI
Repository
iOfficeAI/AionUi
Created
10 months ago
Last Updated
today
Language
TypeScript
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category