Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
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."
/pr-fix [pr_number]
pr_number is optional. The skill requires a pr-review report to be present in the current session.
At the very start of execution, check $ARGUMENTS for the --automation flag:
# $ARGUMENTS example: "123 --automation" or "123"
AUTOMATION_MODE=false
if echo "$ARGUMENTS" | grep -q -- '--automation'; then
AUTOMATION_MODE=true
fi
In automation mode:
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:
npx skills add iOfficeAI/AionUi --skill pr-fixHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Mostly clear, but there are still a few confusing or poorly structured parts.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Partially actionable with several concrete steps, but still missing important details.