pr
1
总安装量
1
周安装量
#45205
全站排名
安装命令
npx skills add https://github.com/duc01226/easyplatform --skill pr
Agent 安装分布
antigravity
1
gemini-cli
1
Skill 文档
Create Pull Request: $ARGUMENTS
Create a pull request with the standard EasyPlatform format.
Steps
-
Check current branch status:
- Run
git statusto see all changes - Run
git diffto review modifications - Ensure all changes are committed
- Run
-
Analyze commits:
- Run
git log --oneline -10to see recent commits - Identify all commits to include in the PR
- Run
-
Create PR with standard format:
gh pr create --title "[Type] Brief description" --body "$(cat <<'EOF' ## Summary - Bullet points describing changes ## Changes - List of specific changes made ## Test Plan - [ ] Unit tests added/updated - [ ] Manual testing completed - [ ] No regressions introduced ## Related Issues - Closes #issue_number (if applicable) Generated with Claude Code EOF )" -
PR Title Format:
[Feature]– New functionality[Fix]– Bug fix[Refactor]– Code improvement[Docs]– Documentation only[Test]– Test changes only
Notes
- Ensure branch is pushed before creating PR
- Target branch is usually
developormaster - Add reviewers if specified in $ARGUMENTS
IMPORTANT Task Planning Notes
- Always plan and break many small todo tasks
- Always add a final review todo task to review the works done at the end to find any fix or enhancement needed