Skip to content

chore: add bug issue template #150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Apr 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
name: "Bug Report"
description: "Report a bug to help us improve."
title: "[Bug]: <title>"
type: "Bug"
body:
- type: markdown
attributes:
value: "Please fill out the following details to help us address the issue."
- type: input
id: title
attributes:
label: "Bug Title"
description: "Provide a short and descriptive title for the bug."
placeholder: "e.g., can't run an aggregation"
validations:
required: true
- type: checkboxes
id: app
attributes:
label: "App"
description: "Select the app where the bug occurred."
options:
- label: Cursor
- label: Windsurf
- label: VSCode
- label: VSCode Insiders
- label: Claude Desktop
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we have Other here?

- label: Other
- type: checkboxes
id: affected_models
attributes:
label: "Affected Models (if applicable)"
description: "Select the models affected by the bug."
options:
- label: "Claude 3.5 Sonnet"
- label: "Claude 3.7 Sonnet"
- label: "GPT-4a"
- label: "o4-mini"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similarly, perhaps add "Other" or just leave it as an input so that we don't have to constantly update the list.

- label: "Other"
- type: textarea
id: description
attributes:
label: "Bug Description"
description: "Describe the bug in detail. Include steps to reproduce, expected behavior, and actual behavior."
placeholder: "e.g., When I prompt connect to mongodb, it crashes with error XYZ."
validations:
required: true
Loading