|
| 1 | +name: "Report a Bug (Claude AI)" |
| 2 | +description: "Report a bug — Claude AI will fix it automatically" |
| 3 | +title: "[Bug] " |
| 4 | +labels: ["claude", "bug"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + ## Bug Report |
| 10 | + Describe the bug. Claude AI will analyze this and create a fix automatically. |
| 11 | + - type: textarea |
| 12 | + id: description |
| 13 | + attributes: |
| 14 | + label: "What's broken?" |
| 15 | + description: "Describe the bug in plain language." |
| 16 | + placeholder: "When I use the library, it throws an error..." |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + - type: textarea |
| 20 | + id: steps |
| 21 | + attributes: |
| 22 | + label: "Steps to reproduce" |
| 23 | + description: "How can we reproduce this bug?" |
| 24 | + placeholder: | |
| 25 | + 1. Install the package |
| 26 | + 2. Call the function with these arguments |
| 27 | + 3. See the error |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + - type: textarea |
| 31 | + id: expected |
| 32 | + attributes: |
| 33 | + label: "What should happen vs what actually happens" |
| 34 | + description: "Describe the expected behavior and the actual behavior." |
| 35 | + placeholder: | |
| 36 | + Expected: The function should return the correct value |
| 37 | + Actual: It throws an error or returns undefined |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + - type: dropdown |
| 41 | + id: priority |
| 42 | + attributes: |
| 43 | + label: "Priority" |
| 44 | + description: "How important is this?" |
| 45 | + options: |
| 46 | + - "Low — cosmetic issue" |
| 47 | + - "Medium — broken but has workaround" |
| 48 | + - "High — broken, no workaround" |
| 49 | + - "Critical — site is down or data loss" |
| 50 | + default: 1 |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + - type: dropdown |
| 54 | + id: area |
| 55 | + attributes: |
| 56 | + label: "What part of the app?" |
| 57 | + description: "Which area does this affect?" |
| 58 | + multiple: true |
| 59 | + options: |
| 60 | + - "Core / Source Code" |
| 61 | + - "API / Public Interface" |
| 62 | + - "Types / TypeScript" |
| 63 | + - "Build / Configuration" |
| 64 | + - "Testing / CI" |
| 65 | + - "Documentation" |
| 66 | + - "Other" |
| 67 | + validations: |
| 68 | + required: true |
| 69 | + - type: input |
| 70 | + id: browser |
| 71 | + attributes: |
| 72 | + label: "Browser / Device (optional)" |
| 73 | + description: "What browser and device are you using?" |
| 74 | + placeholder: "e.g., Chrome on Windows, Safari on iPhone" |
| 75 | + validations: |
| 76 | + required: false |
| 77 | + - type: textarea |
| 78 | + id: screenshots |
| 79 | + attributes: |
| 80 | + label: "Screenshots (optional)" |
| 81 | + description: "Paste screenshots or drag files here." |
| 82 | + validations: |
| 83 | + required: false |
| 84 | + - type: checkboxes |
| 85 | + id: checklist |
| 86 | + attributes: |
| 87 | + label: "Before submitting" |
| 88 | + options: |
| 89 | + - label: "I searched existing issues and this hasn't been reported before" |
| 90 | + required: true |
0 commit comments