返回 last30days-skill
bug_report.yml
根目录 / .github / ISSUE_TEMPLATE / bug_report.yml
1 name: Bug Report
2 description: Report a bug or unexpected behavior
3 labels: [bug]
4 body:
5 - type: textarea
6 id: summary
7 attributes:
8 label: Summary
9 description: What happened?
10 placeholder: Describe the bug in 1-2 sentences.
11 validations:
12 required: true
13 - type: textarea
14 id: repro
15 attributes:
16 label: Steps to Reproduce
17 description: How can we reproduce this?
18 placeholder: |
19 1. Run `python3 skills/last30days/scripts/last30days.py "topic" --emit=compact`
20 2. ...
21 validations:
22 required: true
23 - type: textarea
24 id: expected
25 attributes:
26 label: Expected Behavior
27 description: What should have happened?
28 validations:
29 required: true
30 - type: textarea
31 id: traceback
32 attributes:
33 label: Error / Traceback
34 description: Paste the full traceback or error output.
35 render: text
36 - type: dropdown
37 id: install
38 attributes:
39 label: Install Method
40 options:
41 - Claude Code plugin
42 - Gemini CLI extension
43 - Codex plugin
44 - Hermes skill
45 - Manual (git clone)
46 - Other
47 validations:
48 required: true
49 - type: input
50 id: os
51 attributes:
52 label: OS
53 placeholder: macOS 15.4, Ubuntu 24.04, Windows 11, etc.
54
54 lines YAML