Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## Summary
<!-- Brief description of the changes -->

## Type of Change
<!-- Mark one with an "x" -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature / enhancement
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update
- [ ] Build / dependency / tooling change
- [ ] Test additions or updates
- [ ] Other

## Related Issues
<!-- Reference related issues (format: fixes #123, closes #456, or refs #456) -->

## Testing
<!-- Describe the tests you ran and how to reproduce them -->

## Checklist
<!-- Mark each with an "x" -->
- [ ] `npm test` passes
- [ ] `npm run build` succeeds
- [ ] 100% test coverage maintained
- [ ] No hardcoded secrets or credentials introduced
- [ ] Zero external dependencies added
- [ ] ES Modules only (no CommonJS in src/)
4 changes: 4 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,10 @@ When auditing or modifying AGENTS.md (or any file):
3. Push the feature branch and open a PR with `gh pr create --base master`.
4. Never commit or push directly to `main` or `master`.

### 7.4 Pull Request Templates

If a `.github/PULL_REQUEST_TEMPLATE.md` file exists, it MUST be used when creating PRs. Fill out every section — do not leave any section blank. If a section does not apply, write `N/A` rather than skipping it.

---

## 8. Operational Rules
Expand Down
Loading