Install
1
Install the plugin$
npx claudepluginhub shawn-guo-cn/agentfoundry-plugin-marketplace --plugin pr-conventionsWant just this skill?
Add to a custom plugin, then install with one command.
Description
Pull request conventions for comprehensive commit analysis and test planning. Use when creating or reviewing pull requests.
Tool Access
This skill uses the workspace's default tool permissions.
Skill Content
PR Conventions
Full Commit History Analysis
When creating a pull request, always analyse the full commit history — not just the latest commit.
- Use
git diff [base-branch]...HEADto see all changes since the branch diverged - Use
git log [base-branch]..HEADto review every commit message - Draft a comprehensive PR summary that covers ALL commits, not just the most recent one
Test Plan Requirement
Every PR must include a Test plan section with a bulleted TODO checklist:
## Test plan
- [ ] Unit tests pass for new functionality
- [ ] Integration tests cover the critical path
- [ ] Manual verification of [specific behaviour]
- [ ] Edge cases tested: [list them]
Branch Push Convention
When pushing a new branch for the first time, always use the -u flag:
git push -u origin <branch-name>
Stats
Stars0
Forks0
Last CommitFeb 15, 2026
Actions