From antigravity-awesome-skills
Prepares pull requests for fast approval with cleanup, self-review, and structured descriptions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:pr-merge-championThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A systematic playbook for preparing, reviewing, and documenting pull requests to ensure they are high-quality, free of common oversights, and optimized for instant maintainer approval and merging.
A systematic playbook for preparing, reviewing, and documenting pull requests to ensure they are high-quality, free of common oversights, and optimized for instant maintainer approval and merging.
Before presenting your code to reviewers, clean up any workspace noise and ensure your branch is up to date:
main or master) to resolve conflicts early.Review your own diff line-by-line as if you were the reviewer. Look out for:
console.log, print, breakpoints, or custom debug flags).TODO comments that should be resolved or turned into tracked issues.Verify that all changes work as expected:
Write a high-signal, structured PR description. A great description tells the story of the changes:
# Pull Request: Implement Rate Limiting on Authentication Endpoint
## Summary
Introduces an IP-based rate limiter on the `/api/v1/auth/login` endpoint using Redis to prevent brute-force attacks.
## Why
We identified a high volume of login attempts targeting single accounts. This rate limiting window slows down attackers while keeping the system responsive for genuine users.
## Verification
- Ran unit tests: `npm run test tests/auth.test.js` (all green)
- Manually verified using Postman: sending 15 requests in under 60 seconds returns `429 Too Many Requests`.
## Checklist
- [x] Code follows the style guide
- [x] Unit tests added/updated
- [x] Documentation updated
Before committing, run these commands to inspect the diff for accidental additions:
# Check the names of files changed to ensure no unwanted files are staged
git status --porcelain
# Review the actual diff for any leftover print statements or debuggers
git diff | grep -E "(console\.log|debugger|print\(|var_dump|binding\.pry)"
CONTRIBUTING.md and pull request templates, and adhere to them strictly.@pr-writer - For Sentry-specific PR writing guidelines.@clean-code - To ensure code quality before submitting.npx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-bundle-aas-mobile-app-builderGenerates comprehensive PR descriptions, automates review processes, and ensures PRs follow best practices for clarity, size, and reviewability.
Enforces code review loop: prepares reviewable PRs with structured titles/descriptions/verification, dispatches code-reviewer/security agents on diffs, ensures feedback engagement.