|
| 1 | +name: Bug report |
| 2 | +description: Report broken behavior, regressions, crashes, or reliability issues. |
| 3 | +title: "[Bug]: " |
| 4 | +labels: |
| 5 | + - bug |
| 6 | + - needs-triage |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Use this form for broken behavior, regressions, crashes, or reliability problems. |
| 12 | + Search existing issues first and keep the report focused on one problem. |
| 13 | +
|
| 14 | + - type: checkboxes |
| 15 | + id: checks |
| 16 | + attributes: |
| 17 | + label: Before submitting |
| 18 | + options: |
| 19 | + - label: I searched existing issues and did not find a duplicate. |
| 20 | + required: true |
| 21 | + - label: I included enough detail to reproduce or investigate the problem. |
| 22 | + required: true |
| 23 | + |
| 24 | + - type: dropdown |
| 25 | + id: area |
| 26 | + attributes: |
| 27 | + label: Area |
| 28 | + description: Which part of the project is affected? |
| 29 | + options: |
| 30 | + - apps/web |
| 31 | + - apps/server |
| 32 | + - apps/desktop |
| 33 | + - packages/contracts or packages/shared |
| 34 | + - Build, CI, or release tooling |
| 35 | + - Docs |
| 36 | + - Not sure |
| 37 | + validations: |
| 38 | + required: true |
| 39 | + |
| 40 | + - type: textarea |
| 41 | + id: steps |
| 42 | + attributes: |
| 43 | + label: Steps to reproduce |
| 44 | + description: Provide a minimal, deterministic repro. |
| 45 | + placeholder: | |
| 46 | + 1. Start the app with ... |
| 47 | + 2. Open ... |
| 48 | + 3. Disconnect the network |
| 49 | + 4. Reconnect and send another prompt |
| 50 | + validations: |
| 51 | + required: true |
| 52 | + |
| 53 | + - type: textarea |
| 54 | + id: expected |
| 55 | + attributes: |
| 56 | + label: Expected behavior |
| 57 | + placeholder: The thread should resume normally and accept the new message. |
| 58 | + validations: |
| 59 | + required: true |
| 60 | + |
| 61 | + - type: textarea |
| 62 | + id: actual |
| 63 | + attributes: |
| 64 | + label: Actual behavior |
| 65 | + placeholder: The composer clears, no new turn starts, and the session stays in a pending state. |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + |
| 69 | + - type: dropdown |
| 70 | + id: impact |
| 71 | + attributes: |
| 72 | + label: Impact |
| 73 | + description: How bad is this in practice? |
| 74 | + options: |
| 75 | + - Blocks work completely |
| 76 | + - Major degradation or frequent failure |
| 77 | + - Minor bug or occasional failure |
| 78 | + - Cosmetic issue |
| 79 | + validations: |
| 80 | + required: true |
| 81 | + |
| 82 | + - type: input |
| 83 | + id: version |
| 84 | + attributes: |
| 85 | + label: Version or commit |
| 86 | + description: Release version, commit SHA, or branch name if known. |
| 87 | + placeholder: main @ abc1234 |
| 88 | + |
| 89 | + - type: input |
| 90 | + id: environment |
| 91 | + attributes: |
| 92 | + label: Environment |
| 93 | + description: OS, browser or desktop app version, Node/Bun version, provider/model if relevant. |
| 94 | + placeholder: macOS 15.3, Chrome 135, Bun 1.3.9, Codex app-server ... |
| 95 | + |
| 96 | + - type: textarea |
| 97 | + id: logs |
| 98 | + attributes: |
| 99 | + label: Logs, stack traces, or screenshots |
| 100 | + description: Paste the most relevant output only. Redact secrets. |
| 101 | + render: shell |
| 102 | + |
| 103 | + - type: textarea |
| 104 | + id: workaround |
| 105 | + attributes: |
| 106 | + label: Workaround |
| 107 | + description: If you found a temporary workaround, include it. |
| 108 | + placeholder: Restarting the provider session clears the stuck state. |
0 commit comments