Skip to content

Commit 264aba1

Browse files
authored
Add bug issue template (#150)
1 parent 3b9e002 commit 264aba1

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
name: "Bug Report"
3+
description: "Report a bug to help us improve."
4+
title: "[Bug]: <title>"
5+
type: "Bug"
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: "Please fill out the following details to help us address the issue."
10+
- type: input
11+
id: title
12+
attributes:
13+
label: "Bug Title"
14+
description: "Provide a short and descriptive title for the bug."
15+
placeholder: "e.g., can't run an aggregation"
16+
validations:
17+
required: true
18+
- type: checkboxes
19+
id: app
20+
attributes:
21+
label: "App"
22+
description: "Select the app where the bug occurred."
23+
options:
24+
- label: Cursor
25+
- label: Windsurf
26+
- label: VSCode
27+
- label: VSCode Insiders
28+
- label: Claude Desktop
29+
- label: Other
30+
- type: checkboxes
31+
id: affected_models
32+
attributes:
33+
label: "Affected Models (if applicable)"
34+
description: "Select the models affected by the bug."
35+
options:
36+
- label: "Claude 3.5 Sonnet"
37+
- label: "Claude 3.7 Sonnet"
38+
- label: "GPT-4a"
39+
- label: "o4-mini"
40+
- label: "Other"
41+
- type: textarea
42+
id: description
43+
attributes:
44+
label: "Bug Description"
45+
description: "Describe the bug in detail. Include steps to reproduce, expected behavior, and actual behavior."
46+
placeholder: "e.g., When I prompt connect to mongodb, it crashes with error XYZ."
47+
validations:
48+
required: true

0 commit comments

Comments
 (0)