From 31364fd7e0ce7c985a1a8b2be30e4f8aa82ae712 Mon Sep 17 00:00:00 2001 From: Sundaram Kumar Jha Date: Sat, 25 Apr 2026 00:46:04 +0530 Subject: [PATCH 1/2] feat: bug report template --- .github/ISSUE_TEMPLATE/bug_report.md | 54 ++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..1392fa7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,54 @@ +--- +name: Bug Report +about: Report a bug to help us improve +title: "[Bug]: " +labels: bug, enhancement +assignees: '' + +--- + +## Describe the Bug + +A clear and concise description of what the bug is. + +## To Reproduce + +Steps to reproduce the behavior: + +1. Go to '...' +2. Click on '...' +3. See error + +## Expected Behavior + +A clear and concise description of what you expected to happen. + +## Screenshots + +If applicable, add screenshots to help explain your problem. + +## Environment + +- OS: [e.g., Ubuntu 22.04, macOS 14] +- Python version: [e.g., 3.11.0] +- Docker version (if applicable): [e.g., 24.0.0] + +## Configuration + +Relevant parts of your agent configuration or environment setup (remove any sensitive data): + +```yaml +# paste here +``` + +## Logs + +Relevant log output: + +``` +paste logs here +``` + +## Additional Context + +Add any other context about the problem here. \ No newline at end of file From 7dc04564699e8945378b6fbf00f82ff01a6754e3 Mon Sep 17 00:00:00 2001 From: Sundaram Kumar Jha Date: Sat, 25 Apr 2026 00:46:25 +0530 Subject: [PATCH 2/2] feat: feature request template --- .github/ISSUE_TEMPLATE/feature_request.md | 30 +++++++++++++++++++++++ 1 file changed, 30 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..3446bc0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,30 @@ +--- +name: Feature Request +about: Suggest a new feature or enhancement +title: "[Feature]: " +labels: enhancement +assignees: '' + +--- + +## Problem Statement + +A clear and concise description of what problem this feature would solve. + +Ex. I'm always frustrated when [...] + +## Proposed Solution + +A clear and concise description of what you want to happen. + +## Alternatives Considered + +A description of any alternative solutions or features you've considered. + +## Additional Context + +Add any other context, mockups, or screenshots about the feature request here. + +## Implementation Ideas + +If you have ideas about how this could be implemented, share them here. \ No newline at end of file