|
| 1 | +# Copyright 2026 Google LLC |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +name: 'Bug Report' |
| 16 | +description: 'Report a bug to help us improve Agents CLI' |
| 17 | +labels: ['status/need-triage', 'type/bug'] |
| 18 | +body: |
| 19 | + - type: 'markdown' |
| 20 | + attributes: |
| 21 | + value: |- |
| 22 | + > [!IMPORTANT] |
| 23 | + > Thanks for taking the time to fill out this bug report! |
| 24 | + > |
| 25 | + > Please search **[existing issues](https://github.com/google/agents-cli/issues)** to see if an issue already exists for the bug you encountered. |
| 26 | +
|
| 27 | + - type: 'textarea' |
| 28 | + id: 'problem' |
| 29 | + attributes: |
| 30 | + label: 'What happened?' |
| 31 | + description: 'A clear and concise description of what the bug is.' |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + |
| 35 | + - type: 'textarea' |
| 36 | + id: 'repro' |
| 37 | + attributes: |
| 38 | + label: 'Steps to Reproduce' |
| 39 | + description: 'Please provide the exact steps to reproduce the behavior.' |
| 40 | + placeholder: |- |
| 41 | + 1. Run `agents-cli create my-agent` |
| 42 | + 2. Modify `...` |
| 43 | + 3. Run `agents-cli deploy` |
| 44 | + 4. See error `...` |
| 45 | + validations: |
| 46 | + required: true |
| 47 | + |
| 48 | + - type: 'textarea' |
| 49 | + id: 'expected' |
| 50 | + attributes: |
| 51 | + label: 'What did you expect to happen?' |
| 52 | + validations: |
| 53 | + required: true |
| 54 | + |
| 55 | + - type: 'textarea' |
| 56 | + id: 'info' |
| 57 | + attributes: |
| 58 | + label: 'Client information' |
| 59 | + description: 'Please paste the full text from `agents-cli info`. Also include which platform (macOS, Windows, Linux).' |
| 60 | + value: |- |
| 61 | + <details> |
| 62 | + <summary>Client Information</summary> |
| 63 | +
|
| 64 | + Run `agents-cli info` to output debugging information about your client. |
| 65 | +
|
| 66 | + </details> |
| 67 | + validations: |
| 68 | + required: true |
| 69 | + |
| 70 | + - type: 'textarea' |
| 71 | + id: 'logs' |
| 72 | + attributes: |
| 73 | + label: 'Command Output / Logs' |
| 74 | + description: 'Paste the full output of the command that failed. If possible, run with `--verbose`.' |
| 75 | + validations: |
| 76 | + required: false |
| 77 | + |
| 78 | + - type: 'textarea' |
| 79 | + id: 'additional-context' |
| 80 | + attributes: |
| 81 | + label: 'Anything else we need to know?' |
| 82 | + description: 'Add any other context about the problem here.' |
0 commit comments