Skip to content

Commit 660f264

Browse files
committed
feat: issue templates — bug report, new skill proposal
1 parent bfd414b commit 660f264

3 files changed

Lines changed: 64 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
name: Bug Report
3+
description: A skill isn't working as expected
4+
labels: [bug]
5+
body:
6+
- type: dropdown
7+
id: skill
8+
attributes:
9+
label: Which skill?
10+
options:
11+
- plan-product
12+
- plan-eng
13+
- code-review
14+
- ship
15+
- qa
16+
- retro
17+
- setup script
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: what-happened
22+
attributes:
23+
label: What happened?
24+
placeholder: Describe the issue
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: expected
29+
attributes:
30+
label: What did you expect?
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: environment
35+
attributes:
36+
label: Environment
37+
value: |
38+
- OS:
39+
- kiro-cli version:
40+
- kstack version:

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: New Skill Proposal
3+
description: Propose a new cognitive mode skill
4+
labels: [enhancement, new-skill]
5+
body:
6+
- type: textarea
7+
id: cognitive-mode
8+
attributes:
9+
label: What cognitive mode does this skill represent?
10+
placeholder: "e.g. Security Auditor — think like an attacker reviewing the codebase"
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: when-to-use
15+
attributes:
16+
label: When would you use this instead of existing skills?
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: example
21+
attributes:
22+
label: Example interaction
23+
placeholder: "User says X, agent does Y"

0 commit comments

Comments
 (0)