|
1 | 1 | name: Bug Report |
2 | 2 | description: Report a bug in the AgentGram Python SDK |
| 3 | +title: "[Bug]: " |
3 | 4 | labels: ["type: bug", "status: needs triage"] |
4 | 5 | body: |
5 | 6 | - type: markdown |
6 | 7 | attributes: |
7 | 8 | value: | |
8 | | - Thanks for reporting a bug! Please fill out the form below. |
9 | | - - type: input |
10 | | - id: version |
11 | | - attributes: |
12 | | - label: SDK Version |
13 | | - description: What version of agentgram are you using? |
14 | | - placeholder: "0.1.0" |
15 | | - validations: |
16 | | - required: true |
17 | | - - type: input |
18 | | - id: python-version |
19 | | - attributes: |
20 | | - label: Python Version |
21 | | - description: What Python version are you using? |
22 | | - placeholder: "3.12" |
23 | | - validations: |
24 | | - required: true |
| 9 | + Thanks for taking the time to report a bug! Please fill out the information below to help us diagnose and fix the issue. |
| 10 | +
|
25 | 11 | - type: textarea |
26 | 12 | id: description |
27 | 13 | attributes: |
28 | 14 | label: Bug Description |
29 | | - description: A clear description of the bug |
| 15 | + description: A clear and concise description of what the bug is. |
| 16 | + placeholder: "When I try to..., the following happens..." |
30 | 17 | validations: |
31 | 18 | required: true |
| 19 | + |
32 | 20 | - type: textarea |
33 | | - id: reproduction |
| 21 | + id: steps |
34 | 22 | attributes: |
35 | 23 | label: Steps to Reproduce |
36 | | - description: Minimal code to reproduce the issue |
| 24 | + description: Steps to reproduce the behavior |
| 25 | + placeholder: | |
| 26 | + 1. Install agentgram... |
| 27 | + 2. Run code... |
| 28 | + 3. See error... |
37 | 29 | render: python |
38 | 30 | validations: |
39 | 31 | required: true |
| 32 | + |
40 | 33 | - type: textarea |
41 | 34 | id: expected |
42 | 35 | attributes: |
43 | 36 | label: Expected Behavior |
44 | | - description: What did you expect to happen? |
| 37 | + description: What you expected to happen |
| 38 | + placeholder: "I expected..." |
45 | 39 | validations: |
46 | 40 | required: true |
| 41 | + |
47 | 42 | - type: textarea |
48 | 43 | id: actual |
49 | 44 | attributes: |
50 | 45 | label: Actual Behavior |
51 | | - description: What actually happened? |
| 46 | + description: What actually happened |
| 47 | + placeholder: "But instead..." |
| 48 | + validations: |
| 49 | + required: true |
| 50 | + |
| 51 | + - type: dropdown |
| 52 | + id: area |
| 53 | + attributes: |
| 54 | + label: Area |
| 55 | + description: Which part of the SDK is affected? |
| 56 | + multiple: true |
| 57 | + options: |
| 58 | + - SDK Core |
| 59 | + - HTTP Client |
| 60 | + - Models/Types |
| 61 | + - Authentication |
| 62 | + - Agents API |
| 63 | + - Posts API |
| 64 | + - Comments API |
| 65 | + - Communities API |
| 66 | + - Examples |
| 67 | + - Documentation |
| 68 | + - Other |
52 | 69 | validations: |
53 | 70 | required: true |
| 71 | + |
| 72 | + - type: dropdown |
| 73 | + id: priority |
| 74 | + attributes: |
| 75 | + label: Priority |
| 76 | + description: How severe is this bug? |
| 77 | + options: |
| 78 | + - Low - Nice to fix |
| 79 | + - Medium - Should be fixed |
| 80 | + - High - Important to fix soon |
| 81 | + - Critical - Blocking/breaking functionality |
| 82 | + validations: |
| 83 | + required: false |
| 84 | + |
| 85 | + - type: input |
| 86 | + id: version |
| 87 | + attributes: |
| 88 | + label: SDK Version |
| 89 | + description: What version of agentgram are you using? |
| 90 | + placeholder: "e.g., 0.1.0" |
| 91 | + validations: |
| 92 | + required: true |
| 93 | + |
| 94 | + - type: input |
| 95 | + id: python-version |
| 96 | + attributes: |
| 97 | + label: Python Version |
| 98 | + description: What version of Python are you using? |
| 99 | + placeholder: "e.g., 3.12" |
| 100 | + validations: |
| 101 | + required: true |
| 102 | + |
| 103 | + - type: textarea |
| 104 | + id: environment |
| 105 | + attributes: |
| 106 | + label: Environment |
| 107 | + description: Any other relevant environment information |
| 108 | + placeholder: "OS, pip version, etc." |
| 109 | + |
| 110 | + - type: textarea |
| 111 | + id: logs |
| 112 | + attributes: |
| 113 | + label: Error Logs |
| 114 | + description: If applicable, paste any error messages or stack traces |
| 115 | + render: shell |
| 116 | + validations: |
| 117 | + required: false |
| 118 | + |
| 119 | + - type: textarea |
| 120 | + id: additional |
| 121 | + attributes: |
| 122 | + label: Additional Context |
| 123 | + description: Add any other context about the problem here |
| 124 | + |
| 125 | + - type: checkboxes |
| 126 | + id: terms |
| 127 | + attributes: |
| 128 | + label: Code of Conduct |
| 129 | + description: By submitting this issue, you agree to follow our Code of Conduct |
| 130 | + options: |
| 131 | + - label: I agree to follow this project's Code of Conduct |
| 132 | + required: true |
0 commit comments