-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathbug_report.yml
More file actions
102 lines (92 loc) · 2.42 KB
/
Copy pathbug_report.yml
File metadata and controls
102 lines (92 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: Bug Report
description: Report a bug or unexpected behavior
title: "[Bug]: "
labels: ["type: bug", "status: triage"]
body:
- type: markdown
attributes:
value: |
Thanks for reporting a bug! Please fill out the sections below.
- type: textarea
id: description
attributes:
label: Description
description: A clear description of the bug
placeholder: What happened?
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Steps to Reproduce
description: Minimal steps to reproduce the behavior
placeholder: |
1. Run `claude-rs` with `--flag`
2. Type "..."
3. See error
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What you expected to happen
validations:
required: true
- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened (include error messages, screenshots)
validations:
required: true
- type: input
id: version
attributes:
label: Version
description: Output of `claude-rs --version`
placeholder: "claude-rs 0.3.0"
validations:
required: true
- type: dropdown
id: os
attributes:
label: Operating System
options:
- Linux (x86_64)
- Linux (aarch64)
- macOS (Intel)
- macOS (Apple Silicon)
- Windows (x86_64)
- Windows (ARM64)
- Other
validations:
required: true
- type: input
id: rust-version
attributes:
label: Rust Version
description: Output of `rustc --version`
placeholder: "rustc 1.86.0 (a1b2c3d4 2025-03-01)"
- type: textarea
id: logs
attributes:
label: Relevant Log Output
description: Paste any relevant log output (run with `RUST_LOG=debug`)
render: shell
- type: textarea
id: implementation-notes
attributes:
label: Implementation Notes (optional)
description: Maintainer notes, suspected root cause, or technical pointers
placeholder: |
- Suspected module/path:
- Possible root cause:
- Constraints:
- type: checkboxes
id: terms
attributes:
label: Checklist
options:
- label: I have searched existing issues to ensure this is not a duplicate
required: true