From cb5254f14b1a428787588fa562be109f546148cf Mon Sep 17 00:00:00 2001 From: Vlad Date: Tue, 3 Feb 2026 06:12:41 -0800 Subject: [PATCH] Add issue and PR templates - Add bug report template - Add feature request template - Add pull request template Co-Authored-By: Claude Opus 4.5 --- .github/ISSUE_TEMPLATE/bug_report.md | 34 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 19 +++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 25 +++++++++++++++++ 3 files changed, 78 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..6578b99 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,34 @@ +--- +name: Bug Report +about: Report a bug or unexpected behavior +title: '[BUG] ' +labels: bug +assignees: '' +--- + +## Description +A clear description of the bug. + +## Steps to Reproduce +1. +2. +3. + +## Expected Behavior +What you expected to happen. + +## Actual Behavior +What actually happened. + +## Environment +- OS: +- Python version: +- Claude API version: + +## Logs +``` +Paste relevant logs here +``` + +## Additional Context +Any other context about the problem. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..539ebb4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,19 @@ +--- +name: Feature Request +about: Suggest a new feature or enhancement +title: '[FEATURE] ' +labels: enhancement +assignees: '' +--- + +## Problem +What problem does this solve? + +## Proposed Solution +How should it work? + +## Alternatives Considered +Any alternative solutions you've considered. + +## Additional Context +Any other context, mockups, or examples. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..82b92b3 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,25 @@ +## Summary +Brief description of changes. + +## Type of Change +- [ ] Bug fix +- [ ] New feature +- [ ] Documentation +- [ ] Refactoring +- [ ] Other (describe): + +## Changes Made +- +- + +## Testing +How were these changes tested? + +## Checklist +- [ ] Code follows project style +- [ ] Self-reviewed the code +- [ ] Added/updated documentation if needed +- [ ] No breaking changes (or documented) + +## Related Issues +Closes #