All skills
Skillintermediate
Pull Request
Pull Request — reference document from Claude Code knowledge pack.
Claude Code Knowledge Pack7/10/2026
Overview
Pull Request
Description
Type of Change
- Bug fix (non-breaking change which fixes an issue)
- New feature (non-breaking change which adds functionality)
- Breaking change (fix or feature that would cause existing functionality to not work as expected)
- Documentation update
- Refactoring (no functional changes)
- Performance improvement
- Test coverage improvement
Related Issue(s)
Fixes #(issue number)
Changes Made
Testing
- Unit tests pass (
npm run test:unit) - Integration tests pass (
npm run test:integration) - E2E tests pass (
npm run test:e2e) - Manual testing completed
- Added new tests for new functionality
Security Considerations
- No security implications
- Security review required
- Added security tests
- Updated security documentation
Documentation
- Code is self-documenting
- Added/updated inline comments
- Updated README.md
- Updated CLAUDE.md
- Updated API documentation
Checklist
- My code follows the project's coding standards
- I have performed a self-review of my code
- I have made corresponding changes to the documentation
- My changes generate no new warnings
- I have added tests that prove my fix is effective or that my feature works
- New and existing unit tests pass locally with my changes
- Any dependent changes have been merged and published