1.bug-report.yml

 1name: Report an issue
 2description: Report an issue with Zed.
 3type: Bug
 4body:
 5  - type: markdown
 6    attributes:
 7      value: |
 8        Feature requests should be opened in [discussions](https://github.com/zed-industries/zed/discussions/new/choose).
 9
10        Before opening a new issue, please do a [search](https://github.com/zed-industries/zed/issues) of existing issues and :+1: upvote the existing issue instead. This will help us maintain a proper signal-to-noise ratio.
11
12        If you need help with your own project, you can ask a question in our [Discord Support Forums](https://discord.com/invite/zedindustries).
13  - type: textarea
14    attributes:
15      label: Reproduction steps
16      description: A step-by-step description of how to reproduce the issue from a **clean Zed install**. Any code must be sufficient to reproduce (make sure to include context!). Include code as text, not just as a screenshot. **Issues with insufficient detail may be summarily closed**.
17      placeholder: |
18        1. Start Zed
19        2. Click X
20        3. Y will happen
21    validations:
22      required: true
23  - type: textarea
24    attributes:
25      label: Current vs. Expected behavior
26      description: |
27        A clear and concise description of what is the current behavior (screenshots, videos), vs. what you expected the behavior to be.
28
29        **Skipping this/failure to provide complete information will result in the issue being closed.**
30      placeholder: "Based on my reproduction steps above, when I click X, I expect this to happen, but instead Y happens."
31    validations:
32      required: true
33  - type: textarea
34    attributes:
35      label: If applicable, attach your Zed log file to this issue.
36      description: |
37        Open the command palette in Zed, then type `zed: open log` to see the last 1000 lines. Or type `zed: reveal log in file manager` in the command palette to reveal the log file itself.
38      value: |
39        <details><summary>Zed.log</summary>
40
41        <!-- Paste your log inside the code block. -->
42        ```log
43
44        ```
45
46        </details>
47    validations:
48      required: false
49  - type: textarea
50    attributes:
51      label: If applicable, provide details about your model provider
52      placeholder: |
53        - Provider: (Anthropic via ZedPro, Anthropic via API key, Copilot Chat, Mistral, OpenAI, etc.)
54        - Model Name: (Claude Sonnet 4.5, Gemini 3 Pro, GPT-5)
55        - Mode: (Agent Panel, Inline Assistant, Terminal Assistant or Text Threads)
56        - Other details (ACPs, MCPs, other settings, etc.):
57    validations:
58      required: false
59  - type: textarea
60    attributes:
61      label: Zed version and system specs
62      description: |
63        Open the command palette in Zed, then type “zed: copy system specs into clipboard”. **Skipping this/failure to provide complete information will result in the issue being closed**.
64      placeholder: |
65        Zed: v0.215.0 (Zed Nightly bfe141ea79aa4984028934067ba75c48d99136ae)
66        OS: macOS 15.1
67        Memory: 36 GiB
68        Architecture: aarch64
69    validations:
70      required: true