From 7bd35dc2f0ead6bc37eb1b1b326824916bafd54a Mon Sep 17 00:00:00 2001 From: Nano Taboada <87288+nanotaboada@users.noreply.github.com> Date: Sun, 21 Dec 2025 12:24:48 -0300 Subject: [PATCH] feat: add feature request issue template Add standardized GitHub issue template for feature requests with sections for problem statement, proposed solution, technical approach, acceptance criteria, and references. Template enforces pre-review of implementation details before PR submission to improve code review efficiency. --- .github/ISSUE_TEMPLATE/feature_request.md | 32 +++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..8cf6492 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,32 @@ +--- +name: Feature request +about: Propose a new feature or enhancement +title: "[FEATURE]" +labels: enhancement, python +assignees: '' + +--- + +## Problem + +What problem are you trying to solve? What's the pain point? + +## Proposed Solution + +Describe the expected behavior and functionality this feature will provide. + +## Suggested Approach + +Describe the technical implementation plan. Include architecture, key files/modules to modify, APIs, and any code patterns to follow. + +## Acceptance Criteria + +How will we know this feature is complete and working correctly? + +- [ ] Criterion 1 +- [ ] Criterion 2 +- [ ] Criterion 3 + +## References + +Links to related issues, documentation, examples, or relevant resources.