Creating PR Skill
Create pull requests with clear descriptions that enable efficient reviews.
The Iron Law
NO PR WITHOUT PASSING TESTS
Before creating any PR, verify tests pass. No exceptions.
Workflow
1. Verify Tests Pass (MANDATORY)
Run full test suite before anything else:
# Run tests and verify output
npm test # or pytest, go test, etc.
# Check exit code
echo $? # Must be 0
If tests fail: Fix them first. Do not proceed to PR.
[Description truncada. Veja o README completo no GitHub.]