|
1
|
name: Bug Report |
|
2
|
description: Report a bug in PlanOpticon |
|
3
|
title: "[Bug]: " |
|
4
|
labels: ["bug", "triage"] |
|
5
|
body: |
|
6
|
- type: markdown |
|
7
|
attributes: |
|
8
|
value: | |
|
9
|
Thank you for taking the time to report a bug. Please fill out the fields below so we can diagnose and fix the issue as quickly as possible. |
|
10
|
|
|
11
|
- type: textarea |
|
12
|
id: description |
|
13
|
attributes: |
|
14
|
label: Description |
|
15
|
description: A clear and concise description of the bug. |
|
16
|
placeholder: Describe the bug... |
|
17
|
validations: |
|
18
|
required: true |
|
19
|
|
|
20
|
- type: textarea |
|
21
|
id: steps-to-reproduce |
|
22
|
attributes: |
|
23
|
label: Steps to Reproduce |
|
24
|
description: The exact steps to reproduce the behavior. |
|
25
|
placeholder: | |
|
26
|
1. Run `planopticon analyze -i video.mp4 -o ./output` |
|
27
|
2. Wait for frame extraction to complete |
|
28
|
3. Observe error in diagram extraction step |
|
29
|
validations: |
|
30
|
required: true |
|
31
|
|
|
32
|
- type: textarea |
|
33
|
id: expected-behavior |
|
34
|
attributes: |
|
35
|
label: Expected Behavior |
|
36
|
description: What you expected to happen. |
|
37
|
placeholder: Describe what you expected... |
|
38
|
validations: |
|
39
|
required: true |
|
40
|
|
|
41
|
- type: textarea |
|
42
|
id: actual-behavior |
|
43
|
attributes: |
|
44
|
label: Actual Behavior |
|
45
|
description: What actually happened. |
|
46
|
placeholder: Describe what actually happened... |
|
47
|
validations: |
|
48
|
required: true |
|
49
|
|
|
50
|
- type: dropdown |
|
51
|
id: os |
|
52
|
attributes: |
|
53
|
label: Operating System |
|
54
|
options: |
|
55
|
- macOS |
|
56
|
- Linux (Ubuntu/Debian) |
|
57
|
- Linux (Fedora/RHEL) |
|
58
|
- Linux (other) |
|
59
|
- Windows |
|
60
|
- Other |
|
61
|
validations: |
|
62
|
required: true |
|
63
|
|
|
64
|
- type: dropdown |
|
65
|
id: python-version |
|
66
|
attributes: |
|
67
|
label: Python Version |
|
68
|
options: |
|
69
|
- "3.13" |
|
70
|
- "3.12" |
|
71
|
- "3.11" |
|
72
|
- "3.10" |
|
73
|
validations: |
|
74
|
required: true |
|
75
|
|
|
76
|
- type: input |
|
77
|
id: planopticon-version |
|
78
|
attributes: |
|
79
|
label: PlanOpticon Version |
|
80
|
description: Run `planopticon --version` or `pip show planopticon` to find this. |
|
81
|
placeholder: "e.g. 0.2.0" |
|
82
|
validations: |
|
83
|
required: true |
|
84
|
|
|
85
|
- type: dropdown |
|
86
|
id: provider |
|
87
|
attributes: |
|
88
|
label: AI Provider |
|
89
|
description: Which AI provider were you using when the bug occurred? |
|
90
|
options: |
|
91
|
- OpenAI |
|
92
|
- Anthropic |
|
93
|
- Google Gemini |
|
94
|
- Multiple providers |
|
95
|
- Not applicable |
|
96
|
validations: |
|
97
|
required: true |
|
98
|
|
|
99
|
- type: textarea |
|
100
|
id: logs |
|
101
|
attributes: |
|
102
|
label: Logs |
|
103
|
description: Paste any relevant log output. This will be automatically formatted as code. |
|
104
|
render: shell |
|
105
|
validations: |
|
106
|
required: false |
|
107
|
|