mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
The current bug template uses CLI-specific instructions for getting the version. The current feature template doesn't ask the user to provide the Codex variant (surface) they are using. This PR addresses these problems.
74 lines
2.8 KiB
YAML
74 lines
2.8 KiB
YAML
name: 🪲 Bug Report
|
|
description: Report an issue that should be fixed
|
|
labels:
|
|
- bug
|
|
- needs triage
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thank you for submitting a bug report! It helps make Codex better for everyone.
|
|
|
|
If you need help or support using Codex, and are not reporting a bug, please post on [codex/discussions](https://github.com/openai/codex/discussions), where you can ask questions or engage with others on ideas for how to improve codex.
|
|
|
|
Make sure you are running the [latest](https://npmjs.com/package/@openai/codex) version of Codex CLI. The bug you are experiencing may already have been fixed.
|
|
|
|
Please try to include as much information as possible.
|
|
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: What version of Codex is running?
|
|
description: (App) look in "About Codex" dialog; (CLI) use `codex --version`; (IDE Extension) look in extensions panel.
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: plan
|
|
attributes:
|
|
label: What subscription do you have?
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: model
|
|
attributes:
|
|
label: Which model were you using?
|
|
description: Like `gpt-4.1`, `o4-mini`, `o3`, etc.
|
|
- type: input
|
|
id: platform
|
|
attributes:
|
|
label: What platform is your computer?
|
|
description: |
|
|
For MacOS and Linux: copy the output of `uname -mprs`
|
|
For Windows: copy the output of `"$([Environment]::OSVersion | ForEach-Object VersionString) $(if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" })"` in the PowerShell console
|
|
- type: input
|
|
id: terminal
|
|
attributes:
|
|
label: What terminal emulator and version are you using (if applicable)?
|
|
description: Also note any multiplexer in use (screen / tmux / zellij)
|
|
description: |
|
|
E.g, VSCode, Terminal.app, iTerm2, Ghostty, Windows Terminal (WSL / PowerShell)
|
|
- type: textarea
|
|
id: actual
|
|
attributes:
|
|
label: What issue are you seeing?
|
|
description: Please include the full error messages and prompts with PII redacted. If possible, please provide text instead of a screenshot.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: steps
|
|
attributes:
|
|
label: What steps can reproduce the bug?
|
|
description: Explain the bug and provide a code snippet that can reproduce it. Please include session id, token limit usage, context window usage if applicable.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: What is the expected behavior?
|
|
description: If possible, please provide text instead of a screenshot.
|
|
- type: textarea
|
|
id: notes
|
|
attributes:
|
|
label: Additional information
|
|
description: Is there anything else you think we should know?
|