|
| 1 | +name: Bug report |
| 2 | +description: Something the wrapper does (or doesn't do) that looks wrong. |
| 3 | +labels: [bug] |
| 4 | +assignees: [] |
| 5 | + |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: | |
| 10 | + Thanks for the report. **Please run `claude-code-install-manager doctor` and paste the full output below.** |
| 11 | + Most install / PATH / Desktop-App-alias issues need that to triage. |
| 12 | +
|
| 13 | + For security vulnerabilities, do **not** open a public issue. See |
| 14 | + [SECURITY.md](../SECURITY.md). |
| 15 | +
|
| 16 | + - type: input |
| 17 | + id: wrapper_version |
| 18 | + attributes: |
| 19 | + label: Wrapper version |
| 20 | + description: Output of `claude-code-install-manager version`. |
| 21 | + placeholder: Claude Code Install Manager 0.1.0 |
| 22 | + validations: |
| 23 | + required: true |
| 24 | + |
| 25 | + - type: dropdown |
| 26 | + id: install_method |
| 27 | + attributes: |
| 28 | + label: How was Claude Code installed? |
| 29 | + options: |
| 30 | + - Native installer (irm https://claude.ai/install.ps1 | iex) |
| 31 | + - WinGet (winget install Anthropic.ClaudeCode) |
| 32 | + - npm (npm install -g @anthropic-ai/claude-code) |
| 33 | + - Not installed yet (this is an install failure) |
| 34 | + - Not sure |
| 35 | + validations: |
| 36 | + required: true |
| 37 | + |
| 38 | + - type: dropdown |
| 39 | + id: shell |
| 40 | + attributes: |
| 41 | + label: Where did you run the wrapper? |
| 42 | + options: |
| 43 | + - cmd.exe (Command Prompt) |
| 44 | + - PowerShell (pwsh 7+) |
| 45 | + - PowerShell (Windows PowerShell 5.1) |
| 46 | + - Windows Terminal |
| 47 | + - VS Code integrated terminal |
| 48 | + - Git Bash / WSL (not supported, but tell us if you got here) |
| 49 | + - Other |
| 50 | + validations: |
| 51 | + required: true |
| 52 | + |
| 53 | + - type: input |
| 54 | + id: windows_version |
| 55 | + attributes: |
| 56 | + label: Windows version |
| 57 | + description: Output of `ver`. |
| 58 | + placeholder: Microsoft Windows [Version 10.0.22631.4602] |
| 59 | + validations: |
| 60 | + required: true |
| 61 | + |
| 62 | + - type: textarea |
| 63 | + id: doctor |
| 64 | + attributes: |
| 65 | + label: doctor output |
| 66 | + description: Full output of `claude-code-install-manager doctor`. Paste raw, no need to redact paths. |
| 67 | + render: shell |
| 68 | + validations: |
| 69 | + required: true |
| 70 | + |
| 71 | + - type: textarea |
| 72 | + id: repro |
| 73 | + attributes: |
| 74 | + label: Steps to reproduce |
| 75 | + description: Exact commands you ran, in order. |
| 76 | + placeholder: | |
| 77 | + 1. claude-code-install-manager install |
| 78 | + 2. claude --version |
| 79 | + render: shell |
| 80 | + validations: |
| 81 | + required: true |
| 82 | + |
| 83 | + - type: textarea |
| 84 | + id: expected |
| 85 | + attributes: |
| 86 | + label: Expected behavior |
| 87 | + placeholder: claude --version should print 1.x.x |
| 88 | + validations: |
| 89 | + required: true |
| 90 | + |
| 91 | + - type: textarea |
| 92 | + id: actual |
| 93 | + attributes: |
| 94 | + label: Actual behavior |
| 95 | + description: Include any error message, exit code, and the lines around the failure. |
| 96 | + render: shell |
| 97 | + validations: |
| 98 | + required: true |
| 99 | + |
| 100 | + - type: checkboxes |
| 101 | + id: confirmations |
| 102 | + attributes: |
| 103 | + label: Confirmations |
| 104 | + options: |
| 105 | + - label: I'm running as a standard user (not Administrator). |
| 106 | + required: false |
| 107 | + - label: I closed and reopened my terminal after install/update before testing. |
| 108 | + required: false |
| 109 | + - label: I checked the README's "Known upstream issues" table and this isn't already covered. |
| 110 | + required: false |
0 commit comments