From 1798315577177207b8c0f61f5701583ce4a9244f Mon Sep 17 00:00:00 2001 From: Jason Mulligan Date: Tue, 12 May 2026 17:24:43 -0400 Subject: [PATCH 1/2] docs: add PR template and update AGENTS.md section 5.4 --- .github/PULL_REQUEST_TEMPLATE.md | 28 ++++++++++++++++++++++++++++ AGENTS.md | 4 ++++ 2 files changed, 32 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..e5ce0c4 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,28 @@ +## Description + + + +## Type of Change + +- [ ] Bugfix (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 +- [ ] Refactor (no functional changes) +- [ ] Performance improvement +- [ ] CI / build / tooling + +## Testing + + + +## Coverage + +- [ ] 100% line coverage maintained + +## Checklist + +- [ ] `npm run lint` passes +- [ ] Tests pass with 100% line coverage +- [ ] No forbidden patterns used +- [ ] Conventional Commit style applied diff --git a/AGENTS.md b/AGENTS.md index 722a2be..5e3b8e7 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -144,6 +144,10 @@ chore: update rollup configuration - All changes require tests to pass and maintain coverage requirements. - 100% line coverage is required before merging. +### 5.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. + --- ## 6. Operational Rules From c9a7dd9af350e342d6e96ece911ead5730b8204e Mon Sep 17 00:00:00 2001 From: Jason Mulligan Date: Tue, 12 May 2026 17:28:31 -0400 Subject: [PATCH 2/2] docs: make PR template instructions visible and require N/A for empty sections --- .github/PULL_REQUEST_TEMPLATE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e5ce0c4..5422fab 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@ ## Description - +Describe the changes in 1-3 sentences. Use "N/A" if not applicable. ## Type of Change @@ -14,7 +14,7 @@ ## Testing - +Describe the tests you wrote/run and their coverage. Use "N/A" if not applicable. ## Coverage