Skip to content

Commit 2f8165f

Browse files
committed
chore: add issue templates
1 parent d93d3a3 commit 2f8165f

File tree

3 files changed

+124
-0
lines changed

3 files changed

+124
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: 'Autofixer Request'
2+
description: Request a new Autofixer for the MCP
3+
title: '[Autofixer Request] '
4+
labels: [enhancement, autofixer]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to request A new autofixer!
10+
- type: textarea
11+
id: problem
12+
attributes:
13+
label: Describe the problematic code
14+
description: Please provide a clear and concise description the problem. Is much better if you can provide a code snippet the AI constantly get's wrong.
15+
placeholder: The AI keeps messing with...
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: suggestion
20+
attributes:
21+
label: Describe what the autofixer should suggest
22+
description: If you were looking at this code, what would you suggest to the AI for it to fix it?
23+
placeholder: You should never do this, instead do that...
24+
validations:
25+
required: true
26+
- type: dropdown
27+
id: importance
28+
attributes:
29+
label: Importance
30+
description: How important is this feature to you?
31+
options:
32+
- nice to have
33+
- would make my life easier
34+
- the MCP is useless to me without it
35+
validations:
36+
required: true
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: "\U0001F41E Bug report"
2+
description: Report an issue with Svelte
3+
title: '[Bug] '
4+
labels: ['triage: bug']
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
id: bug-description
12+
attributes:
13+
label: Describe the bug
14+
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
15+
placeholder: Bug description
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: reproduction
20+
attributes:
21+
label: Reproduction
22+
description: Please provide a link to a repo or REPL that can reproduce the problem you ran into. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "need reproduction" label. If no reproduction is provided within a reasonable time-frame, the issue will be closed.
23+
placeholder: Reproduction
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: logs
28+
attributes:
29+
label: Logs
30+
description: 'Please provide some logs or screenshot of the agentic workflow failing.'
31+
render: shell
32+
- type: input
33+
id: mcp-client
34+
attributes:
35+
label: MCP Client
36+
description: Which MCP client are you using?
37+
render: shell
38+
placeholder: claude-code, codex, opencode
39+
validations:
40+
required: true
41+
- type: dropdown
42+
id: severity
43+
attributes:
44+
label: Severity
45+
description: Select the severity of this issue
46+
options:
47+
- annoyance
48+
- minor functionality loss
49+
- major functionality loss
50+
- blocking all usage of the mcp
51+
validations:
52+
required: true
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: 'Feature Request'
2+
description: Request a new MCP feature
3+
title: '[Feature Request] '
4+
labels: [enhancement]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to request this feature! If your feature request is complex or substantial enough to warrant in-depth discussion, maintainers may close the issue and ask you to open an [RFC](https://github.com/sveltejs/rfcs).
10+
- type: textarea
11+
id: problem
12+
attributes:
13+
label: Describe the problem
14+
description: Please provide a clear and concise description the problem this feature would solve. The more information you can provide here, the better.
15+
placeholder: I'm always frustrated when...
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: solution
20+
attributes:
21+
label: Describe the proposed solution
22+
description: Please provide a clear and concise description of what you would like to happen.
23+
placeholder: I would like to see...
24+
validations:
25+
required: true
26+
- type: dropdown
27+
id: importance
28+
attributes:
29+
label: Importance
30+
description: How important is this feature to you?
31+
options:
32+
- nice to have
33+
- would make my life easier
34+
- the MCP is useless to me without it
35+
validations:
36+
required: true

0 commit comments

Comments
 (0)