From 5b5fc145d68c14a73a0db89bf3ab41cde0771a5c Mon Sep 17 00:00:00 2001 From: konojunya Date: Tue, 8 Sep 2026 23:57:56 +0900 Subject: [PATCH] chore: standardize pull request guidance --- .github/pull_request_template.md | 15 +++++++++++++++ AGENTS.md | 12 ++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .github/pull_request_template.md create mode 100644 AGENTS.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..b357d67 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,15 @@ +## Background + + + +## Implementation Approach + + + +## Testing Approach + + + +## Review Perspectives / Points of Concern + + diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..62ad5bc --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,12 @@ +# Repository Guide + +## Language + +Write repository content, code comments, commit messages, issues, and pull requests in English. + +## Pull Requests + +- Use a topic branch and pull request; do not push implementation changes directly to `main`. +- Write pull request titles and bodies in English. +- Follow `.github/pull_request_template.md` without removing or renaming its sections, and replace every placeholder with repository-specific content. +- Run the relevant validation and conformance checks documented by this repository before delivery.