Skip to content

Commit e1f5bde

Browse files
authored
update issue templates (#190)
1 parent fe7061d commit e1f5bde

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
name: Bug report
3+
about: Detailed descriptions help us resolve faster
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Before submitting an issue, please:**
11+
12+
- [ ] Check the [documentation](https://docs.stagehand.dev/) for relevant information
13+
- [ ] Search existing [issues](https://github.com/browserbase/stagehand/issues) to avoid duplicates
14+
15+
## Environment Information
16+
17+
Please provide the following information to help us reproduce and resolve your issue:
18+
19+
**Stagehand:**
20+
21+
- Language/SDK: [TypeScript, Python, MCP…]
22+
- Stagehand version: [e.g., 1.0.0]
23+
24+
**AI Provider:**
25+
26+
- Provider: [e.g., OpenAI, Anthropic, Azure OpenAI]
27+
- Model: [e.g., gpt-4o, claude-3-7-sonnet-latest]
28+
29+
## Issue Description
30+
31+
```
32+
[Describe the current behavior here]
33+
```
34+
35+
### Steps to Reproduce
36+
37+
1.
38+
2.
39+
3.
40+
41+
### Minimal Reproduction Code
42+
43+
```tsx
44+
// Your minimal reproduction code here
45+
import { Stagehand } from '@browserbase/stagehand';
46+
47+
const stagehand = new Stagehand({
48+
// IMPORTANT: include your stagehand config
49+
});
50+
51+
// Steps that reproduce the issue
52+
53+
```
54+
55+
### Error Messages / Log trace
56+
57+
```
58+
[Paste error messages/logs here]
59+
```
60+
61+
### Screenshots / Videos
62+
63+
```
64+
[Attach screenshots or videos here]
65+
```
66+
67+
### Related Issues
68+
69+
Are there any related issues or PRs?
70+
71+
- Related to: #[issue number]
72+
- Duplicate of: #[issue number]
73+
- Blocks: #[issue number]
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Are you willing to contribute to implementing this feature or fix?**
20+
21+
- [ ] Yes, I can submit a PR
22+
- [ ] Yes, but I need guidance
23+
- [ ] No, I cannot contribute at this time

0 commit comments

Comments
 (0)