Zion Boggan
repos/TreeTrace/.github/ISSUE_TEMPLATE/bug_report.yml
zionboggan.com ↗
52 lines · yaml
History for this file →
1
name: Bug report
2
description: Something in TreeTrace did not work as expected
3
labels: ["bug"]
4
body:
5
  - type: markdown
6
    attributes:
7
      value: |
8
        Thanks for the report. Please do not paste real secrets or full transcripts. A redacted snippet is enough.
9
  - type: textarea
10
    id: what-happened
11
    attributes:
12
      label: What happened
13
      description: What you ran and what TreeTrace did.
14
      placeholder: I ran `npx treetrace --report` and ...
15
    validations:
16
      required: true
17
  - type: textarea
18
    id: expected
19
    attributes:
20
      label: What you expected instead
21
    validations:
22
      required: true
23
  - type: input
24
    id: version
25
    attributes:
26
      label: TreeTrace version
27
      placeholder: 0.4.0
28
    validations:
29
      required: true
30
  - type: input
31
    id: environment
32
    attributes:
33
      label: OS and Node version
34
      placeholder: macOS 14, Node 20
35
    validations:
36
      required: true
37
  - type: dropdown
38
    id: source
39
    attributes:
40
      label: Transcript source
41
      options:
42
        - Claude Code (auto-discovered)
43
        - Codex CLI
44
        - ChatGPT export
45
        - Gemini CLI
46
        - Copilot
47
        - Cursor
48
        - Grok
49
        - Pasted transcript
50
        - Other
51
    validations:
52
      required: false