|
| 1 | +name: Bug report |
| 2 | +description: Report something that does not work as expected |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + **Before filing:** search [existing issues](https://github.com/OpenCoworkAI/open-codesign/issues) to avoid duplicates. |
| 10 | +
|
| 11 | + **Tip:** go to **Settings → Storage → Export diagnostics** to generate a redacted diagnostics bundle (API keys and prompts are automatically stripped). Attach the download link below — it dramatically speeds up triage. |
| 12 | +
|
| 13 | + - type: textarea |
| 14 | + id: description |
| 15 | + attributes: |
| 16 | + label: Description |
| 17 | + description: Briefly describe what went wrong. |
| 18 | + placeholder: "e.g. Clicking Export PDF crashes the app with an unhandled exception." |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + |
| 22 | + - type: textarea |
| 23 | + id: reproduce |
| 24 | + attributes: |
| 25 | + label: Steps to reproduce |
| 26 | + description: List the exact steps needed to reliably trigger the issue. |
| 27 | + placeholder: | |
| 28 | + 1. Open the app and navigate to a design |
| 29 | + 2. Click the Export button → PDF |
| 30 | + 3. … |
| 31 | + 4. See error |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + |
| 35 | + - type: textarea |
| 36 | + id: expected |
| 37 | + attributes: |
| 38 | + label: Expected behavior |
| 39 | + description: What should have happened? |
| 40 | + placeholder: "A PDF file should be saved to disk." |
| 41 | + validations: |
| 42 | + required: true |
| 43 | + |
| 44 | + - type: textarea |
| 45 | + id: actual |
| 46 | + attributes: |
| 47 | + label: Actual behavior |
| 48 | + description: What actually happened instead? |
| 49 | + placeholder: "The app freezes and shows a blank error dialog." |
| 50 | + validations: |
| 51 | + required: true |
| 52 | + |
| 53 | + - type: input |
| 54 | + id: version |
| 55 | + attributes: |
| 56 | + label: open-codesign version |
| 57 | + description: Find it in **Settings → About**. |
| 58 | + placeholder: "0.1.3 or commit sha" |
| 59 | + validations: |
| 60 | + required: true |
| 61 | + |
| 62 | + - type: dropdown |
| 63 | + id: platform |
| 64 | + attributes: |
| 65 | + label: Platform |
| 66 | + options: |
| 67 | + - macOS |
| 68 | + - Windows |
| 69 | + - Linux |
| 70 | + validations: |
| 71 | + required: true |
| 72 | + |
| 73 | + - type: input |
| 74 | + id: platform_version |
| 75 | + attributes: |
| 76 | + label: OS version |
| 77 | + description: e.g. macOS 15.3.2, Windows 11 24H2, Ubuntu 24.04 |
| 78 | + placeholder: "macOS 15.3.2" |
| 79 | + |
| 80 | + - type: dropdown |
| 81 | + id: provider |
| 82 | + attributes: |
| 83 | + label: Model provider (if relevant) |
| 84 | + options: |
| 85 | + - Anthropic |
| 86 | + - OpenAI |
| 87 | + - Google |
| 88 | + - OpenRouter |
| 89 | + - Groq |
| 90 | + - Other |
| 91 | + - "N/A" |
| 92 | + |
| 93 | + - type: input |
| 94 | + id: error_code |
| 95 | + attributes: |
| 96 | + label: Error code |
| 97 | + description: > |
| 98 | + If the app shows a `CodesignError` code (e.g. `PROVIDER_HTTP_4XX`), paste it here. |
| 99 | + placeholder: "PROVIDER_HTTP_4XX" |
| 100 | + |
| 101 | + - type: textarea |
| 102 | + id: diagnostics |
| 103 | + attributes: |
| 104 | + label: Diagnostics bundle |
| 105 | + description: > |
| 106 | + Paste the link from **Settings → Storage → Export diagnostics**. |
| 107 | + The zip is automatically redacted — API keys and prompt text are stripped before export. |
| 108 | + placeholder: "https://… (GitHub Gist, file.io, or similar)" |
| 109 | + |
| 110 | + - type: textarea |
| 111 | + id: logs |
| 112 | + attributes: |
| 113 | + label: Logs |
| 114 | + description: > |
| 115 | + Paste relevant renderer or main-process log excerpts here. |
| 116 | + Wrap in triple backticks. Remove any sensitive tokens first. |
| 117 | + render: shell |
0 commit comments